brotherton-erpnext/erpnext/templates/includes/order/order_taxes.html

23 lines
754 B
HTML
Raw Normal View History

2015-09-16 13:22:52 +00:00
{% if doc.taxes %}
<div class="row tax-net-total-row">
2016-04-22 13:23:21 +00:00
<div class="col-xs-8 text-right">{{ _("Net Total") }}</div>
<div class="col-xs-4 text-right">
2015-09-16 13:22:52 +00:00
{{ doc.get_formatted("net_total") }}</div>
</div>
{% endif %}
{% for d in doc.taxes %}
2016-04-22 13:23:21 +00:00
<div class="row tax-row">
<div class="col-xs-8 text-right">{{ d.description }}</div>
<div class="col-xs-4 text-right">
2015-09-16 13:22:52 +00:00
{{ d.get_formatted("base_tax_amount") }}</div>
</div>
{% endfor %}
<div class="row tax-grand-total-row">
2016-05-12 09:52:59 +00:00
<div class="col-xs-8 text-right text-uppercase h6 text-muted">{{ _("Grand Total") }}</div>
2016-04-22 13:23:21 +00:00
<div class="col-xs-4 text-right">
2016-05-12 09:52:59 +00:00
<span class="tax-grand-total bold">
{{ doc.get_formatted("grand_total") }}
</span>
</div>
2015-09-16 13:22:52 +00:00
</div>