This commit is contained in:
YAS\29473
2025-09-01 15:45:23 +08:00
parent e93dcef307
commit f382e2ba5e

View File

@@ -1258,8 +1258,20 @@ public class TempService {
notificationDTO.setOrderCode(orderBasicInfo.getOrderCode());
notificationDTO.setStationId(orderBasicInfo.getStationId());
notificationDTO.setPlatformType(dto.getThirdPartyType());
try {
notificationService.notificationChargeOrderInfoHistory(notificationDTO);
}catch (Exception e) {
logger.error("notificationChargeOrderInfoHistory推送订单失败订单号:{}", orderBasicInfo.getOrderCode(), e);
}
try {
//常畅充
// 补推送充电账单信息
notificationService.notificationChargeOrderInfo(notificationDTO);
}catch (Exception e){
logger.error("notificationChargeOrderInfo推送订单失败订单号:{}", orderBasicInfo.getOrderCode(), e);
}
notificationService.notificationChargeOrderInfoHistory(notificationDTO);
});
}