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

33 lines
568 B
HTML
Raw Normal View History

2015-09-16 13:22:52 +00:00
{% if doc.taxes %}
<tr>
<td class="text-right" colspan="2">
{{ _("Net Total") }}
</td>
<td class="text-right">
{{ doc.get_formatted("net_total") }}
</td>
</tr>
2015-09-16 13:22:52 +00:00
{% endif %}
2015-09-16 13:22:52 +00:00
{% for d in doc.taxes %}
{% if d.base_tax_amount > 0 %}
<tr>
<td class="text-right" colspan="2">
{{ d.description }}
</td>
<td class="text-right">
{{ d.get_formatted("base_tax_amount") }}
</td>
</tr>
{% endif %}
2015-09-16 13:22:52 +00:00
{% endfor %}
<tr>
<th class="text-right" colspan="2">
{{ _("Grand Total") }}
</th>
<th class="text-right">
{{ doc.get_formatted("grand_total") }}
</th>
</tr>