{% extends 'base.html' %} {% load humanize %} {% block title %}月次レポート{% endblock %} {% block content %}

月次レポート

{% if error_message %}

{{ error_message }}

{% endif %}

合計

{{ report.total_amount|intcomma }} 円

店舗別合計

{% for row in report.store_totals %} {% empty %} {% endfor %}
店舗 件数 金額
{{ row.store__name|default:"未設定" }} {{ row.count }} {{ row.total|intcomma }}
対象データがありません。
{% for row in report.store_totals %}

{{ row.store__name|default:"未設定" }} の明細

{% for detail in row.details %} {% empty %} {% endfor %}
日付 利用先 金額 備考
{{ detail.use_date }} {{ detail.description }} {{ detail.amount|intcomma }} {{ detail.note }}
対象データがありません。
{% endfor %}

経費区分別合計

{% for row in report.category_totals %} {% empty %} {% endfor %}
経費区分 件数 金額
{{ row.expense_category__name|default:"未設定" }} {{ row.count }} {{ row.total|intcomma }}
対象データがありません。
{% for row in report.category_totals %}

{{ row.expense_category__name|default:"未設定" }} の明細

{% for detail in row.details %} {% empty %} {% endfor %}
日付 利用先 金額 備考
{{ detail.use_date }} {{ detail.description }} {{ detail.amount|intcomma }} {{ detail.note }}
対象データがありません。
{% endfor %}

区分別合計

{% for row in report.owner_totals %} {% empty %} {% endfor %}
区分 件数 金額
{{ row.owner_type }} {{ row.count }} {{ row.total|intcomma }}
対象データがありません。
{% for row in report.owner_totals %}

{{ row.owner_type }} の明細

{% for detail in row.details %} {% empty %} {% endfor %}
日付 利用先 金額 備考
{{ detail.use_date }} {{ detail.description }} {{ detail.amount|intcomma }} {{ detail.note }}
対象データがありません。
{% endfor %}

未分類件数

{% endblock %}