Sales Invoice Page

This commit is contained in:
efrilm
2025-09-10 00:19:11 +07:00
parent f585f23c54
commit cc3a0c07a9
8 changed files with 751 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
export type SalesBillType = {
id: number
number: string
customerName: string
customerCompany: string
reference: string
date: string
dueDate: string
status: string
remainingBill: number
total: number
}