|
|
@ -2662,14 +2662,17 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if ("01".equals(loanFinPolicy.getDiscountUseTypeKey())) {//01差额放款
|
|
|
|
if ("01".equals(loanFinPolicy.getDiscountUseTypeKey())) { |
|
|
|
BigDecimal zer = BigDecimal.ZERO; |
|
|
|
if (loanSolutions.getFactoryDiscount() != null) { |
|
|
|
bg = bg.subtract(loanSolutions.getFactoryDiscount()); |
|
|
|
if(loanSolutions.getFactoryDiscount() != null){ |
|
|
|
pushVo.setOtherReceivableMoney(loanSolutions.getFactoryDiscount().toString()); |
|
|
|
} |
|
|
|
|
|
|
|
zer = zer.add(loanSolutions.getFactoryDiscount()); |
|
|
|
} |
|
|
|
if(loanSolutionsOtherpolicy.getOtherDiscount() != null){ |
|
|
|
bg = bg.subtract(loanSolutionsOtherpolicy.getOtherDiscount()); |
|
|
|
zer = zer.add(loanSolutionsOtherpolicy.getOtherDiscount()); |
|
|
|
} |
|
|
|
pushVo.setOtherReceivableMoney(zer.toString()); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|