brotherton-erpnext/erpnext/patches/v5_0/update_frozen_accounts_permission_role.py
2014-10-21 16:16:30 +05:30

13 lines
416 B
Python

# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
import frappe
def execute():
account_settings = frappe.get_doc("Accounts Settings")
if not account_settings.frozen_accounts_modifier and account_settings.bde_auth_role:
frappe.db.set_value("Account Settings", None,
"frozen_accounts_modifier", account_settings.bde_auth_role)