From 85f5c7104f41a3cc5164faf63b36052034a681a2 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 27 Aug 2026 17:13:38 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=9EIVUS=20=E7=A9=BA=E6=A3=80=E6=9F=A5=20?= =?UTF-8?q?=E5=8F=88=E4=B8=8D=E8=BF=87=E6=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ImageAndDoc/DownloadAndUploadService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs index c57918cb4..e714f73b0 100644 --- a/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs +++ b/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs @@ -1002,7 +1002,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc - var list = _noneDicomStudyReposiotry.Where(t => t.IsReading && t.NoneDicomFileList.Any(c => c.IsReading)) + var list = _noneDicomStudyReposiotry.Where(t => t.IsReading) .Where(t => t.SubjectId == subjectId && t.SubjectVisit.CheckState == CheckStateEnum.CVPassed) .WhereIf(inQuery.SubjectVisitId != null, t => t.SubjectVisitId == inQuery.SubjectVisitId) //.WhereIf(info.IsImageFilter, t => ("|" + info.CriterionModalitys + "|").Contains("|" + t.Modality + "|")) @@ -1034,7 +1034,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc }).OrderBy(t => t.VisitName).ThenBy(t => t.Modality).ToList(); - var noneDicomStudyIdList = list.Select(t => t.Id).ToList(); + var noneDicomStudyIdList = list.Where(t => !(t.Modality != "IVUS" && t.ReadingFileCount == 0)).Select(t => t.Id).ToList(); var noneDicomStudyList = _noneDicomStudyFileReposiotry.Where(t => t.IsReading)