Skip to content
Snippets Groups Projects
Unverified Commit ab97a3fb authored by youngcw's avatar youngcw Committed by GitHub
Browse files

import locked transactions ynab4 (#2455)

* import locked transactions

* note, lint
parent 8b15c8cc
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,10 @@ async function importTransactions(
: getCategory(transaction.categoryId),
date: transaction.date,
notes: transaction.memo || null,
cleared: transaction.cleared === 'Cleared',
cleared:
transaction.cleared === 'Cleared' ||
transaction.cleared === 'Reconciled',
reconciled: transaction.cleared === 'Reconciled',
...transferProperties(transaction),
subtransactions:
......
---
category: Bugfix
authors: [youngcw]
---
Import reconciled transactions from ynab4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment