Compare commits
2 Commits
4945daa0d4
...
55f864c16c
| Author | SHA1 | Date |
|---|---|---|
|
|
55f864c16c | |
|
|
59ecaaa5a7 |
|
|
@ -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);
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue