mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-11 18:59:51 +08:00
add 联联平台推送充电订单信息 接口
This commit is contained in:
@@ -191,8 +191,11 @@ public class SpringBootTestController {
|
|||||||
// 推送充电状态
|
// 推送充电状态
|
||||||
// lianLianService.pushChargeStatus("C27680791529");
|
// lianLianService.pushChargeStatus("C27680791529");
|
||||||
|
|
||||||
lianLianService.pushStopChargeResult("C27680791529");
|
// 推送停止充电结果
|
||||||
|
// lianLianService.pushStopChargeResult("C27680791529");
|
||||||
|
|
||||||
|
// 推送充电订单信息
|
||||||
|
lianLianService.pushChargeOrderInfo("C27680791529");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -114,4 +114,11 @@ public interface LianLianService {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
String pushStopChargeResult(String orderCode);
|
String pushStopChargeResult(String orderCode);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 推送充电订单信息
|
||||||
|
* @param orderCode
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
String pushChargeOrderInfo(String orderCode);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -877,6 +877,39 @@ public class LianLianServiceImpl implements LianLianService {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 推送充电订单信息
|
||||||
|
* @param orderCode
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String pushChargeOrderInfo(String orderCode) {
|
||||||
|
String url = TEST_URL + "notification_charge_order_info";
|
||||||
|
OrderBasicInfo orderBasicInfo = orderBasicInfoService.getOrderInfoByOrderCode(orderCode);
|
||||||
|
OrderDetail orderDetail = orderBasicInfoService.getOrderDetailByOrderCode(orderCode);
|
||||||
|
|
||||||
|
JSONObject json = new JSONObject();
|
||||||
|
json.put("StartChargeSeq", orderCode);
|
||||||
|
json.put("ConnectorID", orderBasicInfo.getPileConnectorCode());
|
||||||
|
json.put("StartTime", DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS, orderBasicInfo.getChargeStartTime()));
|
||||||
|
json.put("EndTime", DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS, orderBasicInfo.getChargeEndTime()));
|
||||||
|
json.put("TotalPower", orderDetail.getTotalUsedElectricity().setScale(2, BigDecimal.ROUND_HALF_UP));
|
||||||
|
json.put("TotalElecMoney", orderDetail.getTotalElectricityAmount().setScale(2, BigDecimal.ROUND_HALF_UP));
|
||||||
|
json.put("TotalSeviceMoney", orderDetail.getTotalServiceAmount().setScale(2, BigDecimal.ROUND_HALF_UP));
|
||||||
|
json.put("TotalMoney", orderDetail.getTotalOrderAmount().setScale(2, BigDecimal.ROUND_HALF_UP));
|
||||||
|
json.put("StopReason", 2); // 2:BMS 停止充电
|
||||||
|
|
||||||
|
String jsonString = JSONObject.toJSONString(json);
|
||||||
|
String token = getToken(OPERATOR_ID, OPERATOR_SECRET);
|
||||||
|
if (token == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
// 发送请求
|
||||||
|
String result = HttpRequestUtil.sendPost(token, jsonString, url, DATA_SECRET, DATA_SECRETIV, OPERATOR_ID, SIG_SECRET);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
// private ChargeDetail setChargeDetail(OrderBasicInfo orderBasicInfo, OrderDetail orderDetail) {
|
// private ChargeDetail setChargeDetail(OrderBasicInfo orderBasicInfo, OrderDetail orderDetail) {
|
||||||
// ChargeDetail detail = new ChargeDetail();
|
// ChargeDetail detail = new ChargeDetail();
|
||||||
//
|
//
|
||||||
@@ -891,6 +924,7 @@ public class LianLianServiceImpl implements LianLianService {
|
|||||||
|
|
||||||
// TODO 推送充电订单信息 notification_charge_order_info
|
// TODO 推送充电订单信息 notification_charge_order_info
|
||||||
|
|
||||||
|
|
||||||
// TODO 推送订单对账结果信息 check_charge_orders
|
// TODO 推送订单对账结果信息 check_charge_orders
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user