brotherton-erpnext/erpnext/patches/v4_0/import_country_codes.py

13 lines
466 B
Python
Raw Normal View History

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2014-03-06 12:50:45 +00:00
# MIT License. See license.txt
from __future__ import unicode_literals
import frappe
2014-09-09 07:08:21 +00:00
from frappe.geo.country_info import get_all
2017-04-13 07:43:52 +00:00
from frappe.utils.install import import_country_and_currency
2014-03-06 12:50:45 +00:00
def execute():
frappe.reload_doc("setup", "doctype", "country")
import_country_and_currency()
2014-03-06 12:50:45 +00:00
for name, country in get_all().iteritems():
frappe.set_value("Country", name, "code", country.get("code"))