业务申请,项目信息表、合同信息表、更换入值产品版本ID
This commit is contained in:
parent
37e2d10084
commit
cddae33f56
@ -1,5 +1,7 @@
|
||||
package com.tenwa.lease.flow.project.commbusiness;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import jbo.app.tenwa.customer.CUSTOMER_COMPANY_TEMP;
|
||||
import jbo.app.tenwa.customer.CUSTOMER_INFO;
|
||||
import jbo.app.tenwa.customer.CUSTOMER_PERSON_TEMP;
|
||||
@ -69,7 +71,8 @@ public class LBProjectIntoTempInitCarBusiness extends BaseBussiness {
|
||||
//合同信息表
|
||||
bmLCI.setAttributeValue("FLOWUNID", this.getAttribute("FlowUnid"));//流程ID
|
||||
bmLCI.setAttributeValue("PRODUCT_ID", this.getAttribute("ProductId"));//产品ID
|
||||
bmLCI.setAttributeValue("VERSIONID", this.getAttribute("versionid"));//版本ID
|
||||
String versionID = UUID.randomUUID().toString().replaceAll("-", "");
|
||||
bmLCI.setAttributeValue("VERSIONID", versionID);//版本ID
|
||||
bmLCI.setAttributeValue("INPUTUSERID", asUser.getUserID());//登记人
|
||||
bmLCI.setAttributeValue("INPUTORGID", asUser.getOrgID());//登记部门
|
||||
bmLCI.setAttributeValue("INPUTTIME", StringFunction.getTodayNow());//登记时间,系统当前时间
|
||||
@ -138,7 +141,7 @@ public class LBProjectIntoTempInitCarBusiness extends BaseBussiness {
|
||||
bo.setAttributeValue("project_name",this.getAttribute("ProjectNo")+"-"+this.getAttribute("ProductName"));
|
||||
bo.setAttributeValue("CAR_TYPE",this.getAttribute("carAttributes"));//车辆属性
|
||||
bo.setAttributeValue("LEAS_FORM", this.getAttribute("leasehold"));//租赁方式
|
||||
bo.setAttributeValue("VERSIONID", this.getAttribute("versionid"));//版本ID
|
||||
bo.setAttributeValue("VERSIONID", versionID);//版本ID
|
||||
bo.setAttributeValue("PRODUCT_ID",this.getAttribute("ProductId"));//产品ID
|
||||
bo.setAttributeValue("PRODUCT_NAME",this.getAttribute("ProductName"));//产品名称
|
||||
bo.setAttributeValue("Is_Flow","inFlow");//在流程中-inFlow,流程结束-outFlow
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user