Merge pull request #36163 from resilient-tech/consistent-quotes

This commit is contained in:
Sagar Vora 2023-07-17 15:46:40 +05:30 committed by GitHub
commit 3b246fd7e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@
{% for item, taxes in itemised_tax.items() %} {% for item, taxes in itemised_tax.items() %}
<tr> <tr>
<td>{{ item }}</td> <td>{{ item }}</td>
<td class='text-right'> <td class="text-right">
{% if doc.get('is_return') %} {% if doc.get('is_return') %}
{{ frappe.utils.fmt_money((itemised_taxable_amount.get(item, 0))|abs, None, doc.currency) }} {{ frappe.utils.fmt_money((itemised_taxable_amount.get(item, 0))|abs, None, doc.currency) }}
{% else %} {% else %}
@ -25,7 +25,7 @@
{% for tax_account in tax_accounts %} {% for tax_account in tax_accounts %}
{% set tax_details = taxes.get(tax_account) %} {% set tax_details = taxes.get(tax_account) %}
{% if tax_details %} {% if tax_details %}
<td class='text-right'> <td class="text-right">
{% if tax_details.tax_rate or not tax_details.tax_amount %} {% if tax_details.tax_rate or not tax_details.tax_amount %}
({{ tax_details.tax_rate }}%) ({{ tax_details.tax_rate }}%)
{% endif %} {% endif %}