diff --git a/erpnext/stock/doctype/item/item.js b/erpnext/stock/doctype/item/item.js index 40ad55a92f..1af08070ec 100644 --- a/erpnext/stock/doctype/item/item.js +++ b/erpnext/stock/doctype/item/item.js @@ -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,