feat: general ledger sub-accounts

This commit is contained in:
Ahmed Bouhuolia
2024-06-05 21:45:01 +02:00
parent 6afe1a09c6
commit 044f11ff74
5 changed files with 249 additions and 78 deletions

View File

@@ -56,6 +56,8 @@ export interface IGeneralLedgerSheetAccount {
transactions: IGeneralLedgerSheetAccountTransaction[];
openingBalance: IGeneralLedgerSheetAccountBalance;
closingBalance: IGeneralLedgerSheetAccountBalance;
closingBalanceSubaccounts: IGeneralLedgerSheetAccountBalance;
children?: IGeneralLedgerSheetAccount[];
}
export type IGeneralLedgerSheetData = IGeneralLedgerSheetAccount[];