From b5de1b87198b649c384b2f6bf78787909cb0867f Mon Sep 17 00:00:00 2001 From: user Date: Mon, 11 Jun 2018 21:20:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FlowManager/FlowPage/FlowPageViewTab.jsp | 5 ++-- .../Comm/LBEquipment_Car/LBEquipmentList.jsp | 12 ++++++++- .../ProjectApprovalCreationInfo.jsp | 13 +++++---- .../BusinessApprovalStartAction.java | 27 ++++++++++++------- 4 files changed, 38 insertions(+), 19 deletions(-) diff --git a/WebContent/Tenwa/Core/FlowManager/FlowPage/FlowPageViewTab.jsp b/WebContent/Tenwa/Core/FlowManager/FlowPage/FlowPageViewTab.jsp index d39025137..a5ea16301 100644 --- a/WebContent/Tenwa/Core/FlowManager/FlowPage/FlowPageViewTab.jsp +++ b/WebContent/Tenwa/Core/FlowManager/FlowPage/FlowPageViewTab.jsp @@ -142,8 +142,9 @@ $(function(){ paramJson["CustomerNature"]="<%=startMap.get("CustomerNature")%>"; paramJson["CUSTOMERID"]="<%=startMap.get("CUSTOMERID")%>"; paramJson["ContractId"]="<%=startMap.get("ContractId")%>"; - paramJson["CarAttributes"]="<%=startMap.get("CarAttributes")%>"; - paramJson["Leasehold"]="<%=startMap.get("Leasehold")%>"; + paramJson["carAttributes"]="<%=startMap.get("carAttributes")%>"; + paramJson["leasehold"]="<%=startMap.get("leasehold")%>"; + paramJson["modelid"]="<%=startMap.get("modelid")%>"; //paramJson["CurFlowUser"]="<%=FlowFixedParam.get("CurFlowUser")%>"; //paramJson["AgentFlowUser"]="<%=FlowFixedParam.get("AgentFlowUser")%>"; diff --git a/WebContent/Tenwa/Lease/Flow/Comm/LBEquipment_Car/LBEquipmentList.jsp b/WebContent/Tenwa/Lease/Flow/Comm/LBEquipment_Car/LBEquipmentList.jsp index c1c4fe1a7..010b437fe 100644 --- a/WebContent/Tenwa/Lease/Flow/Comm/LBEquipment_Car/LBEquipmentList.jsp +++ b/WebContent/Tenwa/Lease/Flow/Comm/LBEquipment_Car/LBEquipmentList.jsp @@ -43,7 +43,12 @@ String taskno=CurPage.getParameter("TaskNo"); String ishistory=CurPage.getParameter("IsHistory"); String nodeNo=CurPage.getParameter("NodeNo"); -// alert(CarAttributes,Leasehold); + + String carAttributes=CurPage.getParameter("carAttributes"); + String leasehold=CurPage.getParameter("leasehold"); + String carSystem=CurPage.getParameter("carSystem"); + System.out.print("+++++++++++++++++++++++++"+carSystem+"------------------"); + %> <%/*~END~*/%> @@ -112,6 +117,11 @@ if((null!=RightType&&RightType.equals("ReadOnly"))||(null!=ishistory&&ishistory. <%/*~END~*/%> diff --git a/src_tenwa/com/tenwa/lease/flow/project/projectapproval/BusinessApprovalStartAction.java b/src_tenwa/com/tenwa/lease/flow/project/projectapproval/BusinessApprovalStartAction.java index 822034d3d..bb1495e62 100644 --- a/src_tenwa/com/tenwa/lease/flow/project/projectapproval/BusinessApprovalStartAction.java +++ b/src_tenwa/com/tenwa/lease/flow/project/projectapproval/BusinessApprovalStartAction.java @@ -33,8 +33,9 @@ public class BusinessApprovalStartAction extends BaseFlowStartAction{ private String productID; private String CustomerType; - private String CarAttributes; - private String Leasehold; + private String carAttributes; + private String leasehold; + private String carSystem; public String getProductID() { return productID; @@ -54,26 +55,33 @@ public String getProductID() { CustomerType = customerType; } - public String getCarAttributes() { - return CarAttributes; + return carAttributes; } public void setCarAttributes(String carAttributes) { - CarAttributes = carAttributes; + this.carAttributes = carAttributes; } public String getLeasehold() { - return Leasehold; + return leasehold; } public void setLeasehold(String leasehold) { - Leasehold = leasehold; + this.leasehold = leasehold; } + public String getCarSystem() { + return carSystem; + } + + + public void setCarSystem(String carSystem) { + this.carSystem = carSystem; + } @Override public void customOperation(JBOTransaction tx,BizObject flowBussiness) throws Exception { @@ -84,7 +92,8 @@ public String getProductID() { this.FlowParam.put("FlowKey", projectNO); this.FlowParam.put("ProjectName", projectNO); this.FlowParam.put("CustomerType", this.getCustomerType()); - this.FlowParam.put("CarAttributes", getCarAttributes()); - this.FlowParam.put("Leasehold", this.getLeasehold()); + this.FlowParam.put("carAttributes", this.getCarAttributes()); + this.FlowParam.put("leasehold", this.getLeasehold()); + this.FlowParam.put("carSystem", this.getCarSystem()); } }