Compare commits
2 Commits
3fc7b72a45
...
9834335767
Author | SHA1 | Date |
---|---|---|
|
9834335767 | |
|
d4d5ed0d9a |
|
@ -1915,6 +1915,19 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 后处理Dicom影像
|
||||||
|
// TaskStudy
|
||||||
|
|
||||||
|
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(TaskStudy)))
|
||||||
|
{
|
||||||
|
var type = GetEntityAuditOpt(item);
|
||||||
|
|
||||||
|
await InsertInspection<TaskStudy>(item.Entity as TaskStudy, type, x => new InspectionConvertDTO()
|
||||||
|
{
|
||||||
|
ObjectRelationParentId = x.VisitTaskId
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// 序列
|
// 序列
|
||||||
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(DicomSeries)))
|
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(DicomSeries)))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue