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 @@