Commit 47221b88 by 王志超

feat: 行动工单流程流转

parent d467bfc5
...@@ -483,6 +483,8 @@ public class ChangeSubFlowBiz { ...@@ -483,6 +483,8 @@ public class ChangeSubFlowBiz {
// 发送邮件 // 发送邮件
sendSubFlowFinishEmail(subFlowRecord); sendSubFlowFinishEmail(subFlowRecord);
// todo: 检查所有子单是否都已完成,如果是则流转主工单
return endNodeId; return endNodeId;
} }
...@@ -518,6 +520,8 @@ public class ChangeSubFlowBiz { ...@@ -518,6 +520,8 @@ public class ChangeSubFlowBiz {
// 发送邮件 // 发送邮件
sendSubFlowFinishEmail(subFlowRecord); sendSubFlowFinishEmail(subFlowRecord);
// todo: 检查所有子单是否都已完成,如果是则流转主工单
return cancelNodeId; return cancelNodeId;
} }
......
...@@ -120,4 +120,14 @@ public class ChangeFlowSubmitReq { ...@@ -120,4 +120,14 @@ public class ChangeFlowSubmitReq {
* 变更收益金额 * 变更收益金额
*/ */
private String changeProfitAmount; private String changeProfitAmount;
/**
* 审批结果(审批节点使用:true-通过,false-不通过)
*/
private Boolean approved;
/**
* 拒绝原因(审批不通过时必填)
*/
private String rejectReason;
} }
\ No newline at end of file
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