|
|
@ -1384,6 +1384,9 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
//其他融贴息
|
|
|
|
String otherDiscount = query.getOtherDiscount(); |
|
|
|
if (StringUtils.isNotBlank(otherDiscount) && !"0".equals(otherDiscount)) { |
|
|
|
loanDownPay = loanDownPay.subtract(new BigDecimal(otherPolicyAmount)); |
|
|
|
//总贷款金额的计算
|
|
|
|
loanAmountTotal = loanAmountTotal.add(new BigDecimal(otherPolicyAmount)); |
|
|
|
//根据年利率和期数、贷款金额计算旧月还
|
|
|
|
BigDecimal otherPolicyMonthlyRepay = BigDecimal.ZERO; |
|
|
|
if(new BigDecimal(otherPolicyYearRatio).compareTo(BigDecimal.ZERO) == 0){ |
|
|
|