2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# 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
|
|
|
|
from setup.doctype.setup_control.setup_control import create_territories
|
|
|
|
create_territories()
|
|
|
|
|
|
|
|
webnotes.conn.set_value("Shopping Cart Settings", None, "default_territory", "Rest of the World")
|
|
|
|
|