Merge branch 'feature/REQ-7125' into test

This commit is contained in:
wangli 2026-03-19 11:14:08 +08:00
commit 132162315c

View File

@ -781,7 +781,9 @@ public class BpmnProcessTaskServiceImpl implements BpmnProcessTaskService {
flowNodeMode = Objects.equals(userTask.getLoopCharacteristics().getCompletionCondition(), AND_SIGN_EXPRESSION) ? BpmnFlowNodeMode.AND : BpmnFlowNodeMode.OR;
}
vo.setNodeMode(flowNodeMode);
vo.setAssigner(BpmnTaskDelegateAssigner.toObjectCompatible(instanceMap.get(INTERNAL_TASK_RELATION_ASSIGNEE_INFO + vo.getTaskId()).getValue()));
if (!CollectionUtils.sizeIsEmpty(instanceMap)) {
vo.setAssigner(BpmnTaskDelegateAssigner.toObjectCompatible(instanceMap.get(INTERNAL_TASK_RELATION_ASSIGNEE_INFO + vo.getTaskId()).getValue()));
}
}
return vos;
}