From 335caf58211da8d65863c00610b04543b80a8090 Mon Sep 17 00:00:00 2001 From: wangzhijiang Date: Fri, 24 Mar 2023 13:47:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=BA=93=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E6=A8=A1=E6=9D=BF=E4=BF=AE=E6=94=B9=2066859?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/BussDocumentLibraryEOServiceImpl.java | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 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 527036bb8..d2d20693e 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 @@ -795,12 +795,12 @@ public class BussDocumentLibraryEOServiceImpl extends ServiceImpl fieldListTemp = fieldList.stream().filter(e -> onlCgformAreaTemp.getId().equals(e.getShowArea())).collect(Collectors.toList()); - OnlCgformField phasedOnlCgformField = new OnlCgformField(); + /*OnlCgformField phasedOnlCgformField = new OnlCgformField(); phasedOnlCgformField.setId(UUID.randomUUID().toString().replace("-", "")); phasedOnlCgformField.setDbFieldTxt("分阶段实施详情"); phasedOnlCgformField.setDbFieldEnName("Details of the phased implementation"); phasedOnlCgformField.setDbFieldName("phasedImplDetails"); - fieldListTemp.add(phasedOnlCgformField); + fieldListTemp.add(phasedOnlCgformField);*/ for (OnlCgformField onlCgformField : fieldListTemp) { String dictId = onlCgformField.getDictId(); List sysCategoryTreeVOList = new ArrayList<>(); @@ -814,6 +814,15 @@ public class BussDocumentLibraryEOServiceImpl extends ServiceImpl fjdssMap = new HashMap<>(); + fjdssMap.put("area","文本信息"); + if(StringUtils.equals(cut,CutEnum.CN.getValue())){ + fjdssMap.put("db_field_txt","分阶段实施详情"); + }else { + fjdssMap.put("db_field_txt","Details of the phased implementation"); + } + fjdssMap.put("db_field_name","phasedImplDetails"); + result.add(fjdssMap); return result; }