fix: add bank rule categories

This commit is contained in:
Ahmed Bouhuolia
2024-07-08 21:48:16 +02:00
parent 38d4122d11
commit 73acdb6240
3 changed files with 143 additions and 38 deletions

View File

@@ -39,3 +39,12 @@ export const TRANSACRIONS_TYPE = [
'OtherExpense',
'TransferToAccount',
];
export const MoneyCategoryPerCreditAccountRootType = {
OwnerContribution: ['equity'],
OtherIncome: ['income'],
OwnerDrawing: ['equity'],
OtherExpense: ['expense'],
TransferToAccount: ['asset'],
TransferFromAccount: ['asset'],
};