Skip to content

Commit

Permalink
chore: use consistent quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarvora committed Jul 17, 2023
1 parent 305c379 commit bccb718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erpnext/templates/includes/itemised_tax_breakup.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{% for item, taxes in itemised_tax.items() %}
<tr>
<td>{{ item }}</td>
<td class='text-right'>
<td class="text-right">
{% if doc.get('is_return') %}
{{ frappe.utils.fmt_money((itemised_taxable_amount.get(item, 0))|abs, None, doc.currency) }}
{% else %}
Expand All @@ -25,7 +25,7 @@
{% for tax_account in tax_accounts %}
{% set tax_details = taxes.get(tax_account) %}
{% if tax_details %}
<td class='text-right'>
<td class="text-right">
{% if tax_details.tax_rate or not tax_details.tax_amount %}
({{ tax_details.tax_rate }}%)
{% endif %}
Expand Down

0 comments on commit bccb718

Please sign in to comment.