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; }