enhancement #I5ULVA 修正不规范的问题,chain的name和id混用,不太严谨
This commit is contained in:
parent
6fed03f225
commit
196c172048
|
@ -89,7 +89,7 @@ public class SwitchCondition extends Condition{
|
|||
}
|
||||
|
||||
public void addTargetItem(Executable executable){
|
||||
this.targetMap.put(executable.getExecuteName(), executable);
|
||||
this.targetMap.put(executable.getExecuteId(), executable);
|
||||
}
|
||||
|
||||
public void setSwitchNode(Node switchNode) {
|
||||
|
|
|
@ -77,7 +77,7 @@ public class GroovyScriptExecutor implements ScriptExecutor {
|
|||
metaMap.put("requestData", slot.getRequestData());
|
||||
|
||||
//如果有隐式流程,则放入隐式流程的流程参数
|
||||
Object subRequestData = slot.getChainReqData(wrap.getCurrChainName());
|
||||
Object subRequestData = slot.getChainReqData(wrap.getCurrChainId());
|
||||
if (ObjectUtil.isNotNull(subRequestData)){
|
||||
metaMap.put("subRequestData", subRequestData);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue