fix ออกคำสั่งบรรจุเสร็จสิ้น (ข้อมูลที่อยู่ไม่บันทึกลงระบบทะเบียนประวัติ) UAT #889
Some checks failed
release-dev / release-dev (push) Failing after 11s
Some checks failed
release-dev / release-dev (push) Failing after 11s
This commit is contained in:
parent
91196ec876
commit
98f493ec97
1 changed files with 6 additions and 6 deletions
|
|
@ -1762,14 +1762,14 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
religion = p.Religion == null ? string.Empty : p.Religion,
|
||||
bloodGroup = string.Empty,
|
||||
registrationAddress = p.RegistAddress == null ? string.Empty : p.RegistAddress,
|
||||
registrationProvinceId = (String?)null,
|
||||
registrationDistrictId = (String?)null,
|
||||
registrationSubDistrictId = (String?)null,
|
||||
registrationProvinceId = p.RegistProvinceId ?? null,
|
||||
registrationDistrictId = p.RegistDistrictId ?? null,
|
||||
registrationSubDistrictId = p.RegistSubDistrictId ?? null,
|
||||
registrationZipCode = p.RegistZipCode == null ? string.Empty : p.RegistZipCode,
|
||||
currentAddress = p.CurrentAddress == null ? string.Empty : p.CurrentAddress,
|
||||
currentProvinceId = (String?)null,
|
||||
currentDistrictId = (String?)null,
|
||||
currentSubDistrictId = (String?)null,
|
||||
currentProvinceId = p.CurrentProvinceId ?? null,
|
||||
currentDistrictId = p.CurrentDistrictId ?? null,
|
||||
currentSubDistrictId = p.CurrentSubDistrictId ?? null,
|
||||
currentZipCode = p.CurrentZipCode == null ? string.Empty : p.CurrentZipCode,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue