From 62ce218fc28f3a6b41cb95969c96ecdf90841df4 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Fri, 6 Oct 2017 11:16:46 +0530 Subject: [PATCH] Show total instead of net total --- erpnext/selling/page/point_of_sale/point_of_sale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/page/point_of_sale/point_of_sale.js b/erpnext/selling/page/point_of_sale/point_of_sale.js index e9ff7b91320..c04224499e4 100644 --- a/erpnext/selling/page/point_of_sale/point_of_sale.js +++ b/erpnext/selling/page/point_of_sale/point_of_sale.js @@ -523,7 +523,7 @@ class POSCart { // Update totals this.$taxes_and_totals.find('.net-total') - .html(format_currency(this.frm.doc.net_total, currency)); + .html(format_currency(this.frm.doc.total, currency)); // Update taxes const taxes_html = this.frm.doc.taxes.map(tax => {