From 3fbb337308f0aee271f81f78052e623407f7c2cb Mon Sep 17 00:00:00 2001 From: Rizki Date: Wed, 28 Jan 2026 13:20:19 +0700 Subject: [PATCH] upd --- src/entity/procurement/procurement_project_yearly.ts | 3 --- src/types/procurement.ts | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/entity/procurement/procurement_project_yearly.ts b/src/entity/procurement/procurement_project_yearly.ts index 0d8c3c9..5f4cc41 100644 --- a/src/entity/procurement/procurement_project_yearly.ts +++ b/src/entity/procurement/procurement_project_yearly.ts @@ -49,9 +49,6 @@ export class ProcurementProjectYearly { // SPECIFICATION & PROCESS // ========================= - @Column({ type: "text", nullable: true }) - specification: string; // Detail Specification / TOR / SOW - @Column({ type: "varchar", length: 100, nullable: true }) preparation_status: ProcurementPreparationStatus; // Status preparation (ready / not ready) diff --git a/src/types/procurement.ts b/src/types/procurement.ts index b5a9689..09cb11b 100644 --- a/src/types/procurement.ts +++ b/src/types/procurement.ts @@ -8,6 +8,8 @@ export enum ProcurementStatusType { export enum ProcurementPreparationStatus { ready = "ready", + completed = "completed", + approve = "approve", not_ready = "not_ready", }