Skip to content

Commit

Permalink
Closing Entry Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
elarroba committed Sep 1, 2023
1 parent 6b3d367 commit 08f5726
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions django_ledger/models/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ def get_closing_entry_digest(self,
by_unit=True,
by_activity=True,
as_io_digest=True,
signs=False,
**kwargs
)
ce_data = io_digest.get_closing_entry_data()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,24 @@
{% include 'django_ledger/closing_entry/includes/card_closing_entry.html' with closing_entry_model=object %}
</div>
</div>
<div class="columns">
<div class=" column is-12">
{% include 'django_ledger/includes/card_markdown.html' with style='card_1' title='Closing Entry Notes' notes_html=closing_entry_model.notes_html %}
</div>
</div>
<div class="columns">
<div class="column">
{% closing_entry_txs_table closing_entry_txs_qs %}
<div class="card">
<div class="card-header">
<div class="card-header-title">
<h1 class="is-size-3 has-text-weight-light">{% trans 'Closing Entry Transactions' %}</h1>
</div>
</div>
<div class="card-content">
{% closing_entry_txs_table closing_entry_txs_qs %}
</div>

</div>
</div>
</div>

Expand Down

0 comments on commit 08f5726

Please sign in to comment.