From b1233b0faf69d56eb61c394c0fc06948eb08ebe1 Mon Sep 17 00:00:00 2001 From: tangfutang Date: Mon, 15 Oct 2018 16:48:15 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=80=E5=9B=9E=E4=B8=8D=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E4=BF=A1=E6=81=AF=E5=92=8C=E4=B8=9A=E5=8A=A1?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E6=98=BE=E7=A4=BA=E8=AF=A5=E6=89=BF=E7=A7=9F?= =?UTF-8?q?=E4=BA=BA=E7=9A=84=E6=89=80=E6=9C=89=E5=90=88=E5=90=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/WorkFlow/FlowBackSubmitDialog.jsp | 3 +- .../Common/WorkFlow/FlowSubmitDialog.jsp | 5 +- .../ContractRepeatList.jsp | 55 +++++++++++++++++++ 3 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/ContractRepeatList.jsp diff --git a/WebContent/Common/WorkFlow/FlowBackSubmitDialog.jsp b/WebContent/Common/WorkFlow/FlowBackSubmitDialog.jsp index e0b905ef4..79a787ca5 100644 --- a/WebContent/Common/WorkFlow/FlowBackSubmitDialog.jsp +++ b/WebContent/Common/WorkFlow/FlowBackSubmitDialog.jsp @@ -153,7 +153,8 @@ phaseAction.append("无用户"); } } - + //隐藏退回是用户信息 + actionSet.hide(); } function doCancel(){ diff --git a/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp b/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp index 9644dc781..b9850587f 100644 --- a/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp +++ b/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp @@ -173,13 +173,16 @@ } /* if((phase=="0010"&&flowNo=="FundPaymentCarFlow")||((phase=="0020"||phase=="0010")&&flowNo=="BusinessApplyFlow")){ actionSet.hide(); - } */ + } if(flowNo=="ProjectCreditFlow"||flowNo=="ProjectRecreditFlow"||flowNo=="Mortgage2FileFlow"||flowNo=="ContractOnhireFlow"||flowNo=="AdjustInterestFlow"){ if(phase!="0010"){ actionSet.hide(); } }else{ actionSet.hide(); + }*/ + if(vUser.length==1){ + actionSet.hide(); } } }else{ diff --git a/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/ContractRepeatList.jsp b/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/ContractRepeatList.jsp new file mode 100644 index 000000000..0c49fd5e8 --- /dev/null +++ b/WebContent/Tenwa/Lease/Flow/Project/BusinessApplication/ContractRepeatList.jsp @@ -0,0 +1,55 @@ +<%@page import="com.tenwa.reckon.product.ASObjectWindowCalc"%> +<%@ page contentType="text/html; charset=GBK"%> +<%@ include file="/Frame/resources/include/include_begin_list.jspf"%><% + /* + Author: undefined 2018-10-15 + Content: + History Log: + */ + String customertype = CurPage.getParameter("CustomerType"); + String flowunid = CurPage.getParameter("FlowUnid"); + String certid = ""; + if("03".equals(customertype)){ + certid = Sqlca.getString("select cpt.certid from lb_union_lessee_temp lul inner join CUSTOMER_PERSON_TEMP cpt on cpt.customerid = lul.customer_id where lul.flowunid = '"+flowunid+"' group by cpt.certid"); + }else{ + certid = Sqlca.getString("select cct.certid from lb_union_lessee_temp lul inner join CUSTOMER_COMPANY_TEMP cct on cct.customerid = lul.customer_id where lul.flowunid = '"+flowunid+"' group by cct.certid"); + } + ASObjectModel doTemp = new ASObjectModel("ContractRepeatList"); + ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request); + dwTemp.Style="1"; //--设置为Grid风格-- + dwTemp.ReadOnly = "1"; //只读模式 + dwTemp.setPageSize(10); + dwTemp.genHTMLObjectWindow(certid+","+certid); + + //0、是否展示 1、 权限控制 2、 展示类型 3、按钮显示名称 4、按钮解释文字 5、按钮触发事件代码 6、 7、 8、 9、图标,CSS层叠样式 10、风格 + String sButtons[][] = { +// {"true","All","Button","新增","新增","newRecord()","","","","btn_icon_add",""}, + {"true","","Button","详情","详情","viewAndEdit()","","","","btn_icon_detail",""}, +// {"true","","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