From bc577d5a9f1f0c35f592f8ce21fa7897447ae83d Mon Sep 17 00:00:00 2001 From: Rucha Mahabal Date: Tue, 3 Dec 2019 16:09:30 +0530 Subject: [PATCH] fix: don't set filter for restrict_to_domain in Bulk Update Tool --- frappe/desk/doctype/bulk_update/bulk_update.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frappe/desk/doctype/bulk_update/bulk_update.js b/frappe/desk/doctype/bulk_update/bulk_update.js index fec853ca98..bb9cf2af51 100644 --- a/frappe/desk/doctype/bulk_update/bulk_update.js +++ b/frappe/desk/doctype/bulk_update/bulk_update.js @@ -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] ] }; });