fix: Show order tax amount in customer currency on the portal (#44915)
This commit is contained in:
@@ -12,14 +12,14 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% for d in doc.taxes %}
|
{% for d in doc.taxes %}
|
||||||
{% if d.base_tax_amount %}
|
{% if d.tax_amount %}
|
||||||
<div class="order-taxes w-100 mt-5">
|
<div class="order-taxes w-100 mt-5">
|
||||||
<div class="col-4 d-flex border-btm pb-5">
|
<div class="col-4 d-flex border-btm pb-5">
|
||||||
<div class="item-grand-total col-8">
|
<div class="item-grand-total col-8">
|
||||||
{{ d.description }}
|
{{ d.description }}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-grand-total col-4 text-right pr-0">
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user