This commit is contained in:
YAS\29473
2025-06-30 14:58:31 +08:00
parent 14bf284e82
commit b235833fc0
2 changed files with 12 additions and 4 deletions

View File

@@ -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);
}
}
}