working order

This commit is contained in:
Rizki
2026-01-30 19:42:06 +07:00
parent 5eb3460ab5
commit 56b88f814b
4 changed files with 172 additions and 1 deletions

View File

@ -75,4 +75,16 @@ export enum ProcurementPRCStatus {
APPROVED = "APPROVED",
REJECTED = "REJECTED",
RECEIVED = "RECEIVED",
}
}
// File: src/types/procurement.ts
export enum ProcurementWorkOrderStatus {
DRAFT = "DRAFT",
PENDING_APPROVAL = "PENDING_APPROVAL",
APPROVED = "APPROVED",
ISSUED = "ISSUED",
IN_PROGRESS = "IN_PROGRESS",
COMPLETED = "COMPLETED",
CANCELLED = "CANCELLED",
}