Commit 82744cb0 authored by 雍欢's avatar 雍欢

主审总人数须大于最少审批人数

parent 9276db30
...@@ -1179,6 +1179,10 @@ public class FlowBroker extends BaseApplication implements TaskListener, Executi ...@@ -1179,6 +1179,10 @@ public class FlowBroker extends BaseApplication implements TaskListener, Executi
if (totalChiefHandlers < 2) { if (totalChiefHandlers < 2) {
return false; return false;
} }
if(totalChiefHandlers <= limitHandler) {
// 主审总人数须大于最少审批人数
return false;
}
return Objects.equals(limitHandler, completedChiefHandlerCount); return Objects.equals(limitHandler, completedChiefHandlerCount);
} }
......
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