From 49554ae764d4cd9bef9a61f6b2c4fe05c1ab7b87 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 28 May 2026 14:41:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E5=87=BA=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ReadingImageTaskService.cs | 30 +++++++++++++++---- 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index c212dfe56..02897f0e9 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -119,10 +119,19 @@ namespace IRaCIS.Core.Application.Service } else { - data.ReportUrlList.Add(await _readingCalculateService.GetVisitReadReportUrl(new CaGetVisitReadReportUrl() + try { - VisitTaskId = item.Id, - })); + data.ReportUrlList.Add(await _readingCalculateService.GetVisitReadReportUrl(new CaGetVisitReadReportUrl() + { + VisitTaskId = item.Id, + })); + } + catch (Exception) + { + + + } + } if (item.TumorEvaluationUrl != string.Empty) @@ -131,10 +140,19 @@ namespace IRaCIS.Core.Application.Service } else { - data.ReportUrlList.Add(await _readingCalculateService.GetTumorEvaluationReportUrl(new CaGetVisitReadReportUrl() + try { - VisitTaskId = item.Id, - })); + data.ReportUrlList.Add(await _readingCalculateService.GetTumorEvaluationReportUrl(new CaGetVisitReadReportUrl() + { + VisitTaskId = item.Id, + })); + } + catch (Exception) + { + + + } + } result.Add(data);