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);