{{ _("Sales Summary") }}
{{ _("Grand Total") }} {{ frappe.utils.fmt_money(data.grand_total or '', currency=currency) }}
{{ _("Net Total") }} {{ frappe.utils.fmt_money(data.net_total or '', currency=currency) }}
{{ _("Total Quantity") }} {{ data.total_quantity or '' }}
{{ _("Mode of Payments") }}
{% for d in data.payment_reconciliation %} {% endfor %}
{{ _("Mode of Payment") }} {{ _("Amount") }}
{{ _(d.mode_of_payment) }} {{ frappe.utils.fmt_money(d.expected_amount - d.opening_amount, currency=currency) }}
{% if data.taxes %}
{{ _("Taxes") }}
{% for d in data.taxes %} {% endfor %}
{{ _("Account") }} {{ _("Tax Rate") }} {{ _("Amount") }}
{{ d.account_head }} {{ d.rate }} % {{ frappe.utils.fmt_money(d.amount, currency=currency) }}
{% endif %}