Skip to content

Commit

Permalink
fix: Show order tax amount in customer currency on the portal (backport
Browse files Browse the repository at this point in the history
#44915) (#44923)

fix: Show order tax amount in customer currency on the portal (#44915)

(cherry picked from commit b998933)

Co-authored-by: Nabin Hait <nabinhait@gmail.com>
  • Loading branch information
mergify[bot] and nabinhait authored Dec 27, 2024
1 parent b45b77d commit 5cc9e10
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 5cc9e10

Please sign in to comment.