From ce8736b083740c250da58d3dc404e007286ed9d5 Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Tue, 29 Jul 2025 17:40:37 +0700 Subject: [PATCH] #1698 --- BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs b/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs index 7c8dc329..fc4b68a8 100644 --- a/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs +++ b/BMA.EHR.Insignia/Controllers/InsigniaRequestController.cs @@ -2484,11 +2484,11 @@ namespace BMA.EHR.Insignia.Service.Controllers receiveDate = profile.DateReceive!.Value, dateAnnounce = profile.Date!.Value, insigniaId = profile.RequestInsignia!.Id, - issue = "", + issue = profile!.Issue ?? "", note = "", refCommandDate = null, refCommandNo = "", - volume = "", + volume = profile!.VolumeNo ?? "", }; await _userProfileRepository.PostProfileInsigniaAsync(profileInsigniaBody, AccessToken); @@ -2506,11 +2506,11 @@ namespace BMA.EHR.Insignia.Service.Controllers receiveDate = profile.DateReceive!.Value, dateAnnounce = profile.Date!.Value, insigniaId = profile.RequestInsignia!.Id, - issue = "", + issue = profile!.Issue ?? "", note = "", refCommandDate = null, refCommandNo = "", - volume = "", + volume = profile!.VolumeNo ?? "", }; await _userProfileRepository.PostProfileEmpInsigniaAsync(profileInsigniaBody, AccessToken);