From 9676e6f721b8a3489f49705861cf879b37bda845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E5=B5=A9?= Date: Thu, 13 Apr 2023 17:05:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E6=A1=A3=E5=BA=93?= =?UTF-8?q?=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BussDocumentLibraryEOServiceImpl.java | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java index 29c44d722..180b20758 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/document/service/impl/BussDocumentLibraryEOServiceImpl.java @@ -1065,24 +1065,24 @@ public class BussDocumentLibraryEOServiceImpl extends ServiceImpl menuMap = new HashMap<>(); menuMap.put("name",areaName); result.add(menuMap); - List fieldListTemp = fieldList.stream().filter(e -> onlCgformAreaTemp.getId().equals(e.getShowArea())).collect(Collectors.toList()); - for (OnlCgformField onlCgformField : fieldListTemp) { - //字段 - String dbFieldName = onlCgformField.getDbFieldName(); - //字段类型 - String fieldShowType = onlCgformField.getFieldShowType(); - - if (FieldTypeEnum.FILE.getValue().equals(fieldShowType)) { - Map menuMap1 = new HashMap<>(); - menuMap1.put("pname",areaName); - if (CutEnum.CN.getValue().equals(cut)) { - menuMap1.put("name",onlCgformField.getDbFieldTxt()); - } else { - menuMap1.put("name",onlCgformField.getDbFieldEnName()); - } - result.add(menuMap1); - } - } +// List fieldListTemp = fieldList.stream().filter(e -> onlCgformAreaTemp.getId().equals(e.getShowArea())).collect(Collectors.toList()); +// for (OnlCgformField onlCgformField : fieldListTemp) { +// //字段 +// String dbFieldName = onlCgformField.getDbFieldName(); +// //字段类型 +// String fieldShowType = onlCgformField.getFieldShowType(); +// +// if (FieldTypeEnum.FILE.getValue().equals(fieldShowType)) { +// Map menuMap1 = new HashMap<>(); +// menuMap1.put("pname",areaName); +// if (CutEnum.CN.getValue().equals(cut)) { +// menuMap1.put("name",onlCgformField.getDbFieldTxt()); +// } else { +// menuMap1.put("name",onlCgformField.getDbFieldEnName()); +// } +// result.add(menuMap1); +// } +// } } return result; }