mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-21 11:15:10 +00:00
fix(ux): set route options for new Batch
This commit is contained in:
@@ -123,6 +123,15 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe
|
|||||||
this.frm.set_query("batch_no", "items", function(doc, cdt, cdn) {
|
this.frm.set_query("batch_no", "items", function(doc, cdt, cdn) {
|
||||||
return me.set_query_for_batch(doc, cdt, cdn);
|
return me.set_query_for_batch(doc, cdt, cdn);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let batch_field = this.frm.get_docfield('items', 'batch_no');
|
||||||
|
if (batch_field) {
|
||||||
|
batch_field.get_route_options_for_new_doc = (row) => {
|
||||||
|
return {
|
||||||
|
'item': row.doc.item_code
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(
|
if(
|
||||||
|
|||||||
@@ -101,6 +101,14 @@ frappe.ui.form.on('Stock Entry', {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let batch_field = frm.get_docfield('items', 'batch_no');
|
||||||
|
if (batch_field) {
|
||||||
|
batch_field.get_route_options_for_new_doc = (row) => {
|
||||||
|
return {
|
||||||
|
'item': row.doc.item_code
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
frm.add_fetch("bom_no", "inspection_required", "inspection_required");
|
frm.add_fetch("bom_no", "inspection_required", "inspection_required");
|
||||||
erpnext.accounts.dimensions.setup_dimension_filters(frm, frm.doctype);
|
erpnext.accounts.dimensions.setup_dimension_filters(frm, frm.doctype);
|
||||||
|
|||||||
Reference in New Issue
Block a user