brotherton-erpnext/erpnext/patches/v13_0/update_deferred_settings.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
408 B
Python
Raw Normal View History

# Copyright (c) 2019, Frappe and Contributors
# License: GNU General Public License v3. See license.txt
import frappe
def execute():
accounts_settings = frappe.get_doc("Accounts Settings", "Accounts Settings")
accounts_settings.book_deferred_entries_based_on = "Days"
accounts_settings.book_deferred_entries_via_journal_entry = 0
accounts_settings.submit_journal_entries = 0
accounts_settings.save()