{% extends 'report_html_accounts/reports/base.html' %} {% block title %}Aged Balances{% endblock %} {% block report_header %}
Party | Current | {% for term in terms %}{{ term }} {{ unit }}s | {% endfor %}{{ terms[-1] }}+ {{ unit }}s | Total | ||
---|---|---|---|---|---|---|
{{ party.rec_name }} | {{ (party.receivable_today - party.payable_today)|currencyformat(currency_code) }} | {{ balances[party.id]['term1']|currencyformat(currency_code) }} | {{ balances[party.id]['term2']|currencyformat(currency_code) }} | {{ balances[party.id]['term3']|currencyformat(currency_code) }} | {{ balances[party.id]['older']|currencyformat(currency_code)}} | {{ (party.receivable - party.payable)|currencyformat(currency_code) }} |
Total | {{ totals['current']|currencyformat(currency_code) }} | {{ totals['term1']|currencyformat(currency_code) }} | {{ totals['term2']|currencyformat(currency_code) }} | {{ totals['term3']|currencyformat(currency_code) }} | {{ totals['older']|currencyformat(currency_code) }} | {{ totals['net']|currencyformat(currency_code) }} |