From c3c9c85d305914f76e131bf4983661d07ee8f2d9 Mon Sep 17 00:00:00 2001 From: Suphonchai Phoonsawat Date: Thu, 29 May 2025 13:08:06 +0700 Subject: [PATCH] fix #1357 --- BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs b/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs index d3d81065..7db22ad3 100644 --- a/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs +++ b/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs @@ -1514,6 +1514,7 @@ namespace BMA.EHR.Insignia.Service.Controllers .Where(x => req.InsigniaId == null ? x.RequestInsignia != null : (x.RequestInsignia.Id == req.InsigniaId)) .Select(x => new { + x.ProfileId, Id = x.Id, x.Prefix, x.FirstName, @@ -1555,6 +1556,7 @@ namespace BMA.EHR.Insignia.Service.Controllers .Select(x => new { Id = x.Id, + ProfileId = x.ProfileId, Prefix = x.Prefix ?? "", Position = x.Position ?? "", ProfileType = x.ProfileType ?? "", @@ -1597,6 +1599,7 @@ namespace BMA.EHR.Insignia.Service.Controllers new { insigniaNoteProfile.Id, + insigniaNoteProfile.ProfileId, insigniaNoteProfile.Prefix, insigniaNoteProfile.Position, insigniaNoteProfile.CitizenId,