checkpoint

This commit is contained in:
AdisakKanthawilang 2025-04-11 11:53:51 +07:00
parent f19d3ce70e
commit e585e41a70
4 changed files with 228 additions and 0 deletions

View file

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