diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/NotificationService.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/NotificationService.java index 78cd34008..5aa7fa97b 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/NotificationService.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/NotificationService.java @@ -212,7 +212,15 @@ public class NotificationService { }catch (Exception e){ logger.error("推送充电账单信息error", e); } - + //推送充电历史订单信息 + try { + // 根据平台类型获取Service + if (platformService != null) { + platformService.notificationChargeOrderInfoHistory(orderCode); + } + } catch (Exception e) { + logger.error("历史充电订单信息推送error", e); + } } } diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/ChangZhouPlatformServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/ChangZhouPlatformServiceImpl.java index 46112a2a2..311e88d3d 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/ChangZhouPlatformServiceImpl.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/ChangZhouPlatformServiceImpl.java @@ -873,13 +873,13 @@ public class ChangZhouPlatformServiceImpl implements ThirdPartyPlatformService { public Map retryNotificationOrderInfo(String orderCode) { Map map = new LinkedHashMap<>(); ThirdPartySecretInfoVO thirdPartySecretInfoVO = getChangZhouSecretInfo(); - int Success = 0; + int SuccStat = 0; //查询订单信息 OrderBasicInfo orderBasicInfo = orderBasicInfoService.getOrderInfoByOrderCode(orderCode); if (orderBasicInfo == null) { - Success = 1; + SuccStat = 1; } - map.put("Success", Success); + map.put("SuccStat", SuccStat); return ThirdPartyPlatformUtils.generateResultMap(map, thirdPartySecretInfoVO); }