6b1c82b9 by xiaojie

【数据资产】

1、认证变更跨平台审批
1 parent 1330393f
...@@ -81,6 +81,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro ...@@ -81,6 +81,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
81 /** 保存变更数据 */ 81 /** 保存变更数据 */
82 @Override 82 @Override
83 public void changeSave(ChangeApproveVO vo) { 83 public void changeSave(ChangeApproveVO vo) {
84 log.info("======vo, {}", JSON.toJSONString(vo));
84 //对重新发起的原审批源数据进行废弃 85 //对重新发起的原审批源数据进行废弃
85 if(StringUtils.isNotBlank(vo.getSourceApproveGuid())){ 86 if(StringUtils.isNotBlank(vo.getSourceApproveGuid())){
86 LambdaUpdateWrapper<MfEnterpriseChangeApprove> updateWrapper = new LambdaUpdateWrapper<>(); 87 LambdaUpdateWrapper<MfEnterpriseChangeApprove> updateWrapper = new LambdaUpdateWrapper<>();
...@@ -108,6 +109,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro ...@@ -108,6 +109,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
108 entity.setTenantGuid(tenantGuid); 109 entity.setTenantGuid(tenantGuid);
109 mfEnterpriseChangeApproveService.save(entity); 110 mfEnterpriseChangeApproveService.save(entity);
110 111
112 log.info("========entity, {}", entity);
111 MfEnterprise bean = mfEnterpriseService.getById(entity.getSourceGuid()); 113 MfEnterprise bean = mfEnterpriseService.getById(entity.getSourceGuid());
112 bean.setBizApproveState("B"); 114 bean.setBizApproveState("B");
113 mfEnterpriseService.updateById(bean); 115 mfEnterpriseService.updateById(bean);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!