blob: fc7d2baed1b968fb2ecb37e92493c6d10a2338a1 [file] [log] [blame]
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
2# 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,'')!=''""")
12
13 webnotes.reload_doc("website", "doctype", "product_settings")
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053014 webnotes.reset_perms("Product Settings")
15
16 # move code to new doctype
17 webnotes.conn.set_value("Website Script", None, "javascript",
18 webnotes.conn.get_value("Website Settings", None, "startup_code"))