Taxes Invoiced
{% if report.startDate %}
(From {{report.startDateUsingFormatter}}
{% if report.endDate %}
To {{report.endDateUsingFormatter}})
{% else %}
To Present)
{% /if %}
{% /if %}
Month |
Tax1 |
Tax2 |
{% decimalMath totalCostTax1 = 0 %}
{% decimalMath totalCostTax2 = 0 %}
{% for reportEntry in monthlyTaxes %}
{% decimalMath totalCostTax1 = totalCostTax1 + reportEntry.monthlyTaxesInvoicedForTaxSlot1 %}
{% decimalMath totalCostTax2 = totalCostTax2 + reportEntry.monthlyTaxesInvoicedForTaxSlot2 %}
{{ reportEntry.monthAsString }} {{ reportEntry.yearAsInt }} |
{{ reportEntry.monthlyTaxesInvoicedForTaxSlot1UsingFormatter }} |
{{ reportEntry.monthlyTaxesInvoicedForTaxSlot2UsingFormatter }} |
{% /for %}
Totals: |
{{totalCostTax1 | currency_format}} |
{{totalCostTax2 | currency_format}} |
Reported generated on {% now | date_format: "MMM dd yyyy 'at' HH:mm:ss" %}.