Expense Summary
{% if report.startDate %}
(From {{report.startDateUsingFormatter}}
{% if report.endDate %}
To {{report.endDateUsingFormatter}})
{% else %}
To Present)
{% /if %}
{% /if %}
Description |
Date |
Amount |
{% decimalMath catAmount = 0 %}
{% decimalMath totAmount = 0 %}
{% for cat in expenseCategories %}
{% for entry in expenses %}
{% if cat.name isequaltostring entry.expenseCategoryName %}
{{ entry.note }} |
{{ entry.dateUsingFormatter }} |
{{ entry.costUsingFormatter }} |
{% decimalMath catAmount = catAmount + entry.cost %}
{% decimalMath totAmount = totAmount + entry.cost %}
{% /if %}
{% /for %}
{{ cat.name }} |
|
{{catAmount | currency_format}} |
{% decimalMath catAmount = 0 %}
{% /for %}
Total: |
{{totAmount | currency_format}} |
Reported generated on {% now | date_format: "MMM dd yyyy 'at' HH:mm:ss" %}.