brotherton-erpnext/erpnext/patches/v7_1/set_currency_exchange_date.py

10 lines
244 B
Python
Raw Normal View History

from __future__ import unicode_literals
import frappe
def execute():
frappe.reload_doctype("Currency Exchange")
frappe.db.sql("""
update `tabCurrency Exchange`
set `date` = '2010-01-01'
where date is null or date = '0000-00-00'
""")