|
|
@ -2993,6 +2993,10 @@ public class BusSalesOrderService extends MybatisBaseService<BusSalesOrderMapper |
|
|
|
submitVo.setIntermediaryMobile(busSalesOrderSubmit.getDistributorMobile()); |
|
|
|
if (busSalesOrderSubmit.getDistributorPrice() != null) { |
|
|
|
submitVo.setAgencyFee(busSalesOrderSubmit.getDistributorPrice().toString()); |
|
|
|
if (priceInfo != null) { |
|
|
|
submitVo.setAgencyFeeTotal(busSalesOrderSubmit.getDistributorPrice().multiply(new BigDecimal(priceInfo.getNumber())).toString()); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
vo.setIntermediary1(submitVo); |
|
|
|
} |
|
|
@ -3002,6 +3006,9 @@ public class BusSalesOrderService extends MybatisBaseService<BusSalesOrderMapper |
|
|
|
submitVo.setIntermediaryMobile(busSalesOrderSubmit.getDistributorMobileTwo()); |
|
|
|
if (busSalesOrderSubmit.getDistributorPriceTwo() != null) { |
|
|
|
submitVo.setAgencyFee(busSalesOrderSubmit.getDistributorPriceTwo().toString()); |
|
|
|
if (priceInfo != null) { |
|
|
|
submitVo.setAgencyFeeTotal(busSalesOrderSubmit.getDistributorPriceTwo().multiply(new BigDecimal(priceInfo.getNumber())).toString()); |
|
|
|
} |
|
|
|
} |
|
|
|
vo.setIntermediary2(submitVo); |
|
|
|
} |
|
|
|