diff --git a/WebContent/AppConfig/FlowManage/FlowUserConfig/flowUserSelect.jsp b/WebContent/AppConfig/FlowManage/FlowUserConfig/flowUserSelect.jsp index b6ddc99c2..5974c6971 100644 --- a/WebContent/AppConfig/FlowManage/FlowUserConfig/flowUserSelect.jsp +++ b/WebContent/AppConfig/FlowManage/FlowUserConfig/flowUserSelect.jsp @@ -15,7 +15,7 @@ //if(curOrgId.length()>13){ // curOrgId=curOrgId.substring(0,13); //} - curOrgId=curOrgId.substring(0,curOrgId.length()-4); + curOrgId=curOrgId.substring(0,curOrgId.length()-3); pid=curOrgId; String selectType=CurPage.getParameter("selectType"); String flowno=CurPage.getParameter("flowno"); diff --git a/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/InsuranceInfoDetail.jsp b/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/InsuranceInfoDetail.jsp index 0b9baa57d..be7e611b6 100644 --- a/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/InsuranceInfoDetail.jsp +++ b/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/InsuranceInfoDetail.jsp @@ -5,22 +5,24 @@ Content: 示例详情页面 History Log: */ - String sPrevUrl = CurPage.getParameter("PrevUrl"); + String contract_number = CurPage.getParameter("contract_number"); + String sPrevUrl = CurPage.getParameter("ID"); if(sPrevUrl == null) sPrevUrl = ""; String sTempletNo = "LBInsuranceInfoDetail";//--模板号-- ASObjectModel doTemp = new ASObjectModel(sTempletNo); ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request); dwTemp.Style = "2";//freeform - dwTemp.genHTMLObjectWindow(CurPage.getParameter("id")); + dwTemp.genHTMLObjectWindow(CurPage.getParameter("ID")); String sButtons[][] = { {"true","All","Button","保存","保存所有修改","saveRecord()","","","","btn_icon_save"}, - {"true","","Button","返回","返回列表页面","goBack()","","","","btn_icon_return"} + {"true","All","Button","返回","返回列表页面","goBack()","","","","btn_icon_return"} }; %><%@ include file="/Frame/resources/include/ui/include_info.jspf"%> <%@ include file="/Frame/resources/include/include_end.jspf"%> \ No newline at end of file diff --git a/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/InsureAttachmentUpload.jsp b/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/InsureAttachmentUpload.jsp new file mode 100644 index 000000000..9241b0ffc --- /dev/null +++ b/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/InsureAttachmentUpload.jsp @@ -0,0 +1,103 @@ +<%@ page contentType="text/html; charset=GBK"%> +<%@ include file="/Frame/resources/include/include_begin_info.jspf"%><% + /* + Author: undefined 2018-05-31 + Content: 示例详情页面 + History Log: + */ + String Library_id = CurPage.getParameter("Library_id"); + + //定义变量 + String sObjectNo = "";//--对象编号 + //获得组件参数 + String flowNo=CurPage.getParameter("FlowNo"); + + String sPrevUrl = CurPage.getParameter("PrevUrl"); + //if(sPrevUrl == null) sPrevUrl = "/Tenwa/Lease/FamilyVisit/fieldSurvey/FieldSurveyList.jsp"; + + String sTempletNo = "InsureAttachmentUpload";//--模板号-- + ASObjectModel doTemp = new ASObjectModel(sTempletNo); + ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request); + dwTemp.Style = "2";//freeform + //dwTemp.ReadOnly = "-2";//只读模式 + dwTemp.genHTMLObjectWindow(Library_id); + String sButtons[][] = { + {"true","","Button","保存","保存所有修改","importRecord()","","","",""}, + {"true","All","Button","取消","返回列表","pull()","","","","btn_icon_close"} + }; + /* sButtonPosition = "south"; */ +%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%> + +<%@ include file="/Frame/resources/include/include_end.jspf"%> \ No newline at end of file diff --git a/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/LBInsuranceInfoList.jsp b/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/LBInsuranceInfoList.jsp new file mode 100644 index 000000000..a8884f948 --- /dev/null +++ b/WebContent/Tenwa/Lease/App/BussinessOperation/InsuranceInfo/LBInsuranceInfoList.jsp @@ -0,0 +1,129 @@ +<%@ page contentType="text/html; charset=GBK"%> +<%@ include file="/Frame/resources/include/include_begin_list.jspf"%><% + /* + Author: undefined 2018-06-03 + Content: + History Log: + */ + String contract_number = CurPage.getParameter("contract_number"); + ASObjectModel doTemp = new ASObjectModel("LBInsuranceInfoTwoList"); + if (""!=contract_number || null==contract_number){ + doTemp.appendJboWhere("lci.CONTRACT_NUMBER='"+contract_number+"'"); + } + + ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request); + dwTemp.Style="1"; //--设置为Grid风格-- + dwTemp.ReadOnly = "1"; //只读模式 + dwTemp.setPageSize(10); + dwTemp.genHTMLObjectWindow(""); + + //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",""}, + {"true","","Button","返回","返回","returnList()","","","","btn_icon_return",""}, + }; +%><%@include file="/Frame/resources/include/ui/include_list.jspf"%> + +<%@ include file="/Frame/resources/include/include_end.jspf"%> \ No newline at end of file