From 64fd39ceb49072f543e0610d67dd1143a558afb7 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Fri, 27 Sep 2024 10:52:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs index b656f3f16..309b8fe8d 100644 --- a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs +++ b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs @@ -1984,10 +1984,10 @@ namespace IRaCIS.Core.Infra.EFCore.Common var trialid = await _dbContext.NoneDicomStudy.Where(x => x.Id == entity.NoneDicomStudyId).Select(x => x.TrialId).FirstOrDefaultAsync(); - await InsertInspection(item.Entity as NoneDicomStudy, type, x => new InspectionConvertDTO() + await InsertInspection(item.Entity as NoneDicomStudyFile, type, x => new InspectionConvertDTO() { TrialId= trialid, - ObjectRelationParentId = x.SubjectVisitId, + ObjectRelationParentId = x.VisitTaskId, ExtraIndentification = extraIdentification }); }