From 57240eded1c72a738a6c59557678caeaee295908 Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Thu, 8 Aug 2024 11:52:15 +0700 Subject: [PATCH] fix --- src/controllers/DevelopmentController.ts | 2 ++ src/entities/DevelopmentOther.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/controllers/DevelopmentController.ts b/src/controllers/DevelopmentController.ts index eb2f0bf..bc92d58 100644 --- a/src/controllers/DevelopmentController.ts +++ b/src/controllers/DevelopmentController.ts @@ -2214,7 +2214,9 @@ export class DevelopmentController extends Controller { ), obstacle: getDevelopment.obstacle, suggestion: getDevelopment.suggestion, + project: getDevelopment.project, isPassAllocate: getDevelopment.isPassAllocate, + isPassNoAllocate: getDevelopment.isPassNoAllocate, isNoPass: getDevelopment.isNoPass, isBudget: getDevelopment.isBudget, isOutBudget: getDevelopment.isOutBudget, diff --git a/src/entities/DevelopmentOther.ts b/src/entities/DevelopmentOther.ts index 87d53e3..4315669 100644 --- a/src/entities/DevelopmentOther.ts +++ b/src/entities/DevelopmentOther.ts @@ -42,7 +42,7 @@ export class UpdateDevelopmentOther { @Column() topicAcademic: string | null; @Column() - addressAcademic: number | null; + addressAcademic: string | null; @Column() provinceActualId: string | null; }