brotherton-erpnext/erpnext/patches/v14_0/discount_accounting_separation.py

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

8 lines
324 B
Python
Raw Normal View History

import frappe
def execute():
doc = frappe.get_doc("Accounts Settings")
discount_account = doc.enable_discount_accounting
if discount_account:
2022-04-08 12:50:41 +00:00
for doctype in ["Buying Settings", "Selling Settings"]:
2022-04-08 22:25:25 +00:00
frappe.db.set_value(doctype, doctype, 'enable_discount_accounting', 1, update_modified=False)