* 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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user