|
|
@@ -2809,7 +2809,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
OrganizationIdentity oi =new OrganizationIdentity();
|
|
|
oi.setUid(in.getUid());
|
|
|
if (in.getProvince()!=null ||in.getCity() !=null ||in.getArea()!=null|| in.getBusinessScope()!=null
|
|
|
- ||in.getIntendedProject()!=null||in.getOrgCode()!=null||in.getIndustry()!=null){
|
|
|
+ ||in.getIntendedProject()!=null||in.getOrgCode()!=null||in.getIndustry()!=null||in.getIndustryName()!=null){
|
|
|
if(in.getProvince()!=null)oi.setLocationProvince(in.getProvince());
|
|
|
if(in.getCity()!=null)oi.setLocationCity(in.getCity());
|
|
|
if(in.getArea()!=null)oi.setLocationArea(in.getArea());
|
|
|
@@ -2821,6 +2821,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
oi.setBusinessScope(in.getBusinessScope());
|
|
|
}
|
|
|
if(in.getIntendedProject()!=null)oi.setIntendedProject(in.getIntendedProject());
|
|
|
+ if (in.getIndustryName()!=null)oi.setIndustryName(in.getIndustryName());
|
|
|
organizationIdentityMapper.updateServiceByUid(oi);
|
|
|
}
|
|
|
if (in.getIntroduction()!=null||in.getNature()!=null){
|