会签走错问题处理
This commit is contained in:
@@ -58,9 +58,16 @@ public class Step7After implements TaskListener {
|
|||||||
if (delegateTask.getVariable("hqCount",Integer.class)==delegateTask.getVariable("responUserList",List.class).size()) {
|
if (delegateTask.getVariable("hqCount",Integer.class)==delegateTask.getVariable("responUserList",List.class).size()) {
|
||||||
if (0 == delegateTask.getVariable("hqMark", Integer.class)) {
|
if (0 == delegateTask.getVariable("hqMark", Integer.class)) {
|
||||||
prcName =delegateTask.getVariable("cid")+"-标准征求意见流程-部长+对接人审批";
|
prcName =delegateTask.getVariable("cid")+"-标准征求意见流程-部长+对接人审批";
|
||||||
nextUserList.addAll(delegateTask.getVariable("zrUserIdList",List.class));
|
List<String> strings=delegateTask.getVariable("zrUserIdList",List.class);
|
||||||
|
strings.forEach(s -> {
|
||||||
|
if (!nextUserList.contains(s)){
|
||||||
|
nextUserList.add(s);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
delegateTask.setVariable("hqFlag","0");
|
||||||
} else {
|
} else {
|
||||||
prcName =delegateTask.getVariable("cid")+"-标准征求意见流程-标准法规工程师汇总";
|
prcName =delegateTask.getVariable("cid")+"-标准征求意见流程-标准法规工程师汇总";
|
||||||
|
delegateTask.setVariable("hqFlag","1");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user