mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
update 优化SpEL表达式回显名称
This commit is contained in:
@ -98,8 +98,9 @@ public class FlwTaskAssigneeServiceImpl implements IFlwTaskAssigneeService, Hand
|
|||||||
parsedMap.put(storageId, parsed);
|
parsedMap.put(storageId, parsed);
|
||||||
if (parsed != null) {
|
if (parsed != null) {
|
||||||
typeIdMap.computeIfAbsent(parsed.getKey(), k -> new ArrayList<>()).add(parsed.getValue());
|
typeIdMap.computeIfAbsent(parsed.getKey(), k -> new ArrayList<>()).add(parsed.getValue());
|
||||||
} else if (StringUtils.startsWith(storageId, "#")) {
|
} else if (StringUtils.startsWith(storageId, "$") || StringUtils.startsWith(storageId, "#")) {
|
||||||
// #前缀表示SpEL办理人变量策略
|
// $前缀表示默认办理人变量策略
|
||||||
|
// #前缀表示spel办理人变量策略
|
||||||
spelList.add(storageId);
|
spelList.add(storageId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user