From 1adb175c3807d39a1cab5b9a5dc8b2bf7ca4529d Mon Sep 17 00:00:00 2001 From: yjf <2211675158@qq.com> Date: Thu, 9 Sep 2021 17:54:13 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=B4=E6=81=AF=E5=AD=97=E6=AE=B5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LCCalcSubsectionInfoTempList.jsp | 16 +++++------ .../LoanSimulation/LoanBasicInfo.jsp | 27 ++++++++++--------- WebContent/WEB-INF/etc/jbo/jbo_calc.xml | 1 + .../reckon/executor/CashFlowExecutor.java | 4 +-- .../executor/SegmentedFinancingExecutor.java | 6 ++--- .../reckon/product/ProductCondition.java | 6 +++-- .../calc/LC_CALC_SUBSECTION_INFO_TEMP.java | 4 +++ 7 files changed, 36 insertions(+), 28 deletions(-) diff --git a/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp b/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp index cefb3c1a8..f9244329d 100644 --- a/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp +++ b/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp @@ -8,7 +8,7 @@ String flowunid = CurPage.getParameter("flowunid"); String projectId = CurPage.getParameter("projectId"); ASObjectModel doTemp = new ASObjectModel("LCCalcSubsectionInfoTemp"); - doTemp.setHtmlEvent( "DISCOUNT", "onblur", "changeDiscount" ); + doTemp.setHtmlEvent( "DISCOUNT_INTEREST", "onblur", "changeDiscount" ); doTemp.setHtmlEvent( "DISCOUNT_RATE", "onblur", "changeDiscountRate" ); doTemp.setHtmlEvent( "CLEAN_LEASE_RATIO", "onblur", "changeCleanLeaseRatio" ); doTemp.setHtmlEvent( "CLEAN_LEASE_MONEY", "onblur", "changeCleanLeaseMoney" ); @@ -16,16 +16,16 @@ String discountCalcMethod = Sqlca.getString("select DISCOUNT_CALC_METHOD from LC_CALC_SUBSECTION_INFO_TEMP where FLOWUNID='"+flowunid+"'"); if(discountCalcMethod != null){ if(discountCalcMethod.equals("1")){ - doTemp.setReadOnly("DISCOUNT",true); + doTemp.setReadOnly("DISCOUNT_INTEREST",true); doTemp.setReadOnly("DISCOUNT_RATE",false); }else if (discountCalcMethod.equals("2")){ - doTemp.setReadOnly("DISCOUNT",false); + doTemp.setReadOnly("DISCOUNT_INTEREST",false); doTemp.setReadOnly("DISCOUNT_RATE",true); }else if (discountCalcMethod.equals("3")){//固定值,对应的值改为只读 doTemp.setReadOnly("DISCOUNT_RATE",true); doTemp.setReadOnly("FINANCING_RATE",true); doTemp.setReadOnly("INCOME_NUMBER",true); - doTemp.setReadOnly("DISCOUNT",true); + doTemp.setReadOnly("DISCOUNT_INTEREST",true); } } ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request); @@ -43,19 +43,19 @@