fix(Asset Repair): Filter Cost Center and Project by Company
This commit is contained in:
parent
9e07b7d4a7
commit
71c60f75d7
@ -30,3 +30,21 @@ frappe.ui.form.on('Asset Repair', {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
cur_frm.fields_dict.cost_center.get_query = function(doc) {
|
||||||
|
return{
|
||||||
|
filters:{
|
||||||
|
'is_group': 0,
|
||||||
|
'company': doc.company
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cur_frm.fields_dict.project.get_query = function(doc) {
|
||||||
|
return{
|
||||||
|
filters:{
|
||||||
|
'is_group': 0,
|
||||||
|
'company': doc.company
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user