## 解决合并二次发货冲突;

This commit is contained in:
cabbage 2025-06-05 14:30:52 +08:00
parent f1cc2437d0
commit 12a5b764f0
1 changed files with 8 additions and 8 deletions

View File

@ -569,14 +569,14 @@ public class SaDeliverBusinessServiceImpl implements ISaDeliverBusinessService {
iSaOrderBonusService.insertBatch(orderBonusList); iSaOrderBonusService.insertBatch(orderBonusList);
} }
// 需要扣款 // // 需要扣款
if (null != updateAccount) { // if (null != updateAccount) {
R accountR = iMemberAccountServiceApi.insertMemberTrade(saOrder, updateAccount); // R accountR = iMemberAccountServiceApi.insertMemberTrade(saOrder, updateAccount);
if (!accountR.isSuccess()) { // if (!accountR.isSuccess()) {
log.error("订单二次发货同意处理失败: 会员扣款失败"); // log.error("订单二次发货同意处理失败: 会员扣款失败");
throw new ServiceException("订单二次发货同意处理失败: 会员扣款失败"); // throw new ServiceException("订单二次发货同意处理失败: 会员扣款失败");
} // }
} // }
return null; return null;
} }