提交 | 用户 | 时间
e7c126 1 package com.iailab.module.bpm.framework.flowable.core.behavior;
H 2
bb2880 3 import cn.hutool.core.collection.CollUtil;
H 4 import com.iailab.framework.common.util.collection.SetUtils;
e7c126 5 import com.iailab.module.bpm.framework.flowable.core.candidate.BpmTaskCandidateInvoker;
H 6 import com.iailab.module.bpm.framework.flowable.core.util.FlowableUtils;
7 import lombok.Setter;
8 import org.flowable.bpmn.model.Activity;
9 import org.flowable.engine.delegate.DelegateExecution;
10 import org.flowable.engine.impl.bpmn.behavior.AbstractBpmnActivityBehavior;
11 import org.flowable.engine.impl.bpmn.behavior.SequentialMultiInstanceBehavior;
12
13 import java.util.LinkedHashSet;
14 import java.util.Set;
15
16 /**
17  * 自定义的【串行】的【多个】流程任务的 assignee 负责人的分配
18  *
19  * 本质上,实现和 {@link BpmParallelMultiInstanceBehavior} 一样,只是继承的类不一样
20  *
21  * @author iailab
22  */
23 @Setter
24 public class BpmSequentialMultiInstanceBehavior extends SequentialMultiInstanceBehavior {
25
26     private BpmTaskCandidateInvoker taskCandidateInvoker;
27
28     public BpmSequentialMultiInstanceBehavior(Activity activity, AbstractBpmnActivityBehavior innerActivityBehavior) {
29         super(activity, innerActivityBehavior);
30     }
31
32     /**
33      * 逻辑和 {@link BpmParallelMultiInstanceBehavior#resolveNrOfInstances(DelegateExecution)} 类似
34      *
35      * 差异的点:是在【第二步】的时候,需要返回 LinkedHashSet 集合!因为它需要有序!
36      */
37     @Override
38     protected int resolveNrOfInstances(DelegateExecution execution) {
39         // 第一步,设置 collectionVariable 和 CollectionVariable
40         // 从  execution.getVariable() 读取所有任务处理人的 key
41         super.collectionExpression = null; // collectionExpression 和 collectionVariable 是互斥的
42         super.collectionVariable = FlowableUtils.formatExecutionCollectionVariable(execution.getCurrentActivityId());
43         // 从 execution.getVariable() 读取当前所有任务处理的人的 key
44         super.collectionElementVariable = FlowableUtils.formatExecutionCollectionElementVariable(execution.getCurrentActivityId());
45
46         // 第二步,获取任务的所有处理人
bb2880 47         @SuppressWarnings("unchecked")
H 48         Set<Long> assigneeUserIds = (Set<Long>) execution.getVariable(super.collectionVariable, Set.class);
49         if (assigneeUserIds == null) {
50             assigneeUserIds = taskCandidateInvoker.calculateUsersByTask(execution);
51             execution.setVariable(super.collectionVariable, assigneeUserIds);
52             if (CollUtil.isEmpty(assigneeUserIds)) {
53                 // 特殊:如果没有处理人的情况下,至少有一个 null 空元素,避免自动通过!
54                 // 这样,保证在 BpmUserTaskActivityBehavior 至少创建出一个 Task 任务
55                 // 用途:1)审批人为空时;2)审批类型为自动通过、自动拒绝时
56                 assigneeUserIds = SetUtils.asSet((Long) null);
57             }
58         }
e7c126 59         return assigneeUserIds.size();
H 60     }
61 }