Get Account

This commit is contained in:
efrilm
2025-09-12 19:51:35 +07:00
parent 27fe48e99e
commit 2d69a024c1
3 changed files with 92 additions and 181 deletions
+25
View File
@@ -37,3 +37,28 @@ export interface ChartOfAccounts {
page: number
total: number
}
export interface Account {
id: string
organization_id: string
outlet_id: string
chart_of_account_id: string
name: string
number: string
account_type: string
opening_balance: number
current_balance: number
description: string
is_active: true
is_system: false
created_at: string
updated_at: string
chart_of_account: ChartOfAccount
}
export interface Accounts {
data: Account[]
limit: number
page: number
total: number
}