Skip to content

Commit

Permalink
fix: Show order tax amount in customer currency on the portal (#44915)
Browse files Browse the repository at this point in the history
  • Loading branch information
nabinhait authored Dec 26, 2024
1 parent ac26622 commit b998933
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erpnext/templates/includes/order/order_taxes.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
{% endif %}

{% for d in doc.taxes %}
{% if d.base_tax_amount %}
{% if d.tax_amount %}
<div class="order-taxes w-100 mt-5">
<div class="col-4 d-flex border-btm pb-5">
<div class="item-grand-total col-8">
{{ d.description }}
</div>
<div class="item-grand-total col-4 text-right pr-0">
{{ d.get_formatted("base_tax_amount") }}
{{ d.get_formatted("tax_amount") }}
</div>
</div>
</div>
Expand Down

0 comments on commit b998933

Please sign in to comment.