稽查修改
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
he 2025-09-03 14:43:15 +08:00
parent 16e5a0567f
commit f082217e99
1 changed files with 26 additions and 18 deletions

View File

@ -1741,6 +1741,8 @@ namespace IRaCIS.Core.Infra.EFCore.Common
ObjectRelationParentId2 = x.SubjectVisitId, ObjectRelationParentId2 = x.SubjectVisitId,
ObjectRelationParentId3 = x.StudyId, ObjectRelationParentId3 = x.StudyId,
IsDistinctionInterface=false,
}, new }, new
{ {
@ -1766,6 +1768,11 @@ namespace IRaCIS.Core.Infra.EFCore.Common
var reason = string.Empty; var reason = string.Empty;
if (type == AuditOpt.Add)
{
isDistinctionInterface = false;
}
#region 处理标识 #region 处理标识
switch (_userInfo.RequestUrl.ToLower()) switch (_userInfo.RequestUrl.ToLower())
@ -1860,7 +1867,8 @@ namespace IRaCIS.Core.Infra.EFCore.Common
await InsertInspection<TaskStudy>(item.Entity as TaskStudy, type, x => new InspectionConvertDTO() await InsertInspection<TaskStudy>(item.Entity as TaskStudy, type, x => new InspectionConvertDTO()
{ {
ObjectRelationParentId = x.VisitTaskId, ObjectRelationParentId = x.VisitTaskId,
},new { }, new
{
ArmEnum = armEnum, ArmEnum = armEnum,
}); });
} }