Resetting batch and serial nos checks

This commit is contained in:
nick9822 2017-06-20 17:02:55 +05:30 committed by GitHub
parent d59df5dd5d
commit 43a48fd2bc

View File

@ -121,7 +121,15 @@ frappe.ui.form.on("Item", {
if(!frm.doc.description)
frm.set_value("description", frm.doc.item_code);
},
is_stock_item: function(frm) {
if(!frm.doc.is_stock_item) {
frm.set_value("has_batch_no", 0);
frm.set_value("create_new_batch", 0);
frm.set_value("has_serial_no", 0);
}
},
copy_from_item_group: function(frm) {
return frm.call({
doc: frm.doc,