From 01c9ecbd3983f711321f1a1d36ea7b76d933eee4 Mon Sep 17 00:00:00 2001 From: zhouyahui Date: Wed, 18 Jul 2018 09:23:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=BC=E5=90=88=E8=9E=8D=E8=B5=84=E9=A2=9D?= =?UTF-8?q?=E8=AE=A1=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp b/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp index fa403a912..0e385bd14 100644 --- a/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp +++ b/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp @@ -790,7 +790,8 @@ function getRatioByMoney(e){ var firstPaymentRatio = getItemValue(0, 0, "FIRST_PAYMENT_RATIO_0"); var ratio = 100 - Number(firstPaymentRatio); if(ratio > 0 && allMoney != 0) { - cleanLeaseMoney = allMoney * (ratio / 100); + //cleanLeaseMoney = allMoney * (ratio / 100); + cleanLeaseMoney = allMoney-equipAmt*firstPaymentRatio/100; setItemValue(0, 0, "RENT_RATIO", ((cleanLeaseMoney / equipAmt) * 100).toFixed(6)); setItemValue(0, 0, "CLEAN_LEASE_MONEY", cleanLeaseMoney); }