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

15 lines
492 B
Python
Raw Normal View History

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2014-03-06 18:20:45 +05:30
# MIT License. See license.txt
from __future__ import unicode_literals
import frappe
2014-09-09 12:38:21 +05:30
from frappe.geo.country_info import get_all
2017-04-13 13:13:52 +05:30
from frappe.utils.install import import_country_and_currency
2014-03-06 18:20:45 +05:30
2018-02-15 11:28:55 +05:30
from six import iteritems
2014-03-06 18:20:45 +05:30
def execute():
frappe.reload_doc("setup", "doctype", "country")
import_country_and_currency()
2018-02-15 11:28:55 +05:30
for name, country in iteritems(get_all()):
2014-03-06 18:20:45 +05:30
frappe.set_value("Country", name, "code", country.get("code"))