Merge pull request #11092 from rohitwaghchaure/pos_total_issue

Show total instead of net total
This commit is contained in:
rohitwaghchaure 2017-10-06 11:17:24 +05:30 committed by GitHub
commit 6f5853b97a

View File

@ -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 => {