From dc353220d45da07edaa3494e51c25934418b8ea9 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 6 Jan 2025 12:27:13 +0530 Subject: [PATCH] fix: show tax amount in customer currency --- webshop/templates/includes/order/order_taxes.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webshop/templates/includes/order/order_taxes.html b/webshop/templates/includes/order/order_taxes.html index d7b9620fa0..42f46ac8d1 100644 --- a/webshop/templates/includes/order/order_taxes.html +++ b/webshop/templates/includes/order/order_taxes.html @@ -12,14 +12,14 @@ {% endif %} {% for d in doc.taxes %} - {% if d.base_tax_amount %} + {% if d.tax_amount %}
{{ d.description }}
- {{ d.get_formatted("base_tax_amount") }} + {{ d.get_formatted("tax_amount") }}