From 525900c5c198cbfd5a2af651e114218302610222 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Wed, 7 Sep 2016 15:01:08 +0530 Subject: [PATCH] [Fix] Item level taxes are not getting calculated in POS --- erpnext/accounts/page/pos/pos.js | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/accounts/page/pos/pos.js b/erpnext/accounts/page/pos/pos.js index 5947bde878..9a121267b4 100644 --- a/erpnext/accounts/page/pos/pos.js +++ b/erpnext/accounts/page/pos/pos.js @@ -614,6 +614,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({ this.child.batch_no = this.item_batch_no[this.child.item_code]; this.child.serial_no = (this.item_serial_no[this.child.item_code] ? this.item_serial_no[this.child.item_code][0] : ''); + this.child.item_tax_rate = this.items[0].taxes; }, update_paid_amount_status: function(update_paid_amount){