feat: general ledger and journal rows types

This commit is contained in:
Ahmed Bouhuolia
2024-01-06 22:30:41 +02:00
parent 79f3f1b63d
commit 7aee76e461
4 changed files with 27 additions and 16 deletions

View File

@@ -0,0 +1,6 @@
export enum ROW_TYPE {
ACCOUNT = 'ACCOUNT',
OPENING_BALANCE = 'OPENING_BALANCE',
TRANSACTION = 'TRANSACTION',
CLOSING_BALANCE = 'CLOSING_BALANCE',
}