This commit is contained in:
Narul Hidayah
2026-01-27 14:49:56 +07:00
6 changed files with 271 additions and 0 deletions

22
src/types/procurement.ts Normal file
View File

@ -0,0 +1,22 @@
export enum ProcurementStatusType {
draft = "draft",
pending_review = "pending_review",
pending_approve = "pending_approve",
approve = "approve",
reject = "reject",
}
export enum ProcurementPreparationStatus {
ready = "ready",
not_ready = "not_ready",
}
export enum ProcurementMethod {
DP = "DP",
SP = "SP",
RFP = "RFP",
SINGLE_SOURCE = "SINGLE_SOURCE",
RFQ = "RFQ",
NCB = "NCB",
ICB = "ICB",
}