fix(Asset Repair): Fix Sider issues

This commit is contained in:
GangaManoj 2021-06-16 08:45:54 +05:30
parent 75fbda10ad
commit 71eaf3dbd8

View File

@ -32,19 +32,19 @@ frappe.ui.form.on('Asset Repair', {
}); });
cur_frm.fields_dict.cost_center.get_query = function(doc) { cur_frm.fields_dict.cost_center.get_query = function(doc) {
return{ return {
filters:{ filters: {
'is_group': 0, 'is_group': 0,
'company': doc.company 'company': doc.company
} }
} };
} };
cur_frm.fields_dict.project.get_query = function(doc) { cur_frm.fields_dict.project.get_query = function(doc) {
return{ return {
filters:{ filters: {
'is_group': 0, 'is_group': 0,
'company': doc.company 'company': doc.company
} }
} };
} };