Commit 30336623 authored by chenhao's avatar chenhao

检查计划阻断bug

parent c14677ed
...@@ -292,7 +292,7 @@ public class PlanServiceImpl implements IPlanService { ...@@ -292,7 +292,7 @@ public class PlanServiceImpl implements IPlanService {
List<Map<String, String>> enumList = WorkFlowBranchEnum.getEnumList(); List<Map<String, String>> enumList = WorkFlowBranchEnum.getEnumList();
if (!ObjectUtils.isEmpty(enumList)){ if (!ObjectUtils.isEmpty(enumList)){
List<Map<String, String>> list = enumList.stream().filter(map -> List<Map<String, String>> list = enumList.stream().filter(map ->
(dangerCheckTypeLevel.contains(map.get("dangerCheckTypeLevel")) && map.get("checkType").contains(checkType) (map.get("dangerCheckTypeLevel").contains(dangerCheckTypeLevel) && map.get("checkType").contains(checkType)
)).collect(Collectors.toList()); )).collect(Collectors.toList());
if (!ObjectUtils.isEmpty(list)) { if (!ObjectUtils.isEmpty(list)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment