feat: general ledger closing balance with accounts row

This commit is contained in:
Ahmed Bouhuolia
2024-06-06 18:42:07 +02:00
parent 5dbfd36415
commit 10fcf94c92
4 changed files with 99 additions and 31 deletions

View File

@@ -56,7 +56,7 @@ export interface IGeneralLedgerSheetAccount {
transactions: IGeneralLedgerSheetAccountTransaction[];
openingBalance: IGeneralLedgerSheetAccountBalance;
closingBalance: IGeneralLedgerSheetAccountBalance;
closingBalanceSubaccounts: IGeneralLedgerSheetAccountBalance;
closingBalanceSubaccounts?: IGeneralLedgerSheetAccountBalance;
children?: IGeneralLedgerSheetAccount[];
}