diff --git a/src/services/bankaccounts.ts b/src/services/bankaccounts.ts index 3c3da5c..6dce981 100644 --- a/src/services/bankaccounts.ts +++ b/src/services/bankaccounts.ts @@ -117,9 +117,11 @@ export class BankAccounts { transactions.forEach(t => { if ( // "other expenses" - t.fromId === 'A120' || + t.fromId === 'A120' || // 'Axxx' is the old format of categories... + t.fromId === 'C120' || // "other revenues" - t.fromId === 'A159' || + t.fromId === 'A159' || // 'Axxx' is the old format of categories... + t.fromId === 'C159' || // Bank transferts - cannot use "this.transactions.isTransfer()" here... (BankAccounts.isValidID(t.fromId) && BankAccounts.isValidID(t.toId)) ) {