38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<div class="tax-break-up" style="overflow-x: auto;">
|
|
<table class="table table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
{% for key in headers %}
|
|
{% if loop.first %}
|
|
<th class="text-left">{{ key }}</th>
|
|
{% else %}
|
|
<th class="text-right">{{ key }}</th>
|
|
{% endif %}
|
|
{% endfor%}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item, taxes in itemised_tax.items() %}
|
|
<tr>
|
|
<td>{{ item }}</td>
|
|
<td class='text-right'>
|
|
{{ frappe.utils.fmt_money(itemised_taxable_amount.get(item, 0), None, currency) }}
|
|
</td>
|
|
{% for tax_account in tax_accounts %}
|
|
{% set tax_details = taxes.get(tax_account) %}
|
|
{% if tax_details %}
|
|
<td class='text-right'>
|
|
{% if tax_details.tax_rate or not tax_details.tax_amount %}
|
|
({{ tax_details.tax_rate }}%)
|
|
{% endif %}
|
|
{{ frappe.utils.fmt_money(tax_details.tax_amount / conversion_rate, None, currency) }}
|
|
</td>
|
|
{% else %}
|
|
<td></td>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div> |