Revert "Prompt for mandatory batch number in POS (#8928)"

This reverts commit ce9ac7885e15f9ed511b29e70f579a46ffb2799f.
This commit is contained in:
Nabin Hait 2017-05-24 17:31:58 +05:30
parent 54fcf85317
commit b3d4326dcc

View File

@ -1763,13 +1763,9 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
mandatory_batch_no: function () {
var me = this;
if (this.items[0].has_batch_no && !this.item_batch_no[this.items[0].item_code]) {
frappe.prompt([
{'fieldname': 'batch', 'fieldtype': 'Select', 'label': __('Batch No'), 'reqd': 1, 'options':this.batch_no_data[this.items[0].item_code]}
],
function(values){
me.item_batch_no[me.items[0].item_code] = values.batch;
},
__('Select Batch No'))
frappe.throw(__(repl("Error: Batch no is mandatory for item %(item)s", {
'item': this.items[0].item_code
})))
}
},