Commit ed778b31 by 王志超

feat: 工单提交,审核人字段填充

parent 4cbe5f7a
Pipeline #86521 passed with stages
in 1 minute 30 seconds
......@@ -436,7 +436,7 @@ public class ChangeFlowBiz {
}
// 更新节点id,使用返回的节点ID
changeRecord.setFlowNode(nextNodeId);
changeRecord.setState(ChangeStatusEnum.WAIT_SUBMIT_CHANGE_APPLY.getStatus());
changeRecord.setState(ChangeStatusEnum.WAIT_CONFIRM_CHANGE_PLAN.getStatus());
changeRecord.setUpdateTime(DateUtils.getCurrentTime());
changeFlowService.updateRecord(changeRecord);
}
......
......@@ -590,6 +590,7 @@ public class ChangeSubFlowBiz {
* @return 变更工单详情
*/
public ChangeFlowVO detailBySubFlowId(String subFlowId) {
log.info("[detailBySubFlowId] 查询变更行动工单详情,subFlowId:{}", subFlowId);
if (StringUtils.isBlank(subFlowId)) {
throw ExceptionFactory.createBiz(ResponseCode.ERROR_FLOW_ID, "变更行动工单ID不能为空");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment