|
|
@@ -455,6 +455,7 @@ public class GoodsWholesalePayServiceImpl implements GoodsWholesalePayService {
|
|
|
Integer endPayNum = hasPaidNum + thisPayNum;
|
|
|
//未超过第一档
|
|
|
if (endPayNum <= firstConfig.getEnd()) {
|
|
|
+ orderDon.setIsRecordDiffer(true);
|
|
|
orderDon.setMoney(BigDecimal.valueOf(thisPayNum).multiply(firstConfig.getSingle()));
|
|
|
return;
|
|
|
}
|
|
|
@@ -465,7 +466,6 @@ public class GoodsWholesalePayServiceImpl implements GoodsWholesalePayService {
|
|
|
//超过最后
|
|
|
if (endPayNum >= endConfig.getStart()) {
|
|
|
orderDon.setMoney(BigDecimal.valueOf(thisPayNum).multiply(endConfig.getSingle()));
|
|
|
- orderDon.setIsRecordDiffer(true);
|
|
|
return;
|
|
|
}
|
|
|
if (endConfig.getEnd().intValue() != 999 && endPayNum > endConfig.getEnd()) {
|