更新配偶的居住地址填写保存后,不见了

This commit is contained in:
tangfutang 2018-07-27 14:31:43 +08:00
parent f10128ad11
commit 205f370e94

View File

@ -42,6 +42,7 @@ public class CustomerInfoManage {
private String smincome;
private String shukou;
private String projectId;
private String workunit;
public String getF_I_TYPE() {
return F_I_TYPE;
@ -218,6 +219,13 @@ public class CustomerInfoManage {
public void setFlowunid(String flowunid) {
this.flowunid = flowunid;
}
public String getWorkunit() {
return workunit;
}
public void setWorkunit(String workunit) {
this.workunit = workunit;
}
public String saveCustomerFamilyFormal(JBOTransaction tx){
try{
@ -261,6 +269,7 @@ public class CustomerInfoManage {
bo.setAttributeValue("shukou", shukou);
bo.setAttributeValue("Spouse_", "Y");
bo.setAttributeValue("PROJECT_ID", projectId);
bo.setAttributeValue("workunit", workunit);
}else{
bo = bom.newObject();
bo.setAttributeValue("flowunid", flowunid);
@ -279,6 +288,7 @@ public class CustomerInfoManage {
bo.setAttributeValue("shukou", shukou);
bo.setAttributeValue("Spouse_", "Y");
bo.setAttributeValue("PROJECT_ID", projectId);
bo.setAttributeValue("workunit", workunit);
}
bom.saveObject(bo);
}catch(Exception e){