brotherton-erpnext/erpnext/patches/v8_0/set_project_copied_from.py

9 lines
191 B
Python
Raw Normal View History

from __future__ import unicode_literals
import frappe
def execute():
frappe.db.sql('''
UPDATE `tabProject`
SET copied_from=name
WHERE copied_from is NULL
''')