From 38a42dc44fefd28a12049f0a92cdd228e4354d04 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Fri, 12 Sep 2025 11:35:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E6=8A=A5=E5=91=8A=E7=BC=93?= =?UTF-8?q?=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ReadingCalculate/General/ReadingCalculateService.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs index f2de7e2d3..c070055e1 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs @@ -188,7 +188,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate public async Task GetVisitReadReportUrl(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) + var iscache = false; + if (iscache && taskinfo.ReportExportUrl != string.Empty) { return taskinfo.ReportExportUrl; } @@ -242,7 +243,8 @@ 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.TumorEvaluationUrl != string.Empty) + var iscache = false; + if (iscache&&taskinfo.TumorEvaluationUrl != string.Empty) { return taskinfo.TumorEvaluationUrl; }