Perfecting the notification_charge_order_info's logic.
This commit is contained in:
parent
a3deb63185
commit
af42f2011e
@ -16,5 +16,4 @@ public interface XhpcHistoryOrderRepository extends JpaRepository<XhpcHistoryOrd
|
||||
List<XhpcHistoryOrder> findByHistoryOrderIdGreaterThanAndStateGreaterThanOrderByHistoryOrderIdAsc(Long hisOrderId, int i);
|
||||
|
||||
Optional<XhpcHistoryOrder> findByInternetSerialNumber(String startChargeSeq);
|
||||
|
||||
}
|
||||
|
||||
@ -45,8 +45,6 @@ public class NotificationChargeOrderInfoTask extends CoreDispatcher {
|
||||
|
||||
//Getting the internetSerialNumbers to load the requestData.
|
||||
Collection<String> pushOrders = REDIS.keys("pushOrder:*");
|
||||
// System.out.println(pushOrderKeys);
|
||||
// List<String> pushOrders = (List<String>) REDIS.keys("pushOrder:*");
|
||||
List<String> internetSerialNumbers = new ArrayList<>();
|
||||
List<String> connectorIdMap = new ArrayList<>();
|
||||
List<String> orderNos = new ArrayList<>();
|
||||
@ -120,6 +118,8 @@ public class NotificationChargeOrderInfoTask extends CoreDispatcher {
|
||||
|
||||
if (null != xhpcHistoryOrder.getStopReasonEvcs()) {
|
||||
chargeOrderInfo.setStopReason(xhpcHistoryOrder.getStopReasonEvcs());
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
notify(chargeOrderInfo, authSecretToken, orderNo);
|
||||
}
|
||||
@ -139,10 +139,14 @@ public class NotificationChargeOrderInfoTask extends CoreDispatcher {
|
||||
ChargeOrderInfoResponse chargeOrderInfoResponse = DTOJsonHelper.parseResponseData(responseBody,
|
||||
ChargeOrderInfoResponse.class, authSecretTokenOut);
|
||||
if (null != chargeOrderInfoResponse) {
|
||||
Integer succStat = chargeOrderInfoResponse.getConfirmResult();
|
||||
//O means that the response is not success.
|
||||
//todo add a logic, which will be constructed by the value of confirmResult.
|
||||
if (succStat == 0) {
|
||||
Integer confirmResult = chargeOrderInfoResponse.getConfirmResult();
|
||||
XhpcHistoryOrder horder = xhpcHistoryOrderRepository.findByInternetSerialNumber(chargeOrderInfo.getStartChargeSeq()).orElse(null);
|
||||
if (horder != null) {
|
||||
horder.setConfirmResult(confirmResult);
|
||||
xhpcHistoryOrderRepository.save(horder);
|
||||
}
|
||||
//O means that the response is success.
|
||||
if (confirmResult == 0) {
|
||||
REDIS.setCacheMapValue(orderNo, "chargeOrderInfoNotificationStat", -1);
|
||||
} else {
|
||||
throw new RuntimeException(String.format("push CD start order status [%s] failed: %s",
|
||||
|
||||
@ -240,6 +240,20 @@ public class XhpcHistoryOrder extends BaseEntity {
|
||||
*/
|
||||
private String phone;
|
||||
|
||||
|
||||
/**
|
||||
* 推送第三方订单返回的确认结果
|
||||
*/
|
||||
private Integer confirmResult;
|
||||
|
||||
public Integer getConfirmResult() {
|
||||
return confirmResult;
|
||||
}
|
||||
|
||||
public void setConfirmResult(Integer confirmResult) {
|
||||
this.confirmResult = confirmResult;
|
||||
}
|
||||
|
||||
public Double getMeterValueEndEvcs() {
|
||||
|
||||
return meterValueEndEvcs;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user