Invoice Created by Customer
{% if customer %}
{% endif %}
{% if not selected_customer_id %}
Please select a customer to see the results.
{% elif not data %}
No invoice found.
{% else %}
{% for row in data %}
-
{{ row.invoice_date }}
${{ row.total }}
{% empty %}
- No invoices found for this customer and date.
{% endfor %}
Total money spend: ${{ total_sum }}
{% endif %}