fix 78258 【阻塞】三个标准库的标准详情无法正常查看

This commit is contained in:
liao
2023-11-07 09:45:43 +08:00
parent d23bee3843
commit 594e782232
@@ -989,12 +989,12 @@ public class LawsCommonServiceImpl implements ILawsCommonService {
// 筛选表单显示的字段 // 筛选表单显示的字段
if ("1".equals(type)) { if ("1".equals(type)) {
// 详情显示 // 详情显示
fieldList = fieldList.stream().filter(lawsTag -> YesOrNoEnum.YES.getInteger() fieldList = fieldList.stream().filter(lawsTag -> YesOrNoEnum.YES.getValue()
.equals(lawsTag.getIsShowForm().toString())).collect(Collectors.toList()); .equals(lawsTag.getIsShowForm().toString())).collect(Collectors.toList());
} else { } else {
// 新增编辑显示 // 新增编辑显示
fieldList = fieldList.stream().filter(lawsTag -> YesOrNoEnum.YES.getInteger() fieldList = fieldList.stream().filter(lawsTag -> YesOrNoEnum.YES.getValue()
.equals(lawsTag.getIsShowFormCreate())).collect(Collectors.toList()); .equals(lawsTag.getIsShowFormCreate().toString())).collect(Collectors.toList());
} }
// 获取区域管理 // 获取区域管理