{% extends "base.html" %} {% block title %}JE #{{ entry.id }}{% endblock %} {% block body %}

Journal Entry #{{ entry.id }}

{{ entry.entry_date }} · period {{ entry.period }} ({{ entry.pstatus }}) · source {{ entry.source }} · {{ entry.status }} {% if entry.reverses_entry_id %}· reverses #{{ entry.reverses_entry_id }}{% endif %} {% if entry.reversed_by_entry_id %}· reversed by #{{ entry.reversed_by_entry_id }}{% endif %}

{{ entry.memo }}

{% for l in lines %} {% endfor %}
AccountDebitCreditCost centerService linePersonMemo
{{ l.code }} {{ l.name }} {% if l.debit_cents %}{{ l.debit_cents|c }}{% endif %} {% if l.credit_cents %}{{ l.credit_cents|c }}{% endif %} {{ l.cc or '' }}{{ l.sl or '' }}{{ l.person or '' }}{{ l.memo }}
{% if entry.status == 'posted' %}
Reason

Posted entries are immutable. Corrections are made by reversal.

{% endif %}

← back to journal

{% endblock %}