{% for row in report.rows %}
| {{ row.method | title }}{% if row.method == 'card' %} (Total){% endif %} |
{{ row.payment_count }} |
{{ row.refund_count }} |
${{ "%.2f"|format(row.payment_amount) }} |
${{ "%.2f"|format(row.refund_amount) }} |
${{ "%.2f"|format(row.fees) }} |
${{ "%.2f"|format(row.net_settlement) }} |
{% for sub in row.sub_rows %}
| {{ sub.brand }} |
{{ sub.payment_count }} |
{{ sub.refund_count }} |
${{ "%.2f"|format(sub.payment_amount) }} |
${{ "%.2f"|format(sub.refund_amount) }} |
${{ "%.2f"|format(sub.fees) }} |
${{ "%.2f"|format(sub.net_settlement) }} |
{% endfor %}
{% endfor %}
| Total Amount |
|
|
${{ "%.2f"|format(report.total_payment_amount) }} |
${{ "%.2f"|format(report.total_refund_amount) }} |
$0.00 |
${{ "%.2f"|format(report.total_net_settlement) }} |