2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-01-17 10:14:57 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2014-04-30 14:08:28 +00:00
|
|
|
from frappe import _, throw
|
2014-07-01 12:15:15 +00:00
|
|
|
from frappe.utils import flt
|
2013-01-17 10:14:57 +00:00
|
|
|
|
|
|
|
def get_company_currency(company):
|
2015-04-27 07:43:38 +00:00
|
|
|
currency = frappe.db.get_value("Company", company, "default_currency", cache=True)
|
2013-01-17 10:14:57 +00:00
|
|
|
if not currency:
|
2014-02-26 07:05:33 +00:00
|
|
|
currency = frappe.db.get_default("currency")
|
2013-01-17 10:14:57 +00:00
|
|
|
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
|
|
|
|
|
2013-06-21 12:25:31 +00:00
|
|
|
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))
|
2013-06-21 12:25:31 +00:00
|
|
|
return result[0] if result else None
|
2014-04-14 13:50:45 +00:00
|
|
|
|
2013-06-21 12:25:31 +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`
|
2013-07-04 11:43:53 +00:00
|
|
|
where lft<%s and rgt>%s order by lft desc""" % (doctype, "%s", "%s"), (lft, rgt))
|
|
|
|
return result or []
|
2013-06-21 12:25:31 +00:00
|
|
|
|
2014-04-30 14:08:28 +00:00
|
|
|
def before_tests():
|
2015-03-13 02:44:31 +00:00
|
|
|
frappe.clear_cache()
|
2014-04-30 14:08:28 +00:00
|
|
|
# complete setup if missing
|
2015-11-09 11:23:11 +00:00
|
|
|
from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
|
2015-03-13 02:44:31 +00:00
|
|
|
if not frappe.get_list("Company"):
|
2015-11-09 11:23:11 +00:00
|
|
|
setup_complete({
|
2014-04-30 14:08:28 +00:00
|
|
|
"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"
|
2014-04-30 14:08:28 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
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`")
|
2015-08-03 09:39:48 +00:00
|
|
|
|
|
|
|
frappe.db.set_value("Stock Settings", None, "auto_insert_price_list_rate_if_missing", 0)
|
|
|
|
|
2014-04-30 14:08:28 +00:00
|
|
|
frappe.db.commit()
|
2014-07-01 12:15:15 +00:00
|
|
|
|
2015-05-07 06:55:33 +00:00
|
|
|
@frappe.whitelist()
|
2014-07-01 12:15:15 +00:00
|
|
|
def get_exchange_rate(from_currency, to_currency):
|
2015-12-04 11:17:34 +00:00
|
|
|
if from_currency == to_currency:
|
|
|
|
return 1
|
|
|
|
|
2015-10-15 06:20:38 +00:00
|
|
|
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)
|
2015-10-15 06:27:46 +00:00
|
|
|
|
2015-10-15 06:20:38 +00:00
|
|
|
if not value:
|
|
|
|
import requests
|
|
|
|
response = requests.get("http://api.fixer.io/latest", params={
|
|
|
|
"base": from_currency,
|
|
|
|
"symbols": to_currency
|
|
|
|
})
|
2015-11-27 09:07:40 +00:00
|
|
|
# expire in 6 hours
|
2015-10-15 06:20:38 +00:00
|
|
|
response.raise_for_status()
|
|
|
|
value = response.json()["rates"][to_currency]
|
2015-11-27 09:07:40 +00:00
|
|
|
cache.setex(key, value, 6 * 60 * 60)
|
|
|
|
|
2015-10-15 06:20:38 +00:00
|
|
|
return flt(value)
|
|
|
|
except:
|
2015-11-27 09:07:40 +00:00
|
|
|
frappe.msgprint(_("Unable to find exchange rate for {0} to {1}").format(from_currency, to_currency))
|
2015-10-15 06:20:38 +00:00
|
|
|
return 0.0
|
|
|
|
else:
|
2015-10-15 06:27:46 +00:00
|
|
|
return value
|