แก้ format error
This commit is contained in:
parent
f6341eb399
commit
02402542b2
2 changed files with 4 additions and 4 deletions
|
|
@ -1589,7 +1589,7 @@ namespace BMA.EHR.Application.Repositories.Commands
|
|||
var resultData = new List<CommandReceiver>();
|
||||
|
||||
var baseAPI = _configuration["API"];
|
||||
var apiUrl = $"{baseAPI}/org/profile-employee/report";
|
||||
var apiUrl = $"{baseAPI}/org/profile-employee/report-temp";
|
||||
|
||||
var response = new PassSalaryResponse();
|
||||
using (var client = new HttpClient())
|
||||
|
|
@ -1609,8 +1609,8 @@ namespace BMA.EHR.Application.Repositories.Commands
|
|||
Sequence = seq,
|
||||
CitizenId = d.citizenId,
|
||||
Prefix = d.prefix == null ? "" : d.prefix,
|
||||
FirstName = d.firstName,
|
||||
LastName = d.lastName,
|
||||
FirstName = d.firstName == null ? "" : d.firstName,
|
||||
LastName = d.lastName == null ? "" : d.lastName,
|
||||
RefPlacementProfileId = d.id,
|
||||
RefDisciplineId = d.id,
|
||||
Organization = d.organization,
|
||||
|
|
|
|||
|
|
@ -672,7 +672,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
person.MouthSalaryAmount = null;
|
||||
person.PositionSalaryAmount = null;
|
||||
person.RecruitDate = null;
|
||||
person.ReportingDate = null
|
||||
person.ReportingDate = null;
|
||||
person.RejectReason = req.Note;
|
||||
person.PlacementStatus = "DISCLAIM";
|
||||
person.LastUpdateFullName = FullName ?? "System Administrator";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue