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

Test_IRC_Net8
he 2026-04-29 16:03:57 +08:00
parent af1d4b3cd1
commit 303bf195d2
1 changed files with 7 additions and 1 deletions

View File

@ -2465,6 +2465,8 @@ namespace IRaCIS.Core.Infra.EFCore.Common
var extraIdentification = string.Empty; var extraIdentification = string.Empty;
var entity = item.Entity as DicomStudy; var entity = item.Entity as DicomStudy;
var reason = entity.ModifyReason;
switch (_userInfo.RequestUrl) switch (_userInfo.RequestUrl)
{ {
case "QCOperation/updateModality": case "QCOperation/updateModality":
@ -2473,6 +2475,10 @@ namespace IRaCIS.Core.Infra.EFCore.Common
extraIdentification = "/2"; extraIdentification = "/2";
} }
break;
case "Study/amendmentPatientInfo":
reason=entity.Reason;
break; break;
} }
@ -2480,7 +2486,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
{ {
ObjectRelationParentId = x.SubjectVisitId, ObjectRelationParentId = x.SubjectVisitId,
ExtraIndentification = extraIdentification, ExtraIndentification = extraIdentification,
Reason = entity.ModifyReason Reason = reason
}); });
} }