brotherton-erpnext/erpnext/setup/utils.py

90 lines
2.9 KiB
Python
Raw Normal View History

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
2014-02-14 10:17:51 +00:00
import frappe
from frappe import _, throw
2014-07-01 12:15:15 +00:00
from frappe.utils import flt
def get_company_currency(company):
2015-04-27 07:43:38 +00:00
currency = frappe.db.get_value("Company", company, "default_currency", cache=True)
if not currency:
2014-02-26 07:05:33 +00:00
currency = frappe.db.get_default("currency")
if not currency:
2014-04-15 13:10:00 +00:00
throw(_('Please specify Default Currency in Company Master and Global Defaults'))
2014-04-14 13:50:45 +00:00
2013-01-17 14:50:56 +00:00
return currency
def get_root_of(doctype):
"""Get root element of a DocType with a tree structure"""
2014-04-14 13:50:45 +00:00
result = frappe.db.sql_list("""select name from `tab%s`
where lft=1 and rgt=(select max(rgt) from `tab%s` where docstatus < 2)""" %
2013-06-28 09:30:24 +00:00
(doctype, doctype))
return result[0] if result else None
2014-04-14 13:50:45 +00:00
def get_ancestors_of(doctype, name):
"""Get ancestor elements of a DocType with a tree structure"""
2014-02-26 07:05:33 +00:00
lft, rgt = frappe.db.get_value(doctype, name, ["lft", "rgt"])
2014-04-14 13:50:45 +00:00
result = frappe.db.sql_list("""select name from `tab%s`
where lft<%s and rgt>%s order by lft desc""" % (doctype, "%s", "%s"), (lft, rgt))
return result or []
def before_tests():
2015-03-13 02:44:31 +00:00
frappe.clear_cache()
# complete setup if missing
from erpnext.setup.page.setup_wizard.setup_wizard import setup_account
2015-03-13 02:44:31 +00:00
if not frappe.get_list("Company"):
setup_account({
"currency" :"USD",
"first_name" :"Test",
"last_name" :"User",
"company_name" :"Wind Power LLC",
"timezone" :"America/New_York",
"company_abbr" :"WP",
"industry" :"Manufacturing",
"country" :"United States",
"fy_start_date" :"2014-01-01",
"fy_end_date" :"2014-12-31",
"language" :"english",
"company_tagline" :"Testing",
"email" :"test@erpnext.com",
2014-11-26 10:05:08 +00:00
"password" :"test",
"chart_of_accounts" : "Standard"
})
frappe.db.sql("delete from `tabLeave Allocation`")
frappe.db.sql("delete from `tabLeave Application`")
frappe.db.sql("delete from `tabSalary Slip`")
frappe.db.sql("delete from `tabItem Price`")
frappe.db.set_value("Stock Settings", None, "auto_insert_price_list_rate_if_missing", 0)
frappe.db.commit()
2014-07-01 12:15:15 +00:00
@frappe.whitelist()
2014-07-01 12:15:15 +00:00
def get_exchange_rate(from_currency, to_currency):
exchange = "%s-%s" % (from_currency, to_currency)
value = flt(frappe.db.get_value("Currency Exchange", exchange, "exchange_rate"))
if not value:
try:
cache = frappe.cache()
key = "currency_exchange_rate:{0}:{1}".format(from_currency, to_currency)
value = cache.get(key)
if not value:
import requests
response = requests.get("http://api.fixer.io/latest", params={
"base": from_currency,
"symbols": to_currency
})
# expire in 24 hours
response.raise_for_status()
value = response.json()["rates"][to_currency]
cache.setex(key, value, 24 * 60 * 60)
return flt(value)
except:
frappe.msgprint(_("Unable to find exchange rate"))
return 0.0
else:
return 0.0