Sales Order List table

This commit is contained in:
efrilm
2025-09-10 00:40:54 +07:00
parent ce9f845fe4
commit 8ec6ba62f3
9 changed files with 722 additions and 4 deletions
+12
View File
@@ -20,3 +20,15 @@ export type SalesDeliveryType = {
date: string
status: string
}
export type SalesOrderType = {
id: number
number: string
vendorName: string
vendorCompany: string
reference: string
date: string
dueDate: string
status: string
total: number
}