From 89e89de9616e4e4224e532d9e63933b18577c3a4 Mon Sep 17 00:00:00 2001 From: Babuuu <59009890+aynugek@users.noreply.github.com> Date: Tue, 15 Aug 2023 06:24:06 +0300 Subject: [PATCH] Fix tax amount in customer portal (#36453) The net total is the value that is currently being displayed instead of the tax amount. --- erpnext/templates/includes/order/order_taxes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/templates/includes/order/order_taxes.html b/erpnext/templates/includes/order/order_taxes.html index 0060ab39cc..d7b9620fa0 100644 --- a/erpnext/templates/includes/order/order_taxes.html +++ b/erpnext/templates/includes/order/order_taxes.html @@ -19,7 +19,7 @@ {{ d.description }}
- {{ doc.get_formatted("net_total") }} + {{ d.get_formatted("base_tax_amount") }}