แก้ format error

This commit is contained in:
Kittapath 2024-08-08 16:30:25 +07:00
parent f6341eb399
commit 02402542b2
2 changed files with 4 additions and 4 deletions

View file

@ -1589,7 +1589,7 @@ namespace BMA.EHR.Application.Repositories.Commands
var resultData = new List<CommandReceiver>(); var resultData = new List<CommandReceiver>();
var baseAPI = _configuration["API"]; var baseAPI = _configuration["API"];
var apiUrl = $"{baseAPI}/org/profile-employee/report"; var apiUrl = $"{baseAPI}/org/profile-employee/report-temp";
var response = new PassSalaryResponse(); var response = new PassSalaryResponse();
using (var client = new HttpClient()) using (var client = new HttpClient())
@ -1609,8 +1609,8 @@ namespace BMA.EHR.Application.Repositories.Commands
Sequence = seq, Sequence = seq,
CitizenId = d.citizenId, CitizenId = d.citizenId,
Prefix = d.prefix == null ? "" : d.prefix, Prefix = d.prefix == null ? "" : d.prefix,
FirstName = d.firstName, FirstName = d.firstName == null ? "" : d.firstName,
LastName = d.lastName, LastName = d.lastName == null ? "" : d.lastName,
RefPlacementProfileId = d.id, RefPlacementProfileId = d.id,
RefDisciplineId = d.id, RefDisciplineId = d.id,
Organization = d.organization, Organization = d.organization,

View file

@ -672,7 +672,7 @@ namespace BMA.EHR.Placement.Service.Controllers
person.MouthSalaryAmount = null; person.MouthSalaryAmount = null;
person.PositionSalaryAmount = null; person.PositionSalaryAmount = null;
person.RecruitDate = null; person.RecruitDate = null;
person.ReportingDate = null person.ReportingDate = null;
person.RejectReason = req.Note; person.RejectReason = req.Note;
person.PlacementStatus = "DISCLAIM"; person.PlacementStatus = "DISCLAIM";
person.LastUpdateFullName = FullName ?? "System Administrator"; person.LastUpdateFullName = FullName ?? "System Administrator";