Sales BOM Parent Item search - Fixes #1544

This commit is contained in:
Anand Doshi 2014-04-30 16:50:39 +05:30
parent 04f8990c11
commit f62da519d6

View File

@ -5,14 +5,14 @@ cur_frm.cscript.refresh = function(doc, cdt, cdn) {
cur_frm.toggle_enable('new_item_code', doc.__islocal);
if(!doc.__islocal) {
cur_frm.add_custom_button(__("Check for Duplicates"), function() {
return cur_frm.call_server('check_duplicate', 1)
return cur_frm.call_server('check_duplicate', 1)
}, 'icon-search')
}
}
cur_frm.fields_dict.new_item_code.get_query = function() {
return{
query: "selling.doctype.sales_bom.sales_bom.get_new_item_code"
query: "erpnext.selling.doctype.sales_bom.sales_bom.get_new_item_code"
}
}
cur_frm.fields_dict.new_item_code.query_description = __('Please select Item where "Is Stock Item" is "No" and "Is Sales Item" is "Yes" and there is no other Sales BOM');