purchase quote list and add

This commit is contained in:
efrilm
2025-09-09 23:55:38 +07:00
parent 9b787e65d4
commit f585f23c54
10 changed files with 758 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
export type PurchaseQuoteType = {
id: number
number: string
vendorName: string
vendorCompany: string
reference: string
date: string
dueDate: string
status: string
total: number
}