add field year

This commit is contained in:
AdisakKanthawilang 2024-04-29 14:51:12 +07:00
parent 10b04aca44
commit 47c275ef04
2 changed files with 2 additions and 0 deletions

View file

@ -323,6 +323,7 @@ export class DevelopmentEmployeeHistoryController extends Controller {
citizenId: item.citizenId,
fullName: item.prefix + item.firstName + " " + item.lastName,
position: item.position,
year: item.development.year,
posType: item.employeePosType ? item.employeePosType.posTypeName : null,
posLevel: item.employeePosLevel ? item.employeePosLevel.posLevelName : null,
projectName: item.development.projectName,

View file

@ -312,6 +312,7 @@ export class DevelopmentOfficerHistoryController extends Controller {
citizenId: item.citizenId,
fullName: item.prefix + item.firstName + " " + item.lastName,
position: item.position,
year: item.development.year,
posType: item.posType ? item.posType.posTypeName : null,
posLevel: item.posLevel ? item.posLevel.posLevelName : null,
posExecutive: item.posExecutive,