From 3e4f7302e1e26c0e4d2183fb9276d5105b875b67 Mon Sep 17 00:00:00 2001
From: tangfutang <3218982385@qq.com>
Date: Wed, 28 Jul 2021 18:42:47 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=88=86=E6=AE=B5=E8=9E=8D?=
=?UTF-8?q?=E8=AF=A6=E7=BB=86=E4=BF=A1=E6=81=AF=E5=92=8C=E5=88=86=E6=AE=B5?=
=?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=A0=B9=E6=8D=AE=E7=A7=9F=E9=87=91=E6=B5=8B?=
=?UTF-8?q?=E7=AE=97=E6=96=B9=E5=BC=8F=E6=98=BE=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../LCCalcSubsectionInfoTempList.jsp | 21 +++++++++++
.../LCSubsectionRentPlanTempList.jsp | 37 +++++++++++++++++++
.../LoanSimulation/LoanBasicInfo.jsp | 2 +
3 files changed, 60 insertions(+)
create mode 100644 WebContent/Accounting/LoanSimulation/LCSubsectionRentPlanTempList.jsp
diff --git a/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp b/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp
index 58faea8e8..69796348c 100644
--- a/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp
+++ b/WebContent/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp
@@ -11,6 +11,7 @@
doTemp.setHtmlEvent( "DISCOUNT", "onblur", "changeDiscount" );
doTemp.setHtmlEvent( "DISCOUNT_RATE", "onblur", "changeDiscountRate" );
doTemp.setHtmlEvent( "CLEAN_LEASE_RATIO", "onblur", "changeCleanLeaseRatio" );
+ doTemp.setHtmlEvent( "CLEAN_LEASE_MONEY", "onblur", "changeCleanLeaseMoney" );
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
dwTemp.Style="1"; //--设置为Grid风格--
dwTemp.ReadOnly = "0"; //只读模式
@@ -20,6 +21,7 @@
//0、是否展示 1、 权限控制 2、 展示类型 3、按钮显示名称 4、按钮解释文字 5、按钮触发事件代码 6、 7、 8、 9、图标,CSS层叠样式 10、风格
String sButtons[][] = {
{"true","All","Button","保存","保存","save()","","","","btn_icon_save",""},
+ {"true","All","Button","详情","保存","viewAndEdit()","","","","btn_icon_detail",""},
};
%><%@include file="/Frame/resources/include/ui/include_list.jspf"%>
<%@ include file="/Frame/resources/include/include_end.jspf"%>
diff --git a/WebContent/Accounting/LoanSimulation/LCSubsectionRentPlanTempList.jsp b/WebContent/Accounting/LoanSimulation/LCSubsectionRentPlanTempList.jsp
new file mode 100644
index 000000000..1e417548a
--- /dev/null
+++ b/WebContent/Accounting/LoanSimulation/LCSubsectionRentPlanTempList.jsp
@@ -0,0 +1,37 @@
+<%@ page contentType="text/html; charset=GBK"%>
+<%@ include file="/Frame/resources/include/include_begin_list.jspf"%><%
+ /*
+ Author: undefined 2021-07-28
+ Content:
+ History Log:
+ */
+ ASObjectModel doTemp = new ASObjectModel("LCSubsectionRentPlanTempList");
+ ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
+ dwTemp.Style="1"; //--设置为Grid风格--
+ dwTemp.ReadOnly = "1"; //只读模式
+ dwTemp.setPageSize((pageSize==null||"undefined".equals(pageSize))?24:Integer.parseInt(pageSize));
+ dwTemp.genHTMLObjectWindow(CurPage.getParameter("flowunid"));
+
+ //0、是否展示 1、 权限控制 2、 展示类型 3、按钮显示名称 4、按钮解释文字 5、按钮触发事件代码 6、 7、 8、 9、图标,CSS层叠样式 10、风格
+ String sButtons[][] = {
+ {"false","All","Button","新增","新增","newRecord()","","","","btn_icon_add",""},
+ {"false","","Button","详情","详情","viewAndEdit()","","","","btn_icon_detail",""},
+ {"false","","Button","删除","删除","if(confirm('确实要删除吗?'))as_delete(0,'alert(getRowCount(0))')","","","","btn_icon_delete",""},
+ };
+%><%@include file="/Frame/resources/include/ui/include_list.jspf"%>
+
+<%@ include file="/Frame/resources/include/include_end.jspf"%>
\ No newline at end of file
diff --git a/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp b/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp
index 09c5d65d4..2a154c51f 100644
--- a/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp
+++ b/WebContent/Accounting/LoanSimulation/LoanBasicInfo.jsp
@@ -900,7 +900,9 @@ function changeSettleMethod2(){
}
document.all( 'A_Group_0020' ).style.display = 'none';
+ showItem(0,"SUBSECTION_CONDIG",'none');
if ( settleMethod === 'segmented_financing' ) {
+ showItem(0,"SUBSECTION_CONDIG",'block');
document.all( 'A_Group_0020' ).style.display = 'block';
var param = 'CompClientID=<%=compClientID%>&flowunid=<%=flowunid%>&plannumber=<%=plannumber%>&planCName=<%=planCName%>&IsHistory=<%=ishistory%>&NodeNo=<%=nodeNo%>&calType=<%=calType%>';
AsControl.OpenView( '/Accounting/LoanSimulation/LCCalcSubsectionInfoTempList.jsp', param, 'subsection_list' );