purchase bills table page

This commit is contained in:
efrilm
2025-09-09 23:23:59 +07:00
parent 49ed3386be
commit b20e672ea1
8 changed files with 749 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
export type PurchaseBillType = {
id: number
number: string
vendorName: string
vendorCompany: string
reference: string
date: string
dueDate: string
status: string
remainingBill: number
total: number
}