84ebe5f8 by xiaojie

【数据资产】

1、认证变更跨平台审批
1 parent 4661116a
...@@ -232,6 +232,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro ...@@ -232,6 +232,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
232 if(!dto.getApprovalState().equals(ApprovalStateEnum.PASSED.getValue())){ 232 if(!dto.getApprovalState().equals(ApprovalStateEnum.PASSED.getValue())){
233 MfEnterprise bean = mfEnterpriseService.getById(entity.getSourceGuid()); 233 MfEnterprise bean = mfEnterpriseService.getById(entity.getSourceGuid());
234 bean.setBizApproveState("Y"); 234 bean.setBizApproveState("Y");
235 bean.setCrossPlatformApproveState("Y");
235 mfEnterpriseService.updateById(bean); 236 mfEnterpriseService.updateById(bean);
236 return; 237 return;
237 } 238 }
...@@ -239,6 +240,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro ...@@ -239,6 +240,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
239 MfEnterprise vo = csbrBeanUtil.convert(entity,MfEnterprise.class); 240 MfEnterprise vo = csbrBeanUtil.convert(entity,MfEnterprise.class);
240 vo.setGuid(entity.getSourceGuid()); 241 vo.setGuid(entity.getSourceGuid());
241 vo.setBizApproveState("Y"); 242 vo.setBizApproveState("Y");
243 vo.setCrossPlatformApproveState("Y");
242 mfEnterpriseService.updateById(vo); 244 mfEnterpriseService.updateById(vo);
243 245
244 //同步更新会员表 246 //同步更新会员表
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!