【DAOP-1.0】数据需求
【功能点】测试问题处理
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -184,7 +184,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService | ... | @@ -184,7 +184,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService |
184 | MfDemand entity = convertToEntity(rqVO); | 184 | MfDemand entity = convertToEntity(rqVO); |
185 | // 发起审批流程或保存草稿 | 185 | // 发起审批流程或保存草稿 |
186 | AddApprovalDTO approvalDTO = getAddApprovalDTO(entity); | 186 | AddApprovalDTO approvalDTO = getAddApprovalDTO(entity); |
187 | super.startOrRestartWorkFlow(rqVO, rqVO.getBizApproveState(), approvalDTO, entity::setBizApproveState); | 187 | super.restartWorkFlow(rqVO, rqVO.getBizApproveState(), approvalDTO, null, entity::setBizApproveState); |
188 | if (rqVO.getIsRestart()) { | 188 | if (rqVO.getIsRestart()) { |
189 | // 重新提交 | 189 | // 重新提交 |
190 | againSubmitFlow(entity, rqVO, approvalDTO); | 190 | againSubmitFlow(entity, rqVO, approvalDTO); |
... | @@ -374,7 +374,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService | ... | @@ -374,7 +374,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService |
374 | // 流程消息中的变量替换参数 | 374 | // 流程消息中的变量替换参数 |
375 | approvalDTO.setFlowMessageBody(null); | 375 | approvalDTO.setFlowMessageBody(null); |
376 | // 流程列表数据核心param参数处理 | 376 | // 流程列表数据核心param参数处理 |
377 | approvalDTO.setParam1(null); | 377 | approvalDTO.setParam1(entity.getDataDemandName()); |
378 | approvalDTO.setParam2(null); | 378 | approvalDTO.setParam2(null); |
379 | approvalDTO.setParam3(null); | 379 | approvalDTO.setParam3(null); |
380 | approvalDTO.setParam4(null); | 380 | approvalDTO.setParam4(null); | ... | ... |
-
Please register or sign in to post a comment