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

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

(cherry picked from commit b998933ef0)

# Conflicts:
#	erpnext/templates/includes/order/order_taxes.html

* fix: resolved conflict

---------

Co-authored-by: Nabin Hait <nabinhait@gmail.com>
This commit is contained in:
mergify[bot]
2024-12-27 11:25:59 +05:30
committed by GitHub
parent 07947eb3f4
commit 78e0799a06

View File

@@ -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">
{{ doc.get_formatted("net_total") }}
{{ d.get_formatted("tax_amount") }}
</div>
</div>
</div>