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; }