From 9e1ed7fb968b4ca4561caae4c424a829153c5f1b Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Tue, 16 Jul 2024 16:31:14 +0700 Subject: [PATCH] fix field request --- src/controllers/ReportController.ts | 1 + src/entities/SalaryProfile.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/controllers/ReportController.ts b/src/controllers/ReportController.ts index 0e16434..1a1e3c3 100644 --- a/src/controllers/ReportController.ts +++ b/src/controllers/ReportController.ts @@ -4691,6 +4691,7 @@ export class ReportController extends Controller { : null, score: profile.result, reason: profile.remark, + remark:null, }; }); diff --git a/src/entities/SalaryProfile.ts b/src/entities/SalaryProfile.ts index 5eb66b4..3f281d8 100644 --- a/src/entities/SalaryProfile.ts +++ b/src/entities/SalaryProfile.ts @@ -437,6 +437,6 @@ export class CreateSalaryProfile { @Column() isSpecial: boolean; - @Column() - remark: string | null; + // @Column() + // remark: string | null; }