{% extends "./layout/default" %} {% block breadcrumbs %} {{ Breadcrumbs.render(Route.getCurrentRoute.getName, transactionGroup) }} {% endblock %} {% block content %}
{{ trans('list.type') }} | {{ first.transactiontype.type|_ }} |
{{ trans('list.description') }} | {% if splits == 1 %} {{ first.description }} {% else %} {{ transactionGroup.title }} {% endif %} |
{{ trans('list.date') }} | {{ first.date.formatLocalized(dateTimeFormat) }} |
{{ 'source_accounts'|_ }} | {% for journal in groupArray.transactions %} {% if 'Cash account' == journal.source_type %} ({{ 'cash'|_ }}) {% else %} {{ journal.source_name }} {% endif %} {% if loop.index0 != groupArray.transactions|length -1 %}, {% endif %} {% endfor %} |
{{ 'destination_accounts'|_ }} | {% for journal in groupArray.transactions %} {% if 'Cash account' == journal.destination_type %} ({{ 'cash'|_ }}) {% else %} {{ journal.destination_name }} {% endif %} {% if loop.index0 != groupArray.transactions|length -1 %}, {% endif %} {% endfor %} |
{{ 'total_amount'|_ }} | {% for amount in amounts %} {% if type == 'Withdrawal' or type == 'Deposit' %} {{ formatAmountBySymbol(amount.amount*-1,amount.symbol, amount.decimal_places) }}{% if loop.index0 != amounts|length -1 %}, {% endif %} {% elseif type == 'Transfer' %} {{ formatAmountBySymbol(amount.amount, amount.symbol, amount.decimal_places, false) }}{% if loop.index0 != amounts|length -1 %}, {% endif %} {% endif %} {% endfor %} |
{% if 'Cash account' == journal.source_type %} ({{ 'cash'|_ }}) {% else %} {{ journal.source_name }} → {% endif %} {% if type == 'Withdrawal' or type == 'Deposit' %} {{ formatAmountBySymbol(journal.amount*-1, journal.currency_symbol, journal.currency_decimal_places) }} {% elseif type == 'Transfer' or type == 'Opening balance' %} {{ formatAmountBySymbol(journal.amount, journal.currency_symbol, journal.currency_decimal_places, false) }} {% endif %} {% if null != journal.foreign_amount %} {% if type == 'Withdrawal' or type == 'Deposit' %} ({{ formatAmountBySymbol(journal.foreign_amount*-1, journal.foreign_currency_symbol, journal.foreign_currency_decimal_places) }}) {% elseif type == 'Transfer' %} ({{ formatAmountBySymbol(journal.foreign_amount, journal.foreign_currency_symbol, journal.foreign_currency_decimal_places, false) }}) {% endif %} {% endif %} → {% if 'Cash account' == journal.destination_type %} ({{ 'cash'|_ }}) {% else %} {{ journal.destination_name }} {% endif %} | |
{{ 'category'|_ }} | {{ journal.category_name }} |
{{ 'budget'|_ }} | {{ journal.budget_name }} |
{{ 'bill'|_ }} | {{ journal.bill_name }} |
{{ trans('list.'~dateField) }} | {{ journalGetMetaDate(journal.transaction_journal_id, dateField).formatLocalized(monthAndDayFormat) }} |
{{ trans('list.'~metaField) }} | {{ journalGetMetaField(journal.transaction_journal_id, metaField) }} |
{{ trans('list.notes') }} | {{ journal.notes|markdown }} |
{{ 'tags'|_ }} |
{% for tag in journal.tags %}
{{ tag }}{% endfor %} |
{{ link.link }} "{{ link.description }}" ({{ link.amount|raw }}) {% if '' != link.foreign_amount %} ({{ link.foreign_amount|raw }}) {% endif %} |
{% if attachment.file_exists %}
{% if attachment.title %}
{{ attachment.title }}
{% else %}
{{ attachment.filename }}
{% endif %}
({{ attachment.size|filesize }})
{% if null != attachment.notes and '' != attachment.notes %}
{{ attachment.notes|markdown }}
{% endif %}
{% endif %}
{% if not attachment.file_exists %}
{% if attachment.title %}
{{ attachment.title }}
{% else %}
{{ attachment.filename }}
{% endif %}
{{ 'attachment_not_found'|_ }} {% endif %} |
{{ event.amount|raw }} | {{ event.piggy }} |