fix(88474):汇总节点提示语调整
This commit is contained in:
+4
-1
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user