Fixed Asset Table

This commit is contained in:
efrilm
2025-09-11 13:37:52 +07:00
parent 63eea38d48
commit 42b95bb212
8 changed files with 620 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
export type FixedAssetType = {
id: number
assetName: string
puchaseBill: string // Code Purchase
reference: string
date: string
price: number
}