{{ trans('list.amount') }} |
{{ journal|formatJournal }} |
{{ trans('list.date') }} |
{{ journal.date.formatLocalized(monthAndDayFormat) }} |
{% if journal.getMeta('interest_date') %}
{{ trans('list.interest_date') }} |
{{ journal.getMeta('interest_date').formatLocalized(monthAndDayFormat) }} |
{% endif %}
{% if journal.getMeta('book_date') %}
{{ trans('list.book_date') }} |
{{ journal.getMeta('book_date').formatLocalized(monthAndDayFormat) }} |
{% endif %}
{% if journal.getMeta('process_date') %}
{{ trans('list.process_date') }} |
{{ journal.getMeta('process_date').formatLocalized(monthAndDayFormat) }} |
{% endif %}
{% if journal.getMeta('due_date') %}
{{ trans('list.due_date') }} |
{{ journal.getMeta('due_date').formatLocalized(monthAndDayFormat) }} |
{% endif %}
{% if journal.getMeta('payment_date') %}
{{ trans('list.payment_date') }} |
{{ journal.getMeta('payment_date').formatLocalized(monthAndDayFormat) }} |
{% endif %}
{% if journal.getMeta('invoice_date') %}
{{ trans('list.invoice_date') }} |
{{ journal.getMeta('invoice_date').formatLocalized(monthAndDayFormat) }} |
{% endif %}
{{ trans('list.type') }} |
{{ journal.transactiontype.type|_ }} |
{{ trans('list.completed') }} |
{% if journal.completed %}
{{ 'yes'|_ }}
{% else %}
{{ 'no'|_ }}
{% endif %}
|
{% for budget in journal.budgets %}
{{ 'budget'|_ }} |
{{ budget.name }} |
{% endfor %}
{% for category in journal.categories %}
{{ 'category'|_ }} |
{{ category.name }} |
{% endfor %}
{% if journal.bill %}
{{ 'bill'|_ }} |
{{ journal.bill.name }} |
{% endif %}
{% if journal.tags|length > 0 %}
{{ 'tags'|_ }} |
{% for tag in journal.tags %}
{% endfor %}
|
{% endif %}
{% if journal.getMeta('internal_reference') %}
{{ trans('list.interal_reference') }} |
{{ journal.getMeta('internal_reference') }} |
{% endif %}
{% if journal.getMeta('notes') %}
{{ trans('list.notes') }} |
{{ journal.getMeta('notes')|nl2br }} |
{% endif %}