|
|
@ -608,16 +608,31 @@ public class LoanSettleApplyService extends MybatisBaseService<LoanSettleApplyMa |
|
|
|
settleApplyCommonVo.setFunfCost(funfCost); |
|
|
|
//公司当前逾期月还
|
|
|
|
String overdueMonthPrice = baseMapper.selectGsYqYh(busVinSid, settingDate); |
|
|
|
settleApplyCommonVo.setOverdueMonthPrice(overdueMonthPrice); |
|
|
|
settleApplyCommonVo.setOverduePrice(overdueMonthPrice); |
|
|
|
if (StringUtils.isNotBlank(overdueMonthPrice)) { |
|
|
|
settleApplyCommonVo.setOverdueMonthPrice(overdueMonthPrice); |
|
|
|
settleApplyCommonVo.setOverduePrice(overdueMonthPrice); |
|
|
|
} else { |
|
|
|
settleApplyCommonVo.setOverdueMonthPrice("0.00"); |
|
|
|
settleApplyCommonVo.setOverduePrice("0.00"); |
|
|
|
} |
|
|
|
//公司当期未到期月还
|
|
|
|
String currentNotDuePrice = baseMapper.selectGsDqWdq(busVinSid, settingDate); |
|
|
|
settleApplyCommonVo.setCurrentNotDuePrice(currentNotDuePrice); |
|
|
|
settleApplyCommonVo.setCompanyCurrentNotPrice(currentNotDuePrice); |
|
|
|
if (StringUtils.isNotBlank(currentNotDuePrice)) { |
|
|
|
settleApplyCommonVo.setCurrentNotDuePrice(currentNotDuePrice); |
|
|
|
settleApplyCommonVo.setCompanyCurrentNotPrice(currentNotDuePrice); |
|
|
|
} else { |
|
|
|
settleApplyCommonVo.setCurrentNotDuePrice("0.00"); |
|
|
|
settleApplyCommonVo.setCompanyCurrentNotPrice("0.00"); |
|
|
|
} |
|
|
|
//公司未到期月还
|
|
|
|
String notDuePrice = baseMapper.selectGsWdq(busVinSid, settingDate); |
|
|
|
settleApplyCommonVo.setNotDuePrice(notDuePrice); |
|
|
|
settleApplyCommonVo.setBankNotPrice(notDuePrice); |
|
|
|
if (StringUtils.isNotBlank(notDuePrice)) { |
|
|
|
settleApplyCommonVo.setNotDuePrice(notDuePrice); |
|
|
|
settleApplyCommonVo.setBankNotPrice(notDuePrice); |
|
|
|
} else { |
|
|
|
settleApplyCommonVo.setNotDuePrice("0.00"); |
|
|
|
settleApplyCommonVo.setBankNotPrice("0.00"); |
|
|
|
} |
|
|
|
//贷款保证金
|
|
|
|
//根据销售订单查询还款计划主表
|
|
|
|
LoanRepaymentSchedule schedule = loanRepaymentScheduleService.fetchBySid(scheduleSid); |
|
|
|