no message

This commit is contained in:
Kittapath 2024-06-18 13:54:19 +07:00
parent a89b8e0453
commit bb87b8f809
4 changed files with 42 additions and 23 deletions

View file

@ -4571,7 +4571,13 @@ namespace BMA.EHR.Command.Service.Controllers
IdCard = r.CitizenId,
Name = $"{r.Prefix}{r.FirstName} {r.LastName}",
SelectStatus = r.RefPlacementProfileId == null ? false : (existed.FirstOrDefault(x => x.RefPlacementProfileId!.Value == r.RefPlacementProfileId!.Value) != null),
Education = "" // ยังหาไม่เจอว่าอยุ่ field ไหน
Education = "", // ยังหาไม่เจอว่าอยุ่ field ไหน
Organization = r.Organization == null ? null : r.Organization,
PositionName = r.PositionName == null ? null : r.PositionName,
PositionLevel = r.PositionLevel == null ? null : r.PositionLevel,
PositionType = r.PositionType == null ? null : r.PositionType,
PositionNumber = r.PositionNumber == null ? null : r.PositionNumber,
BirthDate = r.BirthDate == null ? null : r.BirthDate,
}).ToList();
// ให้ Update Salary เฉพาะของ Command 01-04