From 2ac8c92e7fc30a50cf6b84bfea3cc334e6fa64bd Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Mon, 27 Jan 2025 13:02:24 +0530 Subject: [PATCH] fix: currency decimal on POS Past Order List (#45524) * fix: currency decimal on POS * fix: removed precision --- erpnext/selling/page/point_of_sale/pos_past_order_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/page/point_of_sale/pos_past_order_list.js b/erpnext/selling/page/point_of_sale/pos_past_order_list.js index ab2fd3e1547..dda44f25299 100644 --- a/erpnext/selling/page/point_of_sale/pos_past_order_list.js +++ b/erpnext/selling/page/point_of_sale/pos_past_order_list.js @@ -110,7 +110,7 @@ erpnext.PointOfSale.PastOrderList = class {
-
${format_currency(invoice.grand_total, invoice.currency, 0) || 0}
+
${format_currency(invoice.grand_total, invoice.currency) || 0}
${posting_datetime}