Transaction Summary {% if report.startDate %} (From {{report.startDateUsingFormatter}} {% if report.endDate %} To {{report.endDateUsingFormatter}}) {% else %} To Present) {% /if %} {% /if %}

{% decimalMath totalCharges = 0 %} {% decimalMath totalPayments = 0 %} {% for entry in transactions %} {% if entry.transaction.isCharge %} {% decimalMath totalCharges = totalCharges + entry.transaction.transactionValue %} {% else %} {% decimalMath totalPayments = totalPayments + entry.transaction.transactionValue %} {% /if %} {% /for %}
Client Tranaction Date Invoiced Payment
{{ entry.transaction.client.displayName.escapedForHTML }} {{ entry.transaction.transactionDateUsingFormatter }}{{ entry.transaction.transactionValueUsingFormatter }} - - {{ entry.transaction.transactionValueUsingFormatter }}
Total: {{totalCharges | currency_format}} {{totalPayments | currency_format}}

Reported generated on {% now | date_format: "MMM dd yyyy 'at' HH:mm:ss" %}.