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
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2017-03-31 07:14:29 +00:00
|
|
|
from frappe import _
|
2016-12-09 06:44:47 +00:00
|
|
|
from frappe.utils import add_days, flt, get_datetime_str, nowdate
|
2022-03-22 05:43:15 +00:00
|
|
|
from frappe.utils.data import now_datetime
|
2022-01-21 16:10:47 +00:00
|
|
|
from frappe.utils.nestedset import get_ancestors_of, get_root_of # noqa
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2018-08-24 09:45:56 +00:00
|
|
|
from erpnext import get_default_company
|
2017-02-09 12:36:11 +00:00
|
|
|
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2014-04-30 14:08:28 +00:00
|
|
|
def before_tests():
|
2016-12-08 09:13:11 +00:00
|
|
|
frappe.clear_cache()
|
|
|
|
# complete setup if missing
|
|
|
|
from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
|
2022-03-25 17:29:20 +00:00
|
|
|
|
|
|
|
if not frappe.db.a_row_exists("Company"):
|
|
|
|
current_year = now_datetime().year
|
2016-12-08 09:13:11 +00:00
|
|
|
setup_complete(
|
|
|
|
{
|
2021-07-02 18:02:33 +00:00
|
|
|
"currency": "USD",
|
|
|
|
"full_name": "Test User",
|
|
|
|
"company_name": "Wind Power LLC",
|
|
|
|
"timezone": "America/New_York",
|
|
|
|
"company_abbr": "WP",
|
|
|
|
"industry": "Manufacturing",
|
|
|
|
"country": "United States",
|
2022-03-22 05:43:15 +00:00
|
|
|
"fy_start_date": f"{current_year}-01-01",
|
|
|
|
"fy_end_date": f"{current_year}-12-31",
|
2021-07-02 18:02:33 +00:00
|
|
|
"language": "english",
|
|
|
|
"company_tagline": "Testing",
|
|
|
|
"email": "test@erpnext.com",
|
|
|
|
"password": "test",
|
2017-11-16 12:18:59 +00:00
|
|
|
"chart_of_accounts": "Standard",
|
2016-12-08 09:13:11 +00:00
|
|
|
}
|
|
|
|
)
|
2014-04-30 14:08:28 +00:00
|
|
|
|
2016-12-08 09:13:11 +00:00
|
|
|
frappe.db.sql("delete from `tabItem Price`")
|
2015-08-03 09:39:48 +00:00
|
|
|
|
2022-03-25 17:29:20 +00:00
|
|
|
_enable_all_roles_for_admin()
|
|
|
|
|
2021-12-05 16:37:14 +00:00
|
|
|
set_defaults_for_tests()
|
2015-08-03 09:39:48 +00:00
|
|
|
|
2016-12-08 09:13:11 +00:00
|
|
|
frappe.db.commit()
|
2014-07-01 12:15:15 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2015-05-07 06:55:33 +00:00
|
|
|
@frappe.whitelist()
|
2018-05-15 05:55:46 +00:00
|
|
|
def get_exchange_rate(from_currency, to_currency, transaction_date=None, args=None):
|
2016-12-09 06:44:47 +00:00
|
|
|
if not (from_currency and to_currency):
|
2016-12-08 09:13:11 +00:00
|
|
|
# manqala 19/09/2016: Should this be an empty return or should it throw and exception?
|
|
|
|
return
|
|
|
|
if from_currency == to_currency:
|
|
|
|
return 1
|
2017-02-09 12:36:11 +00:00
|
|
|
|
2017-09-21 09:20:39 +00:00
|
|
|
if not transaction_date:
|
|
|
|
transaction_date = nowdate()
|
|
|
|
currency_settings = frappe.get_doc("Accounts Settings").as_dict()
|
|
|
|
allow_stale_rates = currency_settings.get("allow_stale")
|
|
|
|
|
|
|
|
filters = [
|
|
|
|
["date", "<=", get_datetime_str(transaction_date)],
|
|
|
|
["from_currency", "=", from_currency],
|
|
|
|
["to_currency", "=", to_currency],
|
|
|
|
]
|
2018-05-15 11:28:45 +00:00
|
|
|
|
2018-05-15 05:55:46 +00:00
|
|
|
if args == "for_buying":
|
|
|
|
filters.append(["for_buying", "=", "1"])
|
|
|
|
elif args == "for_selling":
|
2018-05-15 11:28:45 +00:00
|
|
|
filters.append(["for_selling", "=", "1"])
|
|
|
|
|
2017-09-21 09:20:39 +00:00
|
|
|
if not allow_stale_rates:
|
|
|
|
stale_days = currency_settings.get("stale_days")
|
|
|
|
checkpoint_date = add_days(transaction_date, -stale_days)
|
|
|
|
filters.append(["date", ">", get_datetime_str(checkpoint_date)])
|
|
|
|
|
2016-12-08 10:06:23 +00:00
|
|
|
# cksgb 19/09/2016: get last entry in Currency Exchange with from_currency and to_currency.
|
2017-09-21 09:20:39 +00:00
|
|
|
entries = frappe.get_all(
|
|
|
|
"Currency Exchange", fields=["exchange_rate"], filters=filters, order_by="date desc", limit=1
|
|
|
|
)
|
2016-12-08 09:13:11 +00:00
|
|
|
if entries:
|
|
|
|
return flt(entries[0].exchange_rate)
|
2015-10-15 06:20:38 +00:00
|
|
|
|
2016-12-08 09:13:11 +00:00
|
|
|
try:
|
|
|
|
cache = frappe.cache()
|
2021-06-28 13:31:52 +00:00
|
|
|
key = "currency_exchange_rate_{0}:{1}:{2}".format(transaction_date, from_currency, to_currency)
|
2016-12-08 09:13:11 +00:00
|
|
|
value = cache.get(key)
|
2015-10-15 06:27:46 +00:00
|
|
|
|
2016-12-08 09:13:11 +00:00
|
|
|
if not value:
|
|
|
|
import requests
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2022-01-10 12:01:38 +00:00
|
|
|
settings = frappe.get_cached_doc("Currency Exchange Settings")
|
2021-09-03 13:51:06 +00:00
|
|
|
req_params = {
|
2021-09-03 09:33:47 +00:00
|
|
|
"transaction_date": transaction_date,
|
|
|
|
"from_currency": from_currency,
|
|
|
|
"to_currency": to_currency,
|
|
|
|
}
|
|
|
|
params = {}
|
|
|
|
for row in settings.req_params:
|
2021-09-04 08:34:56 +00:00
|
|
|
params[row.key] = format_ces_api(row.value, req_params)
|
2021-09-03 13:51:06 +00:00
|
|
|
response = requests.get(format_ces_api(settings.api_endpoint, req_params), params=params)
|
2016-12-08 09:13:11 +00:00
|
|
|
# expire in 6 hours
|
|
|
|
response.raise_for_status()
|
2021-09-03 09:33:47 +00:00
|
|
|
value = response.json()
|
|
|
|
for res_key in settings.result_key:
|
2021-09-03 13:51:06 +00:00
|
|
|
value = value[format_ces_api(str(res_key.key), req_params)]
|
2021-07-29 10:28:27 +00:00
|
|
|
cache.setex(name=key, time=21600, value=flt(value))
|
2016-12-08 09:13:11 +00:00
|
|
|
return flt(value)
|
2021-09-01 09:10:56 +00:00
|
|
|
except Exception:
|
2022-05-02 09:34:26 +00:00
|
|
|
frappe.log_error("Unable to fetch exchange rate")
|
2017-05-24 10:48:27 +00:00
|
|
|
frappe.msgprint(
|
|
|
|
_(
|
|
|
|
"Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually"
|
|
|
|
).format(from_currency, to_currency, transaction_date)
|
2022-03-28 13:22:46 +00:00
|
|
|
)
|
2017-07-06 05:39:34 +00:00
|
|
|
return 0.0
|
2017-07-26 10:59:22 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2021-11-04 05:12:09 +00:00
|
|
|
def format_ces_api(data, param):
|
2021-09-03 13:51:06 +00:00
|
|
|
return data.format(
|
2021-11-04 05:12:09 +00:00
|
|
|
transaction_date=param.get("transaction_date"),
|
|
|
|
to_currency=param.get("to_currency"),
|
|
|
|
from_currency=param.get("from_currency"),
|
2021-09-03 13:51:06 +00:00
|
|
|
)
|
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2017-07-26 10:59:22 +00:00
|
|
|
def enable_all_roles_and_domains():
|
|
|
|
"""enable all roles and domain for testing"""
|
2022-03-25 17:29:20 +00:00
|
|
|
_enable_all_roles_for_admin()
|
|
|
|
|
|
|
|
|
|
|
|
def _enable_all_roles_for_admin():
|
2017-10-17 07:00:34 +00:00
|
|
|
from frappe.desk.page.setup_wizard.setup_wizard import add_all_roles_to
|
2017-11-23 09:52:10 +00:00
|
|
|
|
2022-03-25 17:29:20 +00:00
|
|
|
all_roles = set(frappe.db.get_values("Role", pluck="name"))
|
|
|
|
admin_roles = set(
|
|
|
|
frappe.db.get_values("Has Role", {"parent": "Administrator"}, fieldname="role", pluck="role")
|
2022-03-28 13:22:46 +00:00
|
|
|
)
|
2022-03-25 17:29:20 +00:00
|
|
|
|
|
|
|
if all_roles.difference(admin_roles):
|
|
|
|
add_all_roles_to("Administrator")
|
2021-12-05 16:37:14 +00:00
|
|
|
|
2022-03-25 17:29:20 +00:00
|
|
|
|
|
|
|
def set_defaults_for_tests():
|
|
|
|
defaults = {
|
|
|
|
"customer_group": get_root_of("Customer Group"),
|
|
|
|
"territory": get_root_of("Territory"),
|
|
|
|
}
|
|
|
|
frappe.db.set_single_value("Selling Settings", defaults)
|
|
|
|
for key, value in defaults.items():
|
|
|
|
frappe.db.set_default(key, value)
|
2022-03-22 05:43:15 +00:00
|
|
|
frappe.db.set_single_value("Stock Settings", "auto_insert_price_list_rate_if_missing", 0)
|
|
|
|
|
2017-11-23 09:52:10 +00:00
|
|
|
|
|
|
|
def insert_record(records):
|
2022-03-26 07:23:39 +00:00
|
|
|
from frappe.desk.page.setup_wizard.setup_wizard import make_records
|
|
|
|
|
|
|
|
make_records(records)
|
2018-08-24 09:45:56 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2018-08-24 09:45:56 +00:00
|
|
|
def welcome_email():
|
2020-03-05 04:38:43 +00:00
|
|
|
site_name = get_default_company() or "ERPNext"
|
2020-01-29 09:36:18 +00:00
|
|
|
title = _("Welcome to {0}").format(site_name)
|
2019-03-06 00:44:02 +00:00
|
|
|
return title
|