From 59ecaaa5a72e620ff23e653561b6498a7cce1ec4 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Fri, 29 Aug 2025 10:49:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=B3=E9=94=AE=E5=B8=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Visit/SubjectVisitService.cs | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs b/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs index 67a57d78e..7c423347e 100644 --- a/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs +++ b/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs @@ -664,19 +664,23 @@ namespace IRaCIS.Core.Application.Services { studyList.Insert(0, keySeries); } - - - - - - studyList.ForEach(x => + else { - x.SeriesList.ForEach(y => - { - y.IsBeMark = rowInfoList.Any(z => z.SeriesId == y.Id); - }); + studyList.Insert(0, new VisitStudyDTO() { }); + } - }); + + + + + studyList.ForEach(x => + { + x.SeriesList.ForEach(y => + { + y.IsBeMark = rowInfoList.Any(z => z.SeriesId == y.Id); + }); + + }); }