brotherton-erpnext/erpnext/patches/v11_1/setup_guardian_role.py

10 lines
252 B
Python
Raw Normal View History

import frappe
def execute():
2022-03-28 13:22:46 +00:00
if "Education" in frappe.get_active_domains() and not frappe.db.exists("Role", "Guardian"):
2019-01-30 12:15:48 +00:00
doc = frappe.new_doc("Role")
2022-03-28 13:22:46 +00:00
doc.update({"role_name": "Guardian", "desk_access": 0})
2019-01-30 12:15:48 +00:00
doc.insert(ignore_permissions=True)