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