## 188顾客本身累计业绩,但是不占碰次,不产生奖金;
This commit is contained in:
parent
bfe4c2bd06
commit
f31110ff50
|
@ -187,8 +187,7 @@ public class BonusSettleNewExpandHandle extends BonusSettleHandle {
|
|||
if (targetMemberSettleExt == null
|
||||
|| ECategory.NORMAL.getValue() != targetMemberSettleExt.getCategory()
|
||||
|| EAccountStatus.STOP_INCOME.getValue() == targetMemberSettleExt.getAccountStatus()
|
||||
|| EGrade.START_UP.getValue() == targetMemberSettleExt.getGradeValue()
|
||||
|| EGrade.HAI_FAN.getValue() == targetMemberSettleExt.getGradeValue()) {
|
||||
|| EGrade.START_UP.getValue() == targetMemberSettleExt.getGradeValue()) {
|
||||
// 会员不满足计算奖金条件,跳过
|
||||
continue;
|
||||
}
|
||||
|
@ -229,6 +228,11 @@ public class BonusSettleNewExpandHandle extends BonusSettleHandle {
|
|||
}
|
||||
}
|
||||
|
||||
if (EGrade.HAI_FAN.getValue() == targetMemberSettleExt.getGradeValue()) {
|
||||
// 188 顾客等级只累计业绩,不算碰次
|
||||
continue;
|
||||
}
|
||||
|
||||
// 2025.05.14 对碰大小值走配置
|
||||
BigDecimal small = new BigDecimal("1440");
|
||||
BigDecimal big = new BigDecimal("2880");
|
||||
|
|
Loading…
Reference in New Issue