blob: 554d5d4271bc6b2adcae6d00e7ab09f337ade61c [file] [log] [blame]
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +05301import webnotes
2
3def execute():
Anand Doshia773e522012-12-27 18:10:45 +05304 webnotes.reload_doc("utilities", "doctype", "address")
5
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +05306 webnotes.conn.sql("""update tabAddress set address_title = customer_name where ifnull(customer_name,'')!=''""")
7 webnotes.conn.sql("""update tabAddress set address_title = supplier_name where ifnull(supplier_name,'')!=''""")
8 webnotes.conn.sql("""update tabAddress set address_title = sales_partner where ifnull(sales_partner,'')!=''""")
9 webnotes.reset_perms("Product Settings")
10
11 # move code to new doctype
12 webnotes.conn.set_value("Website Script", None, "javascript",
13 webnotes.conn.get_value("Website Settings", None, "startup_code"))