diff --git a/src/controllers/ProfileSalaryEmployeeController.ts b/src/controllers/ProfileSalaryEmployeeController.ts index ce06f015..eb7f7424 100644 --- a/src/controllers/ProfileSalaryEmployeeController.ts +++ b/src/controllers/ProfileSalaryEmployeeController.ts @@ -380,6 +380,7 @@ export class ProfileSalaryEmployeeController extends Controller { profile.positionSalaryAmount = body.positionSalaryAmount ?? _null; profile.mouthSalaryAmount = body.mouthSalaryAmount ?? _null; profile.salaryLevel = body.salaryLevel ?? _null; + profile.group = body.group ?? _null; await this.profileRepo.save(profile); return new HttpSuccess(); } diff --git a/src/entities/ProfileSalary.ts b/src/entities/ProfileSalary.ts index e0234f5e..cb037888 100644 --- a/src/entities/ProfileSalary.ts +++ b/src/entities/ProfileSalary.ts @@ -356,6 +356,7 @@ export class CreateProfileSalaryEmployee { posNumCodeSit?: string | null; posNumCodeSitAbb?: string | null; salaryLevel?: number | null; + group?: string | null; } export class UpdateProfileSalaryEmployee { @@ -389,6 +390,7 @@ export class UpdateProfileSalaryEmployee { posNumCodeSit?: string | null; posNumCodeSitAbb?: string | null; salaryLevel?: number | null; + group?: string | null; } export type UpdateProfileSalary = {