From 65b87c87112f025e74fbf568be6579ffed82f687 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Thu, 8 Aug 2024 14:07:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=2088187=20=E5=A4=96=E6=9D=A5=E6=A0=87?= =?UTF-8?q?=E5=87=86=E6=B3=95=E8=A7=84=E6=96=87=E6=9C=AC=E5=BA=93--?= =?UTF-8?q?=E4=BB=A3=E6=9B=BF=E6=A0=87=E5=87=86=E7=9A=84=E8=A2=AB=E4=BB=A3?= =?UTF-8?q?=E6=9B=BF=E6=A0=87=E5=87=86=E7=BC=96=E5=8F=B7=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E4=BA=86=E6=A0=87=E5=87=86=E6=9C=AC=E8=BA=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/laws/common/service/impl/LawsCommonServiceImpl.java | 2 +- .../standard/service/impl/LawsReplacedStandardServiceImpl.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java index 9c64164f..52cda0f1 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java @@ -1348,7 +1348,7 @@ public class LawsCommonServiceImpl implements ILawsCommonService { Map stringObjectMap = processResultMap(initMap, fieldList); if (module.equals(TableNameEnum.ENTERPRISE_STANDARDS.getValue())) { - // 企标独有的稽查内容列表 + // 企标独有的监察内容列表 LambdaQueryWrapper esIcWrapper = new LambdaQueryWrapper<>(); esIcWrapper.eq(EnterpriseStandardInspectContent::getStandardId, id); List list = esInspectContentService.list(esIcWrapper); diff --git a/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java index 2c85de32..5b503672 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java @@ -131,6 +131,7 @@ public class LawsReplacedStandardServiceImpl extends ServiceImpl replacedByList = replacedStandardList.stream() + .filter(e -> e.getReplaced().equals(e.getReplaced().split("《")[0])) .map(LawsReplacedStandard::getReplacedBy).collect(Collectors.toList()); return StringUtils.join(replacedByList, ","); }