fix(88474):汇总节点提示语调整

This commit is contained in:
yjz
2024-08-13 11:28:28 +08:00
parent 0c77a78396
commit 86e89138df
@@ -1792,7 +1792,10 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
case StandardInterpretCommon.MASTER_INTERPRET_SUMMARY:
List<String> mesList = new ArrayList<>();
for (int i = 0; i < processStandardInterpretClauseSublistList.size(); i++) {
mesList.add(checkLength(processStandardInterpretClauseSublistList.get(i), i));
String mes = checkLength(processStandardInterpretClauseSublistList.get(i), i);
if (StringUtils.isNotBlank(mes)){
mesList.add(mes);
}
}
if (CollectionUtils.isNotEmpty(mesList)){
throw new JeroBootException(String.join("", mesList));