Sfoglia il codice sorgente

修复决策流节点事件不执行的BUG

jacky6024 8 anni fa
parent
commit
cb888d9b90

+ 1 - 0
urule-core/src/main/java/com/bstek/urule/parse/flow/RuleNodeParser.java

@@ -33,6 +33,7 @@ public class RuleNodeParser extends FlowNodeParser<RuleNode> {
 		node.setY(element.attributeValue("y"));
 		node.setWidth(element.attributeValue("width"));
 		node.setHeight(element.attributeValue("height"));
+		node.setEventBean(element.attributeValue("event-bean"));
 		node.setConnections(parseConnections(element));
 		return node;
 	}