13 lines
416 B
Python
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)
|
|
|