{% if merchant_logo_url %}logo
{% endif %} Payment Methods Report
{% if merchant_name %}{{ merchant_name }}
{% endif %} Generated: {{ generated_at }}
{% for row in report.rows %} {% for sub in row.sub_rows %} {% endfor %} {% endfor %}
Method of Payment Payments Refunds Payment Amount Refund Amount Fees Net Settlement
{{ 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) }}
   {{ 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) }}
Total Amount ${{ "%.2f"|format(report.total_payment_amount) }} ${{ "%.2f"|format(report.total_refund_amount) }} $0.00 ${{ "%.2f"|format(report.total_net_settlement) }}