From 28f67180b3a8e43b68be4b7ec812fe44d20514cd Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Mon, 9 Jan 2023 18:50:18 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92=E5=8E=86=E5=8F=B2=E6=8A=A5?= =?UTF-8?q?=E5=91=8A=E6=97=A0=E6=B3=95=E7=BC=96=E8=BE=91=E6=80=BB=E7=BB=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1021649 --user=陈建星 【测试跟踪】测试跟踪-报告-查看报告-报告总结-编辑-无法保存 https://www.tapd.cn/55049933/s/1324587 --- .../io/metersphere/plan/service/TestPlanReportService.java | 2 ++ .../view/comonents/report/detail/TestPlanSummaryReport.vue | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/test-track/backend/src/main/java/io/metersphere/plan/service/TestPlanReportService.java b/test-track/backend/src/main/java/io/metersphere/plan/service/TestPlanReportService.java index 6b96eb5b70..2cedb4fab7 100644 --- a/test-track/backend/src/main/java/io/metersphere/plan/service/TestPlanReportService.java +++ b/test-track/backend/src/main/java/io/metersphere/plan/service/TestPlanReportService.java @@ -750,7 +750,9 @@ public class TestPlanReportService { if (testPlanReportContentWithBLOBs.getEndTime() != null) { reportDTO.setEndTime(testPlanReportContentWithBLOBs.getEndTime()); } + String summary = testPlanReportContentWithBLOBs.getSummary(); BeanUtils.copyBean(testPlanReportContentWithBLOBs, reportDTO); + testPlanReportContentWithBLOBs.setSummary(summary); testPlanReportContentWithBLOBs.setId(id); testPlanReportContentWithBLOBs.setTestPlanReportId(testPlanReportId); if (reportDTO.getFunctionResult() != null) { diff --git a/test-track/frontend/src/business/plan/view/comonents/report/detail/TestPlanSummaryReport.vue b/test-track/frontend/src/business/plan/view/comonents/report/detail/TestPlanSummaryReport.vue index 8a1317042a..204352bbd0 100644 --- a/test-track/frontend/src/business/plan/view/comonents/report/detail/TestPlanSummaryReport.vue +++ b/test-track/frontend/src/business/plan/view/comonents/report/detail/TestPlanSummaryReport.vue @@ -1,10 +1,10 @@