Compare commits

..

No commits in common. "55f864c16cb3a7d8452f5802878d57ac611ef6ad" and "4945daa0d45225c091a787ccc8dae4cacecea2f6" have entirely different histories.

1 changed files with 10 additions and 14 deletions

View File

@ -664,23 +664,19 @@ namespace IRaCIS.Core.Application.Services
{
studyList.Insert(0, keySeries);
}
else
studyList.ForEach(x =>
{
studyList.Insert(0, new VisitStudyDTO() { });
}
studyList.ForEach(x =>
x.SeriesList.ForEach(y =>
{
x.SeriesList.ForEach(y =>
{
y.IsBeMark = rowInfoList.Any(z => z.SeriesId == y.Id);
});
y.IsBeMark = rowInfoList.Any(z => z.SeriesId == y.Id);
});
});
}