|
@@ -6,6 +6,7 @@ import cn.hutool.core.lang.Assert;
|
|
|
import cn.hutool.core.util.*;
|
|
|
import cn.hutool.extra.spring.SpringUtil;
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
|
|
+import cn.iocoder.yudao.framework.common.util.collection.MapUtils;
|
|
|
import cn.iocoder.yudao.framework.common.util.date.DateUtils;
|
|
|
import cn.iocoder.yudao.framework.common.util.number.NumberUtils;
|
|
|
import cn.iocoder.yudao.framework.common.util.object.ObjectUtils;
|
|
@@ -599,8 +600,8 @@ public class BpmTaskServiceImpl implements BpmTaskService {
|
|
|
*/
|
|
|
private Map<String, Object> validateAndSetNextAssignees(String taskDefinitionKey, Map<String, Object> variables, BpmnModel bpmnModel,
|
|
|
Map<String, List<Long>> nextAssignees, ProcessInstance processInstance) {
|
|
|
- // Simple设计器第一个节点默认为发起人节点,不校验是否存在审批人
|
|
|
- if (taskDefinitionKey.equals(START_USER_NODE_ID)) {
|
|
|
+ // simple 设计器第一个节点默认为发起人节点,不校验是否存在审批人
|
|
|
+ if (Objects.equals(taskDefinitionKey, START_USER_NODE_ID)) {
|
|
|
return variables;
|
|
|
}
|
|
|
// 1. 获取下一个将要执行的节点集合
|
|
@@ -608,15 +609,13 @@ public class BpmTaskServiceImpl implements BpmTaskService {
|
|
|
List<FlowNode> nextFlowNodes = getNextFlowNodes(flowElement, bpmnModel, variables);
|
|
|
|
|
|
// 2. 校验选择的下一个节点的审批人,是否合法
|
|
|
- Map<String, List<Long>> processVariables;
|
|
|
for (FlowNode nextFlowNode : nextFlowNodes) {
|
|
|
Integer candidateStrategy = parseCandidateStrategy(nextFlowNode);
|
|
|
// 2.1 情况一:如果节点中的审批人策略为 发起人自选
|
|
|
if (ObjUtil.equals(candidateStrategy, BpmTaskCandidateStrategyEnum.START_USER_SELECT.getStrategy())) {
|
|
|
- // 先从历史中获取审批人,在发起人会把所有的审批人保存到历史中,这里从历史中获取
|
|
|
- processVariables = FlowableUtils.getStartUserSelectAssignees(processInstance.getProcessVariables());
|
|
|
// 特殊:如果当前节点已经存在审批人,则不允许覆盖
|
|
|
- if (processVariables != null && CollUtil.isNotEmpty(processVariables.get(nextFlowNode.getId()))) {
|
|
|
+ Map<String, List<Long>> startUserSelectAssignees = FlowableUtils.getStartUserSelectAssignees(processInstance.getProcessVariables());
|
|
|
+ if (startUserSelectAssignees != null && CollUtil.isNotEmpty(startUserSelectAssignees.get(nextFlowNode.getId()))) {
|
|
|
continue;
|
|
|
}
|
|
|
// 如果节点存在,但未配置审批人
|
|
@@ -624,28 +623,31 @@ public class BpmTaskServiceImpl implements BpmTaskService {
|
|
|
if (CollUtil.isEmpty(assignees)) {
|
|
|
throw exception(PROCESS_INSTANCE_START_USER_SELECT_ASSIGNEES_NOT_CONFIG, nextFlowNode.getName());
|
|
|
}
|
|
|
+
|
|
|
// 设置 PROCESS_INSTANCE_VARIABLE_START_USER_SELECT_ASSIGNEES
|
|
|
- if (processVariables == null) {
|
|
|
- processVariables = new HashMap<>();
|
|
|
+ if (startUserSelectAssignees == null) {
|
|
|
+ startUserSelectAssignees = new HashMap<>();
|
|
|
}
|
|
|
- processVariables.put(nextFlowNode.getId(), assignees);
|
|
|
- variables.put(BpmnVariableConstants.PROCESS_INSTANCE_VARIABLE_START_USER_SELECT_ASSIGNEES, processVariables);
|
|
|
+ startUserSelectAssignees.put(nextFlowNode.getId(), assignees);
|
|
|
+ variables.put(BpmnVariableConstants.PROCESS_INSTANCE_VARIABLE_START_USER_SELECT_ASSIGNEES, startUserSelectAssignees);
|
|
|
+ continue;
|
|
|
}
|
|
|
+
|
|
|
// 2.2 情况二:如果节点中的审批人策略为 审批人,在审批时选择下一个节点的审批人,并且该节点的审批人为空
|
|
|
if (ObjUtil.equals(candidateStrategy, BpmTaskCandidateStrategyEnum.APPROVE_USER_SELECT.getStrategy())) {
|
|
|
- // 获取审批人自选的历史变量
|
|
|
- processVariables = FlowableUtils.getApproveUserSelectAssignees(processInstance.getProcessVariables());
|
|
|
// 如果节点存在,但未配置审批人
|
|
|
+ Map<String, List<Long>> approveUserSelectAssignees = FlowableUtils.getApproveUserSelectAssignees(processInstance.getProcessVariables());
|
|
|
List<Long> assignees = nextAssignees != null ? nextAssignees.get(nextFlowNode.getId()) : null;
|
|
|
if (CollUtil.isEmpty(assignees)) {
|
|
|
throw exception(PROCESS_INSTANCE_APPROVE_USER_SELECT_ASSIGNEES_NOT_CONFIG, nextFlowNode.getName());
|
|
|
}
|
|
|
- if (processVariables == null) {
|
|
|
- processVariables = new HashMap<>();
|
|
|
- }
|
|
|
+
|
|
|
// 设置 PROCESS_INSTANCE_VARIABLE_APPROVE_USER_SELECT_ASSIGNEES
|
|
|
- processVariables.put(nextFlowNode.getId(), assignees);
|
|
|
- variables.put(BpmnVariableConstants.PROCESS_INSTANCE_VARIABLE_APPROVE_USER_SELECT_ASSIGNEES, processVariables);
|
|
|
+ if (approveUserSelectAssignees == null) {
|
|
|
+ approveUserSelectAssignees = new HashMap<>();
|
|
|
+ }
|
|
|
+ approveUserSelectAssignees.put(nextFlowNode.getId(), assignees);
|
|
|
+ variables.put(BpmnVariableConstants.PROCESS_INSTANCE_VARIABLE_APPROVE_USER_SELECT_ASSIGNEES, approveUserSelectAssignees);
|
|
|
}
|
|
|
}
|
|
|
return variables;
|