|
@@ -827,6 +827,9 @@ public class FlowProcessServiceImpl implements FlowProcessService {
|
|
* 创建待办信息
|
|
* 创建待办信息
|
|
*/
|
|
*/
|
|
void createPendingInfo(List<FlowDefinitionNode> jumpNodeList, Long flowId) {
|
|
void createPendingInfo(List<FlowDefinitionNode> jumpNodeList, Long flowId) {
|
|
|
|
+ if (ObjectUtil.isEmpty(jumpNodeList)) {
|
|
|
|
+ throw new ServiceException("未找到有效的下一节点信息!");
|
|
|
|
+ }
|
|
List<FlowExampleCurrent> flowExampleCurrentList = new ArrayList<>();
|
|
List<FlowExampleCurrent> flowExampleCurrentList = new ArrayList<>();
|
|
for (FlowDefinitionNode flowDefinitionNode : jumpNodeList) {
|
|
for (FlowDefinitionNode flowDefinitionNode : jumpNodeList) {
|
|
String jumpHandleUserId = flowDefinitionNode.getJumpHandleUserId();
|
|
String jumpHandleUserId = flowDefinitionNode.getJumpHandleUserId();
|