| Netto{% if p.recurring_summary %} (einmalig){% endif %} | {{ p.currency }} {{ "%.2f"|format(p.net_total) }} |
{% for tax in p.taxes %}| {{ tax.description or tax.account_head or 'Steuern' }} | {{ p.currency }} {{ "%.2f"|format(tax.tax_amount) }} |
{% endfor %}
| Steuern gesamt | {{ p.currency }} {{ "%.2f"|format(p.total_taxes_and_charges) }} |
| Total{% if p.recurring_summary %} (einmalig){% endif %} | {{ p.currency }} {{ "%.2f"|format(p.grand_total) }} |
{% for grp in p.recurring_summary %}
| {{ grp.frequency }} netto | {{ p.currency }} {{ "%.2f"|format(grp.net_total) }} |
| {{ grp.frequency }} Steuern | {{ p.currency }} {{ "%.2f"|format(grp.total_taxes_and_charges) }} |
| {{ grp.frequency }} Total | {{ p.currency }} {{ "%.2f"|format(grp.grand_total) }} |
{% endfor %}