integrate chart of account to sub akun dari

This commit is contained in:
efrilm
2025-09-12 19:30:14 +07:00
parent 5a0d96ee43
commit 27fe48e99e
3 changed files with 104 additions and 27 deletions
+23
View File
@@ -14,3 +14,26 @@ export interface ChartOfAccountTypes {
page: number
total: number
}
export interface ChartOfAccount {
id: string
organization_id: string
outlet_id: string
chart_of_account_type_id: string
parent_id: string
name: string
code: string
description: string
is_active: boolean
is_system: boolean
created_at: string
updated_at: string
chart_of_account_type: ChartOfAccountType
}
export interface ChartOfAccounts {
data: ChartOfAccount[]
limit: number
page: number
total: number
}