Rate and amount in a single row in tax breakup

This commit is contained in:
Nabin Hait 2017-09-12 15:45:39 +05:30
parent d54d6bc572
commit c9e96c15af

View File

@ -23,7 +23,7 @@
{% if tax_details %}
<td class='text-right'>
{% if tax_details.tax_rate or not tax_details.tax_amount %}
({{ tax_details.tax_rate }}%)<br>
({{ tax_details.tax_rate }}%)
{% endif %}
{{ frappe.utils.fmt_money(tax_details.tax_amount, None, company_currency) }}
</td>