9a0195d7 by 肖初晴

【DAOP-1.0】企业认证

【功能点】测试问题处理
1 parent 88194304
...@@ -234,6 +234,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService ...@@ -234,6 +234,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
234 private void againSubmitFlow(MfDemand entity, DemandRQVO rqVO, AddApprovalDTO approvalDTO) { 234 private void againSubmitFlow(MfDemand entity, DemandRQVO rqVO, AddApprovalDTO approvalDTO) {
235 entity.setGuid(CommonUtil.newGuid()); 235 entity.setGuid(CommonUtil.newGuid());
236 mfDemandService.csbrBaseEntity(entity); 236 mfDemandService.csbrBaseEntity(entity);
237 entity.setBizApproveState("A");
237 // 保存新数据 238 // 保存新数据
238 boolean flag = mfDemandService.save(entity); 239 boolean flag = mfDemandService.save(entity);
239 if (!flag) { 240 if (!flag) {
......
...@@ -256,6 +256,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris ...@@ -256,6 +256,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris
256 private void againSubmitFlow(MfEnterprise entity, EnterpriseRQVO rqVO, AddApprovalDTO approvalDTO) { 256 private void againSubmitFlow(MfEnterprise entity, EnterpriseRQVO rqVO, AddApprovalDTO approvalDTO) {
257 entity.setGuid(CommonUtil.newGuid()); 257 entity.setGuid(CommonUtil.newGuid());
258 mfEnterpriseService.csbrBaseEntity(entity); 258 mfEnterpriseService.csbrBaseEntity(entity);
259 entity.setBizApproveState("A");
259 // 保存新数据 260 // 保存新数据
260 boolean flag = mfEnterpriseService.save(entity); 261 boolean flag = mfEnterpriseService.save(entity);
261 if (!flag) { 262 if (!flag) {
......
...@@ -204,6 +204,7 @@ public class ServicerMaintainServiceImpl extends FlowAbstractImpl implements Ser ...@@ -204,6 +204,7 @@ public class ServicerMaintainServiceImpl extends FlowAbstractImpl implements Ser
204 private void againSubmitFlow(MfServicerMaintain entity, ServicerMaintainRQVO rqVO, AddApprovalDTO approvalDTO) { 204 private void againSubmitFlow(MfServicerMaintain entity, ServicerMaintainRQVO rqVO, AddApprovalDTO approvalDTO) {
205 entity.setGuid(CommonUtil.newGuid()); 205 entity.setGuid(CommonUtil.newGuid());
206 mfServicerMaintainService.csbrBaseEntity(entity); 206 mfServicerMaintainService.csbrBaseEntity(entity);
207 entity.setBizApproveState("A");
207 // 保存新数据 208 // 保存新数据
208 boolean flag = mfServicerMaintainService.save(entity); 209 boolean flag = mfServicerMaintainService.save(entity);
209 if (!flag) { 210 if (!flag) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!