## 众康领导奖、平级改为超500PV按500计算;
This commit is contained in:
parent
c1bf0ec8a4
commit
43f6119e4b
|
@ -1129,7 +1129,7 @@ public class BonusSettleRangeHandle extends BonusSettleHandle {
|
||||||
BigDecimal orderAchieve = saOrderExt.getOrderAchieve();
|
BigDecimal orderAchieve = saOrderExt.getOrderAchieve();
|
||||||
if (EOrderType.RETAIL_REGISTER.getValue() == saOrderExt.getOrderType()
|
if (EOrderType.RETAIL_REGISTER.getValue() == saOrderExt.getOrderType()
|
||||||
|| EOrderType.RETAIL_UPGRADE.getValue() == saOrderExt.getOrderType()) {
|
|| EOrderType.RETAIL_UPGRADE.getValue() == saOrderExt.getOrderType()) {
|
||||||
// 精品专区、甄选专区,最大值为350PV超过的也算350PV
|
// 精品专区、甄选专区,最大值为350PV超过的也算350PV -- 2025.10.13改为500处理
|
||||||
if (orderAchieve.compareTo(BonusConstants.RANGE_BONUS_ACHIEVE) > 0) {
|
if (orderAchieve.compareTo(BonusConstants.RANGE_BONUS_ACHIEVE) > 0) {
|
||||||
orderAchieve = BonusConstants.RANGE_BONUS_ACHIEVE;
|
orderAchieve = BonusConstants.RANGE_BONUS_ACHIEVE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.hzs.bonus.constant;
|
package com.hzs.bonus.constant;
|
||||||
|
|
||||||
import cn.hutool.core.util.ReflectUtil;
|
import cn.hutool.core.util.ReflectUtil;
|
||||||
|
import com.hzs.common.core.constant.RetailConstants;
|
||||||
import com.hzs.common.core.utils.DateUtils;
|
import com.hzs.common.core.utils.DateUtils;
|
||||||
import com.hzs.common.domain.member.achieve.CuMemberRetailDetail;
|
import com.hzs.common.domain.member.achieve.CuMemberRetailDetail;
|
||||||
|
|
||||||
|
@ -16,9 +17,9 @@ public class BonusConstants {
|
||||||
public static final BigDecimal SAME_LEVEL_RATIO = new BigDecimal("0.02");
|
public static final BigDecimal SAME_LEVEL_RATIO = new BigDecimal("0.02");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 领导奖处理时,满350PV以上按350算
|
* 领导奖处理时,满350PV以上按350算 -- 2025.10.13改为500
|
||||||
*/
|
*/
|
||||||
public static final BigDecimal RANGE_BONUS_ACHIEVE = new BigDecimal("350");
|
public static final BigDecimal RANGE_BONUS_ACHIEVE = RetailConstants.SPECIAL_AREA_41_MAX_ORDER_DIVIDEND_PV_VALUE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 赠送2个点位订单金额
|
* 赠送2个点位订单金额
|
||||||
|
|
|
@ -22,11 +22,6 @@ public class RetailConstants {
|
||||||
* 商城专区见点收益血缘上 20 代
|
* 商城专区见点收益血缘上 20 代
|
||||||
*/
|
*/
|
||||||
public static final Integer REPUR_DIRECT_ALGEBRA = 20;
|
public static final Integer REPUR_DIRECT_ALGEBRA = 20;
|
||||||
/**
|
|
||||||
* 直推平级收益比例(每代拿商品价格的千分之五)
|
|
||||||
*/
|
|
||||||
public static final BigDecimal SAME_RATIO = new BigDecimal("0.005");
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 精品专区下单金额上限
|
* 精品专区下单金额上限
|
||||||
|
@ -39,9 +34,9 @@ public class RetailConstants {
|
||||||
public static final BigDecimal SPECIAL_AREA_41_MAX_ORDER_DIVIDEND_PV_AMOUNT = new BigDecimal("10000");
|
public static final BigDecimal SPECIAL_AREA_41_MAX_ORDER_DIVIDEND_PV_AMOUNT = new BigDecimal("10000");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分红上限(0.015)结果值
|
* 分红上限(0.015)结果值 -- 2025.10.13改为500
|
||||||
*/
|
*/
|
||||||
public static final BigDecimal SPECIAL_AREA_41_MAX_ORDER_DIVIDEND_PV_VALUE = new BigDecimal("350");
|
public static final BigDecimal SPECIAL_AREA_41_MAX_ORDER_DIVIDEND_PV_VALUE = new BigDecimal("500");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分红计算比例
|
* 分红计算比例
|
||||||
|
|
Loading…
Reference in New Issue