2013-08-05 14:59:54 +05:30
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-06-21 17:55:31 +05:30
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
2013-09-21 13:43:48 +05:30
|
|
|
webnotes.reload_doc("selling", "doctype", "shopping_cart_settings")
|
2013-06-21 17:55:31 +05:30
|
|
|
|
|
|
|
# create two default territories, one for home country and one named Rest of the World
|
2013-10-08 17:59:11 +05:30
|
|
|
from setup.page.setup_wizard.setup_wizard import create_territories
|
2013-06-21 17:55:31 +05:30
|
|
|
create_territories()
|
|
|
|
|
|
|
|
webnotes.conn.set_value("Shopping Cart Settings", None, "default_territory", "Rest of the World")
|
|
|
|
|