Merge pull request #17289 from sunhoww/patch-1

fix: scan_barcode field adding invalid items
This commit is contained in:
Nabin Hait
2019-04-19 13:07:06 +05:30
committed by GitHub

View File

@@ -290,7 +290,7 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({
args: { search_value: this.frm.doc.scan_barcode } args: { search_value: this.frm.doc.scan_barcode }
}).then(r => { }).then(r => {
const data = r && r.message; const data = r && r.message;
if (!data) { if (!data || Object.keys(data).length === 0) {
scan_barcode_field.set_new_description(__('Cannot find Item with this barcode')); scan_barcode_field.set_new_description(__('Cannot find Item with this barcode'));
return; return;
} }