เกษียณเพิ่มส่วนราชการต้นสังกัด
This commit is contained in:
parent
1f5edf20ed
commit
a2bc99f739
9 changed files with 250 additions and 85 deletions
|
|
@ -1151,6 +1151,8 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
FirstName = x.Profile.FirstName,
|
||||
LastName = x.Profile.LastName,
|
||||
CitizenId = x.Profile.CitizenId,
|
||||
Position = x.OrganizationPosition.PositionMaster.PositionPath == null ? "-" : x.OrganizationPosition.PositionMaster.PositionPath.Name,
|
||||
PositionLevel = x.Profile.PositionLevel == null ? "-" : x.Profile.PositionLevel.Name,
|
||||
IsDirector = x.OrganizationPosition.PositionMaster.IsDirector,
|
||||
})
|
||||
.ToListAsync();
|
||||
|
|
@ -1173,6 +1175,8 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
FirstName = x.Profile.FirstName,
|
||||
LastName = x.Profile.LastName,
|
||||
CitizenId = x.Profile.CitizenId,
|
||||
Position = x.Profile.Position == null ? "-" : x.Profile.Position.Name,
|
||||
PositionLevel = x.Profile.PositionLevel == null ? "-" : x.Profile.PositionLevel.Name,
|
||||
IsDirector = x.OrganizationPosition.PositionMaster.IsDirector,
|
||||
})
|
||||
.ToListAsync();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue