mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Conflicts: currency_rate_update/services/__init__.py currency_rate_update/services/currency_getter.py currency_rate_update/services/update_service_CA_BOC.py currency_rate_update/services/update_service_CH_ADMIN.py currency_rate_update/services/update_service_ECB.py currency_rate_update/services/update_service_PL_NBP.py currency_rate_update/services/update_service_RO_BNR.py
90 lines
3.8 KiB
Python
90 lines
3.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
# © 2009 Camptocamp
|
|
# © 2014 Dorin Hongu
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from .currency_getter_interface import CurrencyGetterInterface
|
|
|
|
from datetime import datetime, timedelta
|
|
|
|
import logging
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class RO_BNRGetter(CurrencyGetterInterface):
|
|
"""Implementation of Currency_getter_factory interface for BNR service"""
|
|
|
|
code = 'RO_BNR'
|
|
name = 'National Bank of Romania'
|
|
supported_currency_array = [
|
|
"AED", "AUD", "BGN", "BRL", "CAD", "CHF", "CNY", "CZK", "DKK", "EGP",
|
|
"EUR", "GBP", "HUF", "INR", "JPY", "KRW", "MDL", "MXN", "NOK", "NZD",
|
|
"PLN", "RON", "RSD", "RUB", "SEK", "TRY", "UAH", "USD", "XAU", "XDR",
|
|
"ZAR"]
|
|
|
|
def rate_retrieve(self, dom, ns, curr):
|
|
""" Parse a dom node to retrieve-
|
|
currencies data"""
|
|
res = {}
|
|
xpath_rate_currency = "/def:DataSet/def:Body/def:Cube/def:Rate" + \
|
|
"[@currency='%s']/text()" % (curr.upper())
|
|
xpath_rate_ref = "/def:DataSet/def:Body/def:Cube/def:Rate" + \
|
|
"[@currency='%s']/@multiplier" % (curr.upper())
|
|
res['rate_currency'] = float(dom.xpath(xpath_rate_currency,
|
|
namespaces=ns)[0])
|
|
try:
|
|
res['rate_ref'] = float(dom.xpath(xpath_rate_ref,
|
|
namespaces=ns)[0])
|
|
except:
|
|
res['rate_ref'] = 1
|
|
return res
|
|
|
|
def get_updated_currency(self, currency_array, main_currency,
|
|
max_delta_days):
|
|
"""implementation of abstract method of Curreny_getter_interface"""
|
|
url = 'http://www.bnr.ro/nbrfxrates.xml'
|
|
# we do not want to update the main currency
|
|
if main_currency in currency_array:
|
|
currency_array.remove(main_currency)
|
|
# Move to new XML lib cf Launchpad bug #645263
|
|
from lxml import etree
|
|
_logger.debug("BNR currency rate service : connecting...")
|
|
rawfile = self.get_url(url)
|
|
dom = etree.fromstring(rawfile)
|
|
adminch_ns = {'def': 'http://www.bnr.ro/xsd'}
|
|
rate_date = dom.xpath('/def:DataSet/def:Body/def:Cube/@date',
|
|
namespaces=adminch_ns)[0]
|
|
rate_date_datetime = datetime.strptime(rate_date, '%Y-%m-%d') + \
|
|
timedelta(days=1)
|
|
self.check_rate_date(rate_date_datetime, max_delta_days)
|
|
# we dynamically update supported currencies
|
|
self.supported_currency_array = dom.xpath(
|
|
"/def:DataSet/def:Body/" + "def:Cube/def:Rate/@currency",
|
|
namespaces=adminch_ns)
|
|
self.supported_currency_array = [
|
|
x.upper() for x in self.supported_currency_array]
|
|
self.supported_currency_array.append('RON')
|
|
|
|
self.validate_cur(main_currency)
|
|
if main_currency != 'RON':
|
|
main_curr_data = self.rate_retrieve(dom, adminch_ns, main_currency)
|
|
# 1 MAIN_CURRENCY = main_rate RON
|
|
main_rate = main_curr_data['rate_currency'] / \
|
|
main_curr_data['rate_ref']
|
|
for curr in currency_array:
|
|
self.validate_cur(curr)
|
|
if curr == 'RON':
|
|
rate = main_rate
|
|
else:
|
|
curr_data = self.rate_retrieve(dom, adminch_ns, curr)
|
|
# 1 MAIN_CURRENCY = rate CURR
|
|
if main_currency == 'RON':
|
|
rate = curr_data['rate_ref'] / curr_data['rate_currency']
|
|
else:
|
|
rate = main_rate * curr_data['rate_ref'] / \
|
|
curr_data['rate_currency']
|
|
self.updated_currency[curr] = rate
|
|
_logger.debug("BNR Rate retrieved : 1 " + main_currency + ' = ' +
|
|
str(rate) + ' ' + curr)
|
|
return self.updated_currency, self.log_info
|