From e461f43604a4ee50a1ed2866eb52bc4ea903866b Mon Sep 17 00:00:00 2001 From: harid Date: Fri, 30 Jan 2026 12:01:38 +0700 Subject: [PATCH] Fix Bug #2243 --- src/controllers/ProfileSalaryTempController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/ProfileSalaryTempController.ts b/src/controllers/ProfileSalaryTempController.ts index e4cb6637..9e458953 100644 --- a/src/controllers/ProfileSalaryTempController.ts +++ b/src/controllers/ProfileSalaryTempController.ts @@ -1340,7 +1340,7 @@ export class ProfileSalaryTempController extends Controller { * 4. UPDATE * ========================= */ for (const temp of toUpdate) { - const { salaryId, id, ...data } = temp; + const { id, salaryId, isDelete, isEdit, ...data } = temp; await queryRunner.manager.update( ProfileSalary, { id: salaryId },