|
|
@ -876,7 +876,7 @@ public class LoanCaseExecuteApplyService extends MybatisBaseService<LoanCaseExec |
|
|
|
loanCaseExecuteApplyDetailsVo.setPjclFiles(pjclFiles); |
|
|
|
List<LoanCaseExecuteVehDetailsVo> loanCaseExecuteVehDetailsVos = new ArrayList<>(); |
|
|
|
List<LoanCaseProgressVeh> loanCaseProgressVehs = loanCaseProgressVehService.selByMainSid(sid); |
|
|
|
BigDecimal amountInArear = new BigDecimal("0"); |
|
|
|
BigDecimal amountInArear = BigDecimal.ZERO; |
|
|
|
for (LoanCaseProgressVeh loanCaseProgressVeh : loanCaseProgressVehs) { |
|
|
|
LoanCaseExecuteVehDetailsVo loanCaseExecuteVehDetailsVo = new LoanCaseExecuteVehDetailsVo(); |
|
|
|
loanCaseExecuteVehDetailsVo.setVinNo(loanCaseProgressVeh.getVinNo()); |
|
|
@ -889,7 +889,7 @@ public class LoanCaseExecuteApplyService extends MybatisBaseService<LoanCaseExec |
|
|
|
amountInArear = amountInArear.add(new BigDecimal(alrepaidAndArr2.getCurrentBeMoney())); |
|
|
|
} |
|
|
|
loanCaseExecuteApplyDetailsVo.setLoanCaseExecuteVehList(loanCaseExecuteVehDetailsVos); |
|
|
|
loanCaseExecuteApplyDetailsVo.setAmountInArear(amountInArear); |
|
|
|
loanCaseExecuteApplyDetailsVo.setAmountInArear(amountInArear.toString()); |
|
|
|
return rb.success().setData(loanCaseExecuteApplyDetailsVo); |
|
|
|
} |
|
|
|
} |