This commit is contained in:
AdisakKanthawilang 2025-04-28 14:45:21 +07:00
parent 1a8aad2d5f
commit 4da32eb5ef
2 changed files with 3 additions and 0 deletions

View file

@ -380,6 +380,7 @@ export class ProfileSalaryEmployeeController extends Controller {
profile.positionSalaryAmount = body.positionSalaryAmount ?? _null; profile.positionSalaryAmount = body.positionSalaryAmount ?? _null;
profile.mouthSalaryAmount = body.mouthSalaryAmount ?? _null; profile.mouthSalaryAmount = body.mouthSalaryAmount ?? _null;
profile.salaryLevel = body.salaryLevel ?? _null; profile.salaryLevel = body.salaryLevel ?? _null;
profile.group = body.group ?? _null;
await this.profileRepo.save(profile); await this.profileRepo.save(profile);
return new HttpSuccess(); return new HttpSuccess();
} }

View file

@ -356,6 +356,7 @@ export class CreateProfileSalaryEmployee {
posNumCodeSit?: string | null; posNumCodeSit?: string | null;
posNumCodeSitAbb?: string | null; posNumCodeSitAbb?: string | null;
salaryLevel?: number | null; salaryLevel?: number | null;
group?: string | null;
} }
export class UpdateProfileSalaryEmployee { export class UpdateProfileSalaryEmployee {
@ -389,6 +390,7 @@ export class UpdateProfileSalaryEmployee {
posNumCodeSit?: string | null; posNumCodeSit?: string | null;
posNumCodeSitAbb?: string | null; posNumCodeSitAbb?: string | null;
salaryLevel?: number | null; salaryLevel?: number | null;
group?: string | null;
} }
export type UpdateProfileSalary = { export type UpdateProfileSalary = {