[Fix] User not able to search an Item if description is null in the item (#9793)

This commit is contained in:
rohitwaghchaure 2017-07-12 15:01:56 +05:30 committed by Makarand Bauskar
parent 1efb05233c
commit 860144feb7

View File

@ -1078,7 +1078,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
} else if (item.barcode == me.serach_item.$input.val()) { } else if (item.barcode == me.serach_item.$input.val()) {
search_status = false; search_status = false;
return item.barcode == me.serach_item.$input.val(); return item.barcode == me.serach_item.$input.val();
} else if (reg.test(item.item_code.toLowerCase()) || reg.test(item.description.toLowerCase()) || } else if (reg.test(item.item_code.toLowerCase()) || (item.description && reg.test(item.description.toLowerCase())) ||
reg.test(item.item_name.toLowerCase()) || reg.test(item.item_group.toLowerCase())) { reg.test(item.item_name.toLowerCase()) || reg.test(item.item_group.toLowerCase())) {
return true return true
} }
@ -1351,7 +1351,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
this.child.item_name = this.items[0].item_name; this.child.item_name = this.items[0].item_name;
this.child.stock_uom = this.items[0].stock_uom; this.child.stock_uom = this.items[0].stock_uom;
this.child.brand = this.items[0].brand; this.child.brand = this.items[0].brand;
this.child.description = this.items[0].description; this.child.description = this.items[0].description || this.items[0].item_name;
this.child.discount_percentage = 0.0; this.child.discount_percentage = 0.0;
this.child.qty = 1; this.child.qty = 1;
this.child.item_group = this.items[0].item_group; this.child.item_group = this.items[0].item_group;