Fixed and set the txn_type to the form in the make_txn_form_from_model() utility in the accounting application.
This commit is contained in:
parent
1d79e970c4
commit
9a9f715349
@ -498,6 +498,7 @@ def make_txn_form_from_model(txn_type, txn):
|
|||||||
{x: str(getattr(txn, x)) for x in ["date", "notes"]
|
{x: str(getattr(txn, x)) for x in ["date", "notes"]
|
||||||
if getattr(txn, x) is not None})
|
if getattr(txn, x) is not None})
|
||||||
form.transaction = txn if txn.pk is not None else None
|
form.transaction = txn if txn.pk is not None else None
|
||||||
|
form.txn_type = txn_type
|
||||||
records = []
|
records = []
|
||||||
if txn_type != "income":
|
if txn_type != "income":
|
||||||
records = records + txn.debit_records
|
records = records + txn.debit_records
|
||||||
|
Loading…
Reference in New Issue
Block a user