Skip to content
Snippets Groups Projects
Unverified Commit 8b34ba39 authored by David Kus's avatar David Kus Committed by GitHub
Browse files

Fixing import of reconciled split transactions (#2543)

* Fixing import of reconciled split transactions

* Adding release note
parent 2df774d9
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,7 @@ export function makeChild<T extends GenericTransactionEntity>(
account: parent.account,
date: parent.date,
cleared: parent.cleared != null ? parent.cleared : null,
reconciled: 'reconciled' in data ? data.reconciled : parent.reconciled,
starting_balance_flag:
parent.starting_balance_flag != null
? parent.starting_balance_flag
......
---
category: Bugfix
authors: [davidkus]
---
When importing reconciled split transaction, the resulting sub-transactions is also marked as reconciled.
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