diff --git a/src/controllers/ProfileSalaryTempController.ts b/src/controllers/ProfileSalaryTempController.ts index 3a2b9dca..a26f39f1 100644 --- a/src/controllers/ProfileSalaryTempController.ts +++ b/src/controllers/ProfileSalaryTempController.ts @@ -1114,6 +1114,7 @@ export class ProfileSalaryTempController extends Controller { } else if (profileEmployee) { history.profileEmployeeId = profileId; } + history.returnedDate = new Date(); history.examinerName = req.user.name; history.createdFullName = req.user.name; history.lastUpdateFullName = req.user.name; diff --git a/src/entities/PositionSalaryEditHistory.ts b/src/entities/PositionSalaryEditHistory.ts index 50003f71..75fc3df7 100644 --- a/src/entities/PositionSalaryEditHistory.ts +++ b/src/entities/PositionSalaryEditHistory.ts @@ -57,7 +57,6 @@ export class PositionSalaryEditHistory extends EntityBase { } export class CreatePositionSalaryEditHistory { - returnedDate: Date; detailForEdit: string | null; } diff --git a/src/entities/ProfileSalaryTemp.ts b/src/entities/ProfileSalaryTemp.ts index 42d13d70..556fd584 100644 --- a/src/entities/ProfileSalaryTemp.ts +++ b/src/entities/ProfileSalaryTemp.ts @@ -342,6 +342,8 @@ export class CreateProfileSalaryTemp { isGovernment?: boolean | null; positionCee?: string | null; commandName?: string | null; + posNumCodeSit?: string | null; + posNumCodeSitAbb?: string | null; } export type UpdateProfileSalaryTemp = { @@ -373,4 +375,6 @@ export type UpdateProfileSalaryTemp = { isGovernment?: boolean | null; positionCee?: string | null; commandName?: string | null; + posNumCodeSit?: string | null; + posNumCodeSitAbb?: string | null; };