3
0
Fork 0

## 提货订单不需要处理业绩、奖金;

This commit is contained in:
cabbage 2025-08-05 14:44:48 +08:00
parent 5b13979b08
commit f017daaf64
1 changed files with 4 additions and 0 deletions

View File

@ -62,6 +62,10 @@ public class BonusSettleRangeHandle extends BonusSettleHandle {
// 新零售订单
List<SaOrderExt> orderList = iBonusOrderService.queryRetailSaOrderByDay(settleStartDate, settleEndDate, null);
for (SaOrderExt saOrderExt : orderList) {
if (EOrderType.PICK_ORDER.getValue() == saOrderExt.getOrderType()) {
// 提货订单不需要处理奖金相关
continue;
}
if (saOrderExt.getDelFlag() == EYesNo.YES.getIntValue()) {
retailOrderList.add(saOrderExt);
}