brotherton-erpnext/erpnext/patches/v5_1/fix_credit_days_based_on.py

10 lines
289 B
Python
Raw Normal View History

from __future__ import unicode_literals
import frappe
def execute():
for dt in ("Customer", "Customer Group", "Company"):
2015-07-13 15:06:12 +05:30
frappe.reload_doctype(dt, force=True)
frappe.db.sql("""update `tab{0}` set credit_days_based_on='Fixed Days'
2015-07-13 15:06:12 +05:30
where ifnull(credit_days, 0) > 0""".format(dt))