Merge remote-tracking branch 'origin/develop' into develop
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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -96,10 +96,16 @@ public class ResponUserSignAfter implements TaskListener {
|
|||||||
count++;
|
count++;
|
||||||
delegateTask.setVariable("task2OKCount",count);
|
delegateTask.setVariable("task2OKCount",count);
|
||||||
}
|
}
|
||||||
if(count>=delegateTask.getVariable("responUserLists",List.class).size()){
|
if(count>=responUserList.size()){
|
||||||
if(delegateTask.getVariable("actionFlag",Integer.class)==0){
|
if(delegateTask.getVariable("actionFlag",Integer.class)==0){
|
||||||
if(nextUserList != null && !nextUserList.isEmpty()){
|
if(nextUserList != null && !nextUserList.isEmpty()){
|
||||||
for(String nextUser : nextUserList){
|
List<String> res=new ArrayList<>();
|
||||||
|
nextUserList.forEach(s -> {
|
||||||
|
if (!res.contains(s)){
|
||||||
|
res.add(s);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
for(String nextUser : res){
|
||||||
BusProcessNew busProcessNewNext = new BusProcessNew();
|
BusProcessNew busProcessNewNext = new BusProcessNew();
|
||||||
busProcessNewNext.setMsgType("clause");
|
busProcessNewNext.setMsgType("clause");
|
||||||
busProcessNewNext.setPId(delegateTask.getProcessInstanceId());
|
busProcessNewNext.setPId(delegateTask.getProcessInstanceId());
|
||||||
|
|||||||
Reference in New Issue
Block a user