Compare commits

...

2 Commits

1 changed files with 3 additions and 1 deletions

View File

@ -180,7 +180,9 @@ public class BonusSettleServiceImpl implements IBonusSettleService {
public void calculateCuMemberRetailRangeBySaOrder(SaOrderExt orderExt) {
Integer updateType = null;
String symbol = orderExt.getCancelBool() ? "-" : "+";
if (orderExt.getOrderType().equals(EOrderType.RETAIL_REGISTER.getValue())) {
if (orderExt.getOrderType().equals(EOrderType.RETAIL_REGISTER.getValue())
|| orderExt.getOrderType().equals(EOrderType.RETAIL_UPGRADE.getValue())
) {
updateType = 1;
} else if (orderExt.getOrderType().equals(EOrderType.RETAIL_REPURCHASE.getValue())) {
updateType = 2;