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

A list of invoices and their payments.

{% for i in invoices %} {% for p in i.invoice.transactions %} {% /for %} {% /for %}
{{ i.invoice.sentDateUsingFormatter }} Invoice {% if i.invoice.isPaid %} PAID {% else %} UNPAID {% /if %} {{i.invoice.invoiceNumber.escapedForHTML}} {{i.invoice.client.displayName.escapedForHTML}} {{i.invoice.totalCostUsingFormatter}}
{{ p.transactionDateUsingFormatter }} {{ p.transactionNote }} {{ p.transactionValueUsingFormatter }}

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