Merge branch 'refs/heads/1.3.1-SNAPSHOT' into 1.3.2-SNAPSHOT

# Conflicts:
#	workflow-engine-server/src/main/resources/convertorXML.bpmn
This commit is contained in:
wangli 2024-04-15 16:06:53 +08:00
commit ab8212dc2d
3 changed files with 12613 additions and 2395 deletions

View File

@ -438,7 +438,11 @@ public final class BpmnJsonConverterUtil {
tempEndNode.setId(END_EVENT_ID);
} else {
if (Objects.equals(defaultConditionConnectNode.getType(), NODE_EMPTY) && Objects.nonNull(defaultConditionConnectNode.getChildren())) {
tempEndNode.setId(defaultConditionConnectNode.getChildren().getId());
if (StringUtils.hasText(defaultConditionConnectNode.getChildren().getId())) {
tempEndNode.setId(defaultConditionConnectNode.getChildren().getId());
} else {
tempEndNode.setId(END_EVENT_ID);
}
} else {
tempEndNode.setId(defaultConditionConnectNode.getId());
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff