diff --git a/erpnext/accounts/page/pos/pos.js b/erpnext/accounts/page/pos/pos.js index c02100029b..8d9efeaf12 100644 --- a/erpnext/accounts/page/pos/pos.js +++ b/erpnext/accounts/page/pos/pos.js @@ -1339,7 +1339,8 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({ projected_qty: d.projected_qty, rate: format_number(d.rate, me.frm.doc.currency), enabled: me.pos_profile_data["allow_user_to_edit_rate"] ? true : false, - amount: format_currency(d.amount, me.frm.doc.currency) + amount: format_currency(d.amount, me.frm.doc.currency), + selected_class: (me.item_code == d.item_code) ? "active" : "" })).appendTo($items); }); diff --git a/erpnext/public/js/pos/pos_bill_item_new.html b/erpnext/public/js/pos/pos_bill_item_new.html index 80a33d49fc..cb626cefce 100644 --- a/erpnext/public/js/pos/pos_bill_item_new.html +++ b/erpnext/public/js/pos/pos_bill_item_new.html @@ -1,4 +1,4 @@ -