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