CONDITION节点类型

This commit is contained in:
lvshaohua 2023-07-05 16:02:01 +08:00
parent 66042357eb
commit 8984e6249e

View File

@ -90,7 +90,7 @@ public class BpmTransformUtil {
if(StringUtils.isNotBlank(parentId)){
BpmJsonNode parentNode = childNodeMap.get(parentId);
if(parentNode!=null){
if(BpmFlowNodeType.NODE_ROUTER.getType().equals(parentNode.getType()) ){
if(BpmFlowNodeType.NODE_CONDITION.getType().equals(parentNode.getType()) ){
sequenceFlowId=parentNode.getId();
flow.setName(parentNode.getName());
if(!ObjectUtils.isEmpty(parentNode.getProperty()) && !Boolean.TRUE.equals(parentNode.getProperty().getDefaultCondition())){