Compare commits

...

2 Commits

Author SHA1 Message Date
he 9834335767 Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2024-09-26 10:47:03 +08:00
he d4d5ed0d9a 修改 2024-09-26 10:47:02 +08:00
1 changed files with 13 additions and 0 deletions

View File

@ -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)))
{