brotherton-erpnext/erpnext/templates/includes/order/order_taxes.html
Faris Ansari 5f8b358fd4
Website: Product Configurator and Bootstrap 4 (#15965)
- Refactored Homepage with customisable Hero Section
- New Homepage Section to add content on Homepage as cards or using Custom HTML
- Products page at "/all-products" with customisable filters
- Item Configure dialog to find an Item Variant filtered by attribute values
- Contact Us dialog on Item page
- Customisable Item page content using the Website Content field
2019-03-19 11:48:32 +05:30

33 lines
568 B
HTML

{% if doc.taxes %}
<tr>
<td class="text-right" colspan="2">
{{ _("Net Total") }}
</td>
<td class="text-right">
{{ doc.get_formatted("net_total") }}
</td>
</tr>
{% endif %}
{% 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 %}
{% endfor %}
<tr>
<th class="text-right" colspan="2">
{{ _("Grand Total") }}
</th>
<th class="text-right">
{{ doc.get_formatted("grand_total") }}
</th>
</tr>