Compare commits

...

2 Commits

Author SHA1 Message Date
he f9327c56db 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
2025-03-13 10:42:59 +08:00
he 17f3d821ea 修改 2025-03-13 10:42:57 +08:00
1 changed files with 15 additions and 0 deletions

View File

@ -2018,6 +2018,21 @@ namespace IRaCIS.Core.Infra.EFCore.Common
); );
} }
//
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(DicomInstance)))
{
var type = GetEntityAuditOpt(item);
var entity = item.Entity as DicomInstance;
await InsertInspection<DicomInstance>(item.Entity as DicomInstance, type, x => new InspectionConvertDTO()
{
ObjectRelationParentId = x.SeriesId,
ObjectRelationParentId2 = x.StudyId,
}
);
}
// 非Dicom // 非Dicom
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(NoneDicomStudy))) foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(NoneDicomStudy)))