diff --git a/BMA.EHR.Leave/Controllers/LeaveRequestController.cs b/BMA.EHR.Leave/Controllers/LeaveRequestController.cs index d743fce5..09e04816 100644 --- a/BMA.EHR.Leave/Controllers/LeaveRequestController.cs +++ b/BMA.EHR.Leave/Controllers/LeaveRequestController.cs @@ -934,12 +934,12 @@ namespace BMA.EHR.Leave.Service.Controllers SalaryText = lastSalary == null ? "" : lastSalary.Amount == null ? "" : ((int)lastSalary.Amount.Value).ToThaiBahtText(false), LeaveLast = leaveLast == null ? null : leaveLast, - TelephoneNumber = profile.TelephoneNumber ?? "-", - CurrentAddress = profile.CurrentAddress ?? "-", - CurrentSubDistrict = profile.CurrentSubDistrict ?? "-", - CurrentDistrict = profile.CurrentDistrict ?? "-", - CurrentProvince = profile.CurrentProvince ?? "-", - CurrentZipCode = profile.CurrentZipCode ?? "-", + TelephoneNumber = profile.TelephoneNumber ?? "", + CurrentAddress = profile.CurrentAddress ?? "", + CurrentSubDistrict = profile.CurrentSubDistrict ?? "", + CurrentDistrict = profile.CurrentDistrict ?? "", + CurrentProvince = profile.CurrentProvince ?? "", + CurrentZipCode = profile.CurrentZipCode ?? "", }; return Success(result);