diff --git a/src/accounting/models.py b/src/accounting/models.py index 2a6b98b..a96ea13 100644 --- a/src/accounting/models.py +++ b/src/accounting/models.py @@ -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)] diff --git a/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html b/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html index c3560e8..30219d2 100644 --- a/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html +++ b/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html @@ -38,7 +38,14 @@ First written: 2023/2/25