From 0ab95ef02f8b24d75fac19de72006488ee9b6c66 Mon Sep 17 00:00:00 2001 From: user Date: Fri, 29 Jun 2018 17:15:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E7=94=B3=E8=AF=B7=E5=B8=A6?= =?UTF-8?q?=E5=87=BA=E4=BA=A7=E5=93=81=E5=90=8D=E7=A7=B0=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E6=95=B0=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LBProjectIntoTempInitCarBusiness.java | 3 ++- .../projectapproval/BusinessApprovalStartAction.java | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src_tenwa/com/tenwa/lease/flow/project/commbusiness/LBProjectIntoTempInitCarBusiness.java b/src_tenwa/com/tenwa/lease/flow/project/commbusiness/LBProjectIntoTempInitCarBusiness.java index 446c9dd98..c80d83d73 100644 --- a/src_tenwa/com/tenwa/lease/flow/project/commbusiness/LBProjectIntoTempInitCarBusiness.java +++ b/src_tenwa/com/tenwa/lease/flow/project/commbusiness/LBProjectIntoTempInitCarBusiness.java @@ -105,7 +105,8 @@ public class LBProjectIntoTempInitCarBusiness extends BaseBussiness { bo.setAttributeValue("BUSINESSTYPE", this.getAttribute("businessType")); bo.setAttributeValue("LEAS_FORM", this.getAttribute("leasehold"));//租赁方式 bo.setAttributeValue("PRODUCT_ID",this.getAttribute("ProductId"));//业务品种编号 - bo.setAttributeValue("PRODUCT_NAME",this.getAttribute("carAttributes"));//业务品种名称 + bo.setAttributeValue("PRODUCT_NAME",this.getAttribute("ProductName"));//业务品种名称 + bo.setAttributeValue("CAR_TYPE",this.getAttribute("carAttributes")); bo.setAttributeValue("PROJECT_STATUS","0"); bo.setAttributeValue("Is_Flow","inFlow");//在流程中-inFlow,流程结束-outFlow bo.setAttributeValue("InputOrgID", asUser.getOrgID()); 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 716ce85ab..2e8fd07eb 100644 --- a/src_tenwa/com/tenwa/lease/flow/project/projectapproval/BusinessApprovalStartAction.java +++ b/src_tenwa/com/tenwa/lease/flow/project/projectapproval/BusinessApprovalStartAction.java @@ -48,6 +48,7 @@ public class BusinessApprovalStartAction extends BaseFlowStartAction{ private String price; private String liter; private String geartype; + private String ProductName; @Override public void customOperation(JBOTransaction tx,BizObject flowBussiness) throws Exception { @@ -72,9 +73,20 @@ public class BusinessApprovalStartAction extends BaseFlowStartAction{ this.FlowParam.put("price", this.getPrice()); this.FlowParam.put("liter", this.getLiter()); this.FlowParam.put("geartype", this.getGeartype()); + this.FlowParam.put("ProductName", this.getProductName()); } + public String getProductName() { + return ProductName; + } + + + public void setProductName(String productName) { + ProductName = productName; + } + + public String getGeartype() { return geartype; }