{% load base_filters %} {% load i18n %}

Totals

{% for item in results %} {% endfor %}
App Count Total Payments Balance
{{ item.object_type }} {{ item.count }} invoices {{ item.total__sum|format_currency }} {{ item.payments_credits__sum|format_currency }} {{ item.balance__sum|format_currency }}
TOTAL {{ totals.count }} invoices {{ totals.total|format_currency }} {{ totals.payments_credits|format_currency }} {{ totals.balance|format_currency }}

The following apps had data for the selected date range and are included in this report. Click to jump to a specific section:

    {% for item in results %}
  1. {{ item.object_type }}
  2. {% endfor %}
{% for item in results %}

{{ forloop.counter }}. {{ item.object_type }} Back to Top

Count Total Payments Balance
{{ item.count }} invoices {{ item.total__sum|format_currency }} {{ item.payments_credits__sum|format_currency }} {{ item.balance__sum|format_currency }}

Invoices for {{ item.object_type }} sorted by Date

{% for invoice in item.invoices %} invoice.total %} pay-extra{% endif %} {% if invoice.payments_credits == invoice.total and invoice.balance == invoice.total and invoice.total > 0 %} all-match{% endif %}"> {% endfor %}
ID Date Status First Name Last Name Phone Email Title Total Payments Balance
{{ invoice.id }} {{ invoice.create_dt|date:"SHORT_DATE_FORMAT" }} {% if invoice.is_tendered %}{% trans 'tendered' %}{% else %}{% trans 'estimate' %}{% endif %} {{ invoice.bill_to_first_name }} {{ invoice.bill_to_last_name }} {{ invoice.bill_to_phone }} {{ invoice.bill_to_email }} {% if invoice.get_object.event.pk %} {{ invoice.get_object.event.pk }} - {{ invoice.get_object.event.title|truncatewords:"3" }} {% elif invoice.get_object.membership_type.pk %} {{ invoice.get_object.membership_type.name }} {% elif invoice.title %}{{ invoice.title }}{% endif %} {{ invoice.total|format_currency }} {{ invoice.payments_credits|format_currency }} {{ invoice.balance|format_currency }}
ID Date Status First Name Last Name Phone Email Title Total Payments Balance
Summary of {{ item.count }} invoices for {{ item.object_type }} {{ item.total__sum|format_currency }} {{ item.payments_credits__sum|format_currency }} {{ item.balance__sum|format_currency }}
{% endfor %}