diff --git a/BMA.EHR.Placement.Service/Controllers/PlacementReceiveController.cs b/BMA.EHR.Placement.Service/Controllers/PlacementReceiveController.cs index 15ec2a2c..71a2f51e 100644 --- a/BMA.EHR.Placement.Service/Controllers/PlacementReceiveController.cs +++ b/BMA.EHR.Placement.Service/Controllers/PlacementReceiveController.cs @@ -1040,7 +1040,7 @@ namespace BMA.EHR.Placement.Service.Controllers posLevelId = p.posLevelId == null ? string.Empty : p.posLevelId, posTypeId = p.posTypeId == null ? string.Empty : p.posTypeId, email = (String?)null, - phone = (String?)null, + phone = p.TelephoneNumber == null ? string.Empty : p.TelephoneNumber, keycloak = string.Empty, isProbation = false, isLeave = false, @@ -1057,7 +1057,7 @@ namespace BMA.EHR.Placement.Service.Controllers gender = p.Gender == null ? string.Empty : p.Gender, relationship = p.Relationship == null ? string.Empty : p.Relationship, religion = p.Religion == null ? string.Empty : p.Religion, - bloodGroup = string.Empty, + bloodGroup = p.BloodGroup == null ? string.Empty : p.BloodGroup, registrationAddress = (String?)null, registrationProvinceId = (String?)null, registrationDistrictId = (String?)null,