This commit is contained in:
YAS\29473
2025-05-22 16:54:20 +08:00
parent 66dd65d84f
commit 4064a17c93
3 changed files with 8 additions and 4 deletions

View File

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