#1698
Some checks failed
release-dev / release-dev (push) Failing after 12s

This commit is contained in:
AdisakKanthawilang 2025-07-29 17:40:37 +07:00
parent 0223ff5d9b
commit ce8736b083

View file

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