mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-30 23:18:02 +00:00
[hotfix] set_restrict_to_domain_for_module_def patch fixes (#9921)
This commit is contained in:
@@ -151,8 +151,14 @@ def update_module_def_restrict_to_domain():
|
||||
""" set the restrict to domain for the module def """
|
||||
|
||||
module_def_restrict_to_domain_mapper = {
|
||||
"Schools": _('Education')
|
||||
"Schools": 'Education'
|
||||
}
|
||||
|
||||
lang = frappe.db.get_single_value("System Settings", "language") or "en"
|
||||
for module, domain in module_def_restrict_to_domain_mapper.iteritems():
|
||||
frappe.set_value("Module Def", module, "restrict_to_domain", domain)
|
||||
if frappe.db.exists("Domain", _(domain, lang)):
|
||||
frappe.set_value("Module Def", module, "restrict_to_domain", _(domain, lang))
|
||||
elif frappe.db.exists("Domain", domain):
|
||||
frappe.set_value("Module Def", module, "restrict_to_domain", domain)
|
||||
else:
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user