From 98eacdb7859703092a9306a11de365c0f1eb5378 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 1 Sep 2014 10:23:47 +0530 Subject: [PATCH] [patch] Set company's country --- erpnext/patches.txt | 1 + erpnext/patches/v4_2/set_company_country.py | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 erpnext/patches/v4_2/set_company_country.py diff --git a/erpnext/patches.txt b/erpnext/patches.txt index 3e3a2493d1..d744fee784 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -78,3 +78,4 @@ erpnext.patches.v4_2.update_project_milestones erpnext.patches.v4_2.add_currency_turkish_lira #2014-08-08 execute:frappe.delete_doc("DocType", "Landed Cost Wizard") erpnext.patches.v4_2.default_website_style +erpnext.patches.v4_2.set_company_country diff --git a/erpnext/patches/v4_2/set_company_country.py b/erpnext/patches/v4_2/set_company_country.py new file mode 100644 index 0000000000..6992f02202 --- /dev/null +++ b/erpnext/patches/v4_2/set_company_country.py @@ -0,0 +1,15 @@ +# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors +# License: GNU General Public License v3. See license.txt + +from __future__ import unicode_literals +import frappe + +def execute(): + country = frappe.db.get_single_value("Global Defaults", "country") + if not country: + print "Country not specified in Global Defaults" + return + + for company in frappe.db.sql_list("""select name from `tabCompany` + where ifnull(country, '')=''"""): + frappe.db.set_value("Company", company, "country", country)