Compare commits

...

2 Commits

Author SHA1 Message Date
he 55f864c16c Merge branch 'Test_HIR_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_HIR_Net8
continuous-integration/drone/push Build is running Details
2025-08-29 10:49:19 +08:00
he 59ecaaa5a7 修改关键帧 2025-08-29 10:49:16 +08:00
1 changed files with 15 additions and 11 deletions

View File

@ -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);
});
});
}