From c8eae9fb9acc2378e16685dc3fe6705d97f9219f Mon Sep 17 00:00:00 2001 From: buaixuexideshitongxue <2936013465@qq.com> Date: Thu, 12 Mar 2026 11:24:22 +0800 Subject: [PATCH] =?UTF-8?q?fix--=E5=90=8D=E7=A7=B0=E6=8D=A2=E8=A1=8C?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../report/impl/ReportBusinessLineSectionServiceImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/biutag/supervision/service/report/impl/ReportBusinessLineSectionServiceImpl.java b/src/main/java/com/biutag/supervision/service/report/impl/ReportBusinessLineSectionServiceImpl.java index 9fa2737..269b7ac 100644 --- a/src/main/java/com/biutag/supervision/service/report/impl/ReportBusinessLineSectionServiceImpl.java +++ b/src/main/java/com/biutag/supervision/service/report/impl/ReportBusinessLineSectionServiceImpl.java @@ -94,7 +94,7 @@ public class ReportBusinessLineSectionServiceImpl implements ReportBusinessLineS int cnt = Math.toIntExact(sorted.get(i).getValue()); businessLineOverviewText.append(i + 1) .append("、") - .append(label) + .append(label.trim()) .append(",") .append(cnt) .append("条,占比") @@ -179,8 +179,8 @@ public class ReportBusinessLineSectionServiceImpl implements ReportBusinessLineS BusinessLineDetailSection section = new BusinessLineDetailSection(); section.setOrderNo(toChineseOrderNo(index++)); // 父级条线名 - section.setBusinessFatherLineName(parentLabel2Level(sourceCode, idMap)); - section.setBusinessLineName(selfLabel(sourceCode, idMap)); + section.setBusinessFatherLineName(parentLabel2Level(sourceCode, idMap).trim()); + section.setBusinessLineName(selfLabel(sourceCode, idMap).trim()); int totalIssued = lineList.size(); section.setTotalIssued(totalIssued);