This commit is contained in:
parent
0223ff5d9b
commit
071e236280
1 changed files with 4 additions and 4 deletions
|
|
@ -2484,11 +2484,11 @@ namespace BMA.EHR.Insignia.Service.Controllers
|
||||||
receiveDate = profile.DateReceive!.Value,
|
receiveDate = profile.DateReceive!.Value,
|
||||||
dateAnnounce = profile.Date!.Value,
|
dateAnnounce = profile.Date!.Value,
|
||||||
insigniaId = profile.RequestInsignia!.Id,
|
insigniaId = profile.RequestInsignia!.Id,
|
||||||
issue = "",
|
issue = profile!.Issue ?? "",
|
||||||
note = "",
|
note = "",
|
||||||
refCommandDate = null,
|
refCommandDate = null,
|
||||||
refCommandNo = "",
|
refCommandNo = "",
|
||||||
volume = "",
|
volume = profile!.VolumeNo ?? "",
|
||||||
|
|
||||||
};
|
};
|
||||||
await _userProfileRepository.PostProfileInsigniaAsync(profileInsigniaBody, AccessToken);
|
await _userProfileRepository.PostProfileInsigniaAsync(profileInsigniaBody, AccessToken);
|
||||||
|
|
@ -2506,11 +2506,11 @@ namespace BMA.EHR.Insignia.Service.Controllers
|
||||||
receiveDate = profile.DateReceive!.Value,
|
receiveDate = profile.DateReceive!.Value,
|
||||||
dateAnnounce = profile.Date!.Value,
|
dateAnnounce = profile.Date!.Value,
|
||||||
insigniaId = profile.RequestInsignia!.Id,
|
insigniaId = profile.RequestInsignia!.Id,
|
||||||
issue = "",
|
issue = profile!.Issue ?? "",
|
||||||
note = "",
|
note = "",
|
||||||
refCommandDate = null,
|
refCommandDate = null,
|
||||||
refCommandNo = "",
|
refCommandNo = "",
|
||||||
volume = "",
|
volume = profile!.VolumeNo ?? "",
|
||||||
|
|
||||||
};
|
};
|
||||||
await _userProfileRepository.PostProfileEmpInsigniaAsync(profileInsigniaBody, AccessToken);
|
await _userProfileRepository.PostProfileEmpInsigniaAsync(profileInsigniaBody, AccessToken);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue