13 lines
456 B
Python
13 lines
456 B
Python
# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
def execute():
|
|
frappe.reload_doctype("Opportunity")
|
|
|
|
# all existing opportunities were with items
|
|
frappe.db.sql("update tabOpportunity set with_items=1, title=customer_name")
|
|
frappe.db.sql("update `tabEmail Account` set append_to='Opportunity' where append_to='Lead'")
|