From eea9d06db15fadba64707ea7d3dfda752167fb82 Mon Sep 17 00:00:00 2001 From: yjz <3131811435@qq.com> Date: Mon, 19 Aug 2024 09:38:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(88825):=20=E6=A0=87=E5=87=86=E8=A7=A3?= =?UTF-8?q?=E8=AF=BB=E6=B5=81=E7=A8=8B--=E5=AF=BC=E5=87=BA--=E8=AF=91?= =?UTF-8?q?=E6=96=87=E4=B8=BA=E7=A9=BA=E5=AF=BC=E5=87=BA=E4=BA=86null?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/StandardInterpretFlowServiceImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java index c53169ce..c8127ea4 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java @@ -809,6 +809,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe .collect(Collectors.joining("\n\r")); processStandardInterpretClause.setItemContent(itemContents); String translation = sarFileSplitItemsValEOS.stream() + .filter(v -> StringUtils.isNotBlank(v.getTranslation())) .map(SarFileSplitItemsValEO::getTranslation) .collect(Collectors.joining("\n\r")); processStandardInterpretClause.setTranslation(translation); @@ -953,6 +954,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe .collect(Collectors.joining("\n\r")); processStandardInterpretClauseSublist.setItemContent(itemContents); String translation = sarFileSplitItemsValEOS.stream() + .filter(v -> StringUtils.isNotBlank(v.getTranslation())) .map(SarFileSplitItemsValEO::getTranslation) .collect(Collectors.joining("\n\r")); processStandardInterpretClauseSublist.setTranslation(translation); @@ -985,6 +987,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe .collect(Collectors.joining("\n\r")); processStandardInterpretClause.setItemContent(itemContents); String translation = sarFileSplitItemsValEOS.stream() + .filter(v -> StringUtils.isNotBlank(v.getTranslation())) .map(SarFileSplitItemsValEO::getTranslation) .collect(Collectors.joining("\n\r")); processStandardInterpretClause.setTranslation(translation);