Commit add081cc authored by tangwei's avatar tangwei

Merge branch 'develop_ccs' of http://39.98.45.134:8090/moa/amos-boot-biz into develop_ccs

parents 5b15f04a f21ea8c8
......@@ -292,7 +292,7 @@ public class PlanServiceImpl implements IPlanService {
List<Map<String, String>> enumList = WorkFlowBranchEnum.getEnumList();
if (!ObjectUtils.isEmpty(enumList)){
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());
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