From 2a4c276727bd4ed4302d65a62513cb8f9c929648 Mon Sep 17 00:00:00 2001 From: zhangbb Date: Tue, 14 May 2019 15:52:54 +0800 Subject: [PATCH] =?UTF-8?q?1=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp b/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp index 0edde9ff6..b817f7a9d 100644 --- a/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp +++ b/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp @@ -1022,7 +1022,7 @@ function saveRecord(sPostEvents){ AsDebug.showMessage("提示","综合融资额比例不能小于"+productCleanLeaseMoneyRatioMin+"%","","",true); return ; } - if((LeaseMoneyRatio=>productCleanLeaseMoneyRatioMax)&&(productCleanLeaseMoneyRatioMax!=null)&&(productCleanLeaseMoneyRatioMax!="")){ + if((LeaseMoneyRatio>=productCleanLeaseMoneyRatioMax)&&(productCleanLeaseMoneyRatioMax!=null)&&(productCleanLeaseMoneyRatioMax!="")){ AsDebug.showMessage("提示","综合融资额比例不能大于"+productCleanLeaseMoneyRatioMax+"%","","",true); return ; } @@ -1030,7 +1030,7 @@ function saveRecord(sPostEvents){ AsDebug.showMessage("提示","融资额不能小于"+productCleanLeaseMoneyMin,"","",true); return ; } - if((cleanLeaseMoney=>productCleanLeaseMoneyMax)&&(productCleanLeaseMoneyMax!=null)&&(productCleanLeaseMoneyMax!="")){ + if((cleanLeaseMoney>=productCleanLeaseMoneyMax)&&(productCleanLeaseMoneyMax!=null)&&(productCleanLeaseMoneyMax!="")){ AsDebug.showMessage("提示","融资额不能大于"+productCleanLeaseMoneyMax,"","",true); return ; }