|
@@ -1648,9 +1648,11 @@ public class SubmitServiceImpl implements SubmitService {
|
|
|
}
|
|
|
shopOrderList.forEach(f -> {
|
|
|
Integer accountType = submitMapper.findAccountType(f.getShopId());
|
|
|
+ log.info("私账订单利润转第三方--------------------------accountType--->" + accountType);
|
|
|
if (1 == accountType) {
|
|
|
// 所有私账订单子订单利润算为付第三方采美中介费
|
|
|
Double profit = submitMapper.findCmProfit(f.getShopOrderId());
|
|
|
+ log.info("子订单-----------------shopOrderId-->" + f.getShopOrderId() + "-----------------利润--profit---->" + profit);
|
|
|
submitMapper.updateShopOrderOtherFee(profit, f.getShopOrderId());
|
|
|
}
|
|
|
});
|