From 704a876cf037026586cdf04a2c3289acdfcd606b Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Tue, 25 Mar 2025 14:34:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ReadingCalculate/General/ReadingCalculateService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs index 8ce688dfa..fdf25359e 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs @@ -239,9 +239,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate public async Task GetTumorEvaluationReportUrl(CaGetVisitReadReportUrl inDto) { var taskinfo = await _visitTaskRepository.Where(x => x.Id == inDto.VisitTaskId).Include(x => x.Subject).Include(x => x.SourceSubjectVisit).FirstNotNullAsync(); - if (taskinfo.ReportExportUrl != string.Empty) + if (taskinfo.TumorEvaluationUrl != string.Empty) { - return taskinfo.ReportExportUrl; + return taskinfo.TumorEvaluationUrl; } else {