From 509001a13134169ae1d0075df54906e0e7a3d746 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Tue, 2 Aug 2022 17:34:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/IRaCIS.Core.Application.xml | 5 +++++ .../Service/Reading/ReadingImageTaskService.cs | 1 + 2 files changed, 6 insertions(+) diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index f2e7b6b80..f529eb80c 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -3045,6 +3045,11 @@ VisitTaskView 列表视图模型 + + + 是否是一致性分析产生 + + 未完成阅片量 diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs index ca7fbb091..76184c045 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs @@ -1083,6 +1083,7 @@ namespace IRaCIS.Application.Services x.ReadingTaskState == ReadingTaskState.HaveSigned&& x.TaskState==TaskState.Effect&& x.IsAnalysisCreate == taskInfo.IsAnalysisCreate) + .WhereIf(taskInfo.ReadingCategory!=ReadingCategory.Visit,x=>x.ReadingCategory==taskInfo.ReadingCategory) .ProjectTo(_mapper.ConfigurationProvider).OrderBy(x=>x.VisitTaskNum).ToListAsync(); return readingPastResultList;