Added the account information to the original line item selector of the journal entry form.

This commit is contained in:
2023-04-18 08:15:33 +08:00
parent b8cec8a2af
commit 928dea8312
2 changed files with 9 additions and 1 deletions

View File

@ -883,6 +883,7 @@ class JournalEntryLineItem(db.Model):
self.journal_entry.date.month,
self.journal_entry.date.day),
"" if self.description is None else self.description,
str(self.account),
format_amount(self.amount)]