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

This commit is contained in:
Nabin Hait
2024-12-26 18:18:35 +05:30
committed by GitHub
parent ac26622d6e
commit b998933ef0

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