|
|
@@ -2000,9 +2000,10 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
//同步车票是否重购 记录
|
|
|
TASK_POOL.execute(() -> {
|
|
|
groupsRelationExpiryRecordService.syncGroupsRelationExpiryRecord(orderDon, goodsDon, sku);
|
|
|
-
|
|
|
- //发送下单后 若有手机 发送短信
|
|
|
- sendOrderPhoneMsg(orderDon.getUserId());
|
|
|
+ if (orderDon.getYhsId() == 0) {
|
|
|
+ //发送下单后 若有手机 发送短信
|
|
|
+ sendOrderPhoneMsg(orderDon.getUserId());
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
|