feat: purchase order page

This commit is contained in:
efrilm
2025-09-09 17:42:49 +07:00
parent 849013a08a
commit dfa8218017
8 changed files with 720 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
export type PurchaseOrderType = {
id: number
number: string
vendorName: string
vendorCompany: string
reference: string
date: string
dueDate: string
status: string
total: number
}