| {{ _("Date") }} | {{ _("Reference") }} | {{ _("Debit") }} | {{ _("Credit") }} | {{ _("Balance (Dr - Cr)") }} | {% if filters.show_remarks %}{{ _("Remarks") }} | {% endif %}||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ frappe.format(row.posting_date, 'Date') }} | {{ row.voucher_type }}
{{ row.voucher_no }} {% if not (filters.party or filters.account) %} {{ row.party or row.account }} {% endif %} <<<<<<< HEAD {{ _("Remarks") }}: {{ row.remarks }} ======= >>>>>>> b98977dc75 (fix: remove remarks if show_remarks is unchecked (#49567)) {% if row.bill_no %} {{ _("Supplier Invoice No") }}: {{ row.bill_no }} {% endif %} |
{{ frappe.utils.fmt_money(row.debit, currency=filters.presentation_currency) }} | {{ frappe.utils.fmt_money(row.credit, currency=filters.presentation_currency) }} | {{ frappe.utils.fmt_money(row.balance, currency=filters.presentation_currency) }} | {% if filters.show_remarks %}{% if row.remarks %} {{ _("Remarks:") }} {{ row.remarks }} {% endif %} | {% endif %} {% else %}{{ frappe.format(row.account, {fieldtype: "Link"}) or " " }} | {{ row.get('account', '') and frappe.utils.fmt_money(row.debit, currency=filters.presentation_currency) }} | {{ row.get('account', '') and frappe.utils.fmt_money(row.credit, currency=filters.presentation_currency) }} | {{ frappe.utils.fmt_money(row.balance, currency=filters.presentation_currency) }} | {% if filters.show_remarks %}{% if row.remarks %} {{ _("Remarks:") }} {{ row.remarks }} {% endif %} | {% endif %} {% endif %}
| 0 - 30 Days | 30 - 60 Days | 60 - 90 Days | 90 - 120 Days | Above 120 Days |
|---|---|---|---|---|
| {{ frappe.utils.fmt_money(ageing.range1, currency=filters.presentation_currency) }} | {{ frappe.utils.fmt_money(ageing.range2, currency=filters.presentation_currency) }} | {{ frappe.utils.fmt_money(ageing.range3, currency=filters.presentation_currency) }} | {{ frappe.utils.fmt_money(ageing.range4, currency=filters.presentation_currency) }} | {{ frappe.utils.fmt_money(ageing.range5, currency=filters.presentation_currency) }} |