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