This commit is contained in:
Rizki
2026-01-28 13:20:19 +07:00
parent 93d2e1f422
commit 3fbb337308
2 changed files with 2 additions and 3 deletions

View File

@ -49,9 +49,6 @@ export class ProcurementProjectYearly {
// SPECIFICATION & PROCESS // SPECIFICATION & PROCESS
// ========================= // =========================
@Column({ type: "text", nullable: true })
specification: string; // Detail Specification / TOR / SOW
@Column({ type: "varchar", length: 100, nullable: true }) @Column({ type: "varchar", length: 100, nullable: true })
preparation_status: ProcurementPreparationStatus; // Status preparation (ready / not ready) preparation_status: ProcurementPreparationStatus; // Status preparation (ready / not ready)

View File

@ -8,6 +8,8 @@ export enum ProcurementStatusType {
export enum ProcurementPreparationStatus { export enum ProcurementPreparationStatus {
ready = "ready", ready = "ready",
completed = "completed",
approve = "approve",
not_ready = "not_ready", not_ready = "not_ready",
} }