fix: don't set filter for restrict_to_domain in Bulk Update Tool

This commit is contained in:
Rucha Mahabal 2019-12-03 16:09:30 +05:30
parent 398d5bad6f
commit bc577d5a9f

View file

@ -7,8 +7,7 @@ frappe.ui.form.on('Bulk Update', {
return {
filters: [
['DocType', 'issingle', '=', 0],
['DocType', 'name', 'not in', frappe.model.core_doctypes_list],
['DocType', 'restrict_to_domain', 'in', frappe.boot.active_domains]
['DocType', 'name', 'not in', frappe.model.core_doctypes_list]
]
};
});