|
|
@@ -1560,6 +1560,7 @@ handlingProportion,
|
|
|
public List<InsPlyIncome> totalBxAmount(InsPlyIncomeVo insPlyIncomeVo) {
|
|
|
HashMap<String, Object> params = new HashMap<>();
|
|
|
params = this.saveParams(insPlyIncomeVo, params);
|
|
|
+ params.remove("handlingFeesStatus");
|
|
|
List<InsPlyIncome> resultList = baseMapper.totalBxAmount(params);
|
|
|
for (InsPlyIncome item : resultList) {
|
|
|
BigDecimal commissionFeevalue = BigDecimal.ZERO; //总金额
|
|
|
@@ -1569,7 +1570,6 @@ handlingProportion,
|
|
|
BigDecimal unSettledAmount; //未结算金额
|
|
|
params.put("partnerCompaniesId", item.getPartnerCompaniesId());
|
|
|
|
|
|
- params.remove("handlingFeesStatus");
|
|
|
List<InsPlyIncome> insPlyIncomes = baseMapper.queryNew(params); //金额总数
|
|
|
for (InsPlyIncome all : insPlyIncomes) {
|
|
|
commissionFeevalue = commissionFeevalue.add(all.getCommissionFeevalue());
|
|
|
@@ -2056,7 +2056,6 @@ handlingProportion,
|
|
|
InsPlyIncome insPlyIncome = new InsPlyIncome();
|
|
|
HashMap<String, Object> params = new HashMap<>();
|
|
|
params = this.saveParams(insPlyIncomeVo, params);
|
|
|
-
|
|
|
BigDecimal sumCommissionFeevalue = BigDecimal.ZERO; //总金额
|
|
|
BigDecimal sumInvoicCommissionFeevalue = BigDecimal.ZERO; //开票未结算
|
|
|
BigDecimal sumReadyCommissionFeevalue = BigDecimal.ZERO; // 已开票已结算
|
|
|
@@ -2073,8 +2072,7 @@ handlingProportion,
|
|
|
BigDecimal noInvoicCommissionFeevalue = BigDecimal.ZERO; //未开票金额
|
|
|
BigDecimal unSettledAmount; //未结算金额
|
|
|
params.put("partnerCompaniesId", item.getPartnerCompaniesId());
|
|
|
-
|
|
|
-// params.remove("handlingFeesStatus");
|
|
|
+ params.remove("handlingFeesStatus");
|
|
|
List<InsPlyIncome> insPlyIncomes = baseMapper.queryNew(params); //金额总数
|
|
|
for (InsPlyIncome all : insPlyIncomes) {
|
|
|
commissionFeevalue = commissionFeevalue.add(all.getCommissionFeevalue());
|