add table procurement_project_yearly
This commit is contained in:
22
src/types/procurement.ts
Normal file
22
src/types/procurement.ts
Normal 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",
|
||||
}
|
||||
Reference in New Issue
Block a user