mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-12-26 07:26:43 +08:00
fix 修复 判断条件写反问题
This commit is contained in:
parent
577bb456a4
commit
b4e1bf2592
@ -77,7 +77,7 @@ public class WorkflowGlobalListener implements GlobalListener {
|
|||||||
String ext = listenerVariable.getNode().getExt();
|
String ext = listenerVariable.getNode().getExt();
|
||||||
if (StringUtils.isNotBlank(ext)) {
|
if (StringUtils.isNotBlank(ext)) {
|
||||||
Map<String, Object> variable = listenerVariable.getVariable();
|
Map<String, Object> variable = listenerVariable.getVariable();
|
||||||
if (CollUtil.isNotEmpty(variable)) {
|
if (CollUtil.isEmpty(variable)) {
|
||||||
variable = new HashMap<>();
|
variable = new HashMap<>();
|
||||||
}
|
}
|
||||||
NodeExtVo nodeExt = nodeExtService.parseNodeExt(ext, variable);
|
NodeExtVo nodeExt = nodeExtService.parseNodeExt(ext, variable);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user