Balance Due Report

Date Filter

{% csrf_token %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Balance Due Report

{% for i in customer_data %} {% for invoice in i.invoices %} {% endfor %} {% endfor %}
Invoice Id Description Total Balance Date
{{ i.customer.first_name }} {{ i.customer.last_name }}
{{invoice.id}} {{invoice.description}} ${{invoice.total}} ${{ invoice.balance }} {{invoice.created_at}}
Customer Total: ${{i.total}} ${{i.balance}}