Merge pull request #9382 from nick9822/nick9822-patch-1
Resetting batch and serial nos checks
This commit is contained in:
commit
b37eb10421
@ -121,7 +121,15 @@ frappe.ui.form.on("Item", {
|
|||||||
if(!frm.doc.description)
|
if(!frm.doc.description)
|
||||||
frm.set_value("description", frm.doc.item_code);
|
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) {
|
copy_from_item_group: function(frm) {
|
||||||
return frm.call({
|
return frm.call({
|
||||||
doc: frm.doc,
|
doc: frm.doc,
|
||||||
|
Loading…
Reference in New Issue
Block a user