blob: 849f619bb55414d4defd60bdbec08abec53b0f40 [file] [log] [blame]
Rushabh Mehtaad45e312013-11-20 12:59:58 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
3
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +05304import webnotes
5
6def execute():
Anand Doshia773e522012-12-27 18:10:45 +05307 webnotes.reload_doc("utilities", "doctype", "address")
8
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +05309 webnotes.conn.sql("""update tabAddress set address_title = customer_name where ifnull(customer_name,'')!=''""")
10 webnotes.conn.sql("""update tabAddress set address_title = supplier_name where ifnull(supplier_name,'')!=''""")
Anand Doshid9f44e22012-12-27 19:11:04 +053011 webnotes.conn.sql("""update tabAddress set address_title = sales_partner where ifnull(sales_partner,'')!=''""")
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053012
13 # move code to new doctype
14 webnotes.conn.set_value("Website Script", None, "javascript",
15 webnotes.conn.get_value("Website Settings", None, "startup_code"))