bugfix 微信启动充电会推送两次启动充电消息

This commit is contained in:
Lemon
2025-08-06 16:45:02 +08:00
parent 8404790238
commit b7341c09a1

View File

@@ -633,11 +633,11 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
orderInfo.setChargeStartTime(new Date());
}
updateOrderBasicInfo(orderInfo);
// 判断是否要向小程序发送通知
if (StringUtils.isNotEmpty(orderInfo.getMemberId())){
// 发送小程序通知
wxAppletRemoteService.startChargingSendMsg(orderInfo);
}
// // 判断是否要向小程序发送通知
// if (StringUtils.isNotEmpty(orderInfo.getMemberId())){
// // 发送小程序通知
// wxAppletRemoteService.startChargingSendMsg(orderInfo);
// }
}
/**