mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Merge pull request #1608 from SchrodingersGat/rate-update-fix
Rate update fix
This commit is contained in:
commit
500770d1bf
@ -513,9 +513,7 @@ CURRENCIES = CONFIG.get(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
BASE_CURRENCY = CONFIG.get('base_currency', 'USD')
|
EXCHANGE_BACKEND = 'InvenTree.exchange.ExchangeRateHostBackend'
|
||||||
|
|
||||||
EXCHANGE_BACKEND = 'InvenTree.exchange.InvenTreeManualExchangeBackend'
|
|
||||||
|
|
||||||
# Extract email settings from the config file
|
# Extract email settings from the config file
|
||||||
email_config = CONFIG.get('email', {})
|
email_config = CONFIG.get('email', {})
|
||||||
|
@ -169,22 +169,19 @@ def update_exchange_rates():
|
|||||||
try:
|
try:
|
||||||
import common.models
|
import common.models
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from djmoney.contrib.exchange.backends import FixerBackend
|
from InvenTree.exchange import ExchangeRateHostBackend
|
||||||
except AppRegistryNotReady:
|
except AppRegistryNotReady:
|
||||||
# Apps not yet loaded!
|
# Apps not yet loaded!
|
||||||
return
|
return
|
||||||
|
|
||||||
fixer_api_key = common.models.InvenTreeSetting.get_setting('INVENTREE_FIXER_API_KEY', '').strip()
|
backend = ExchangeRateHostBackend()
|
||||||
|
print(f"Updating exchange rates from {backend.url}")
|
||||||
if not fixer_api_key:
|
|
||||||
# API key not provided
|
|
||||||
return
|
|
||||||
|
|
||||||
backend = FixerBackend(access_key=fixer_api_key)
|
|
||||||
|
|
||||||
currencies = ','.join(settings.CURRENCIES)
|
currencies = ','.join(settings.CURRENCIES)
|
||||||
|
|
||||||
base = settings.BASE_CURRENCY
|
base = common.models.InvenTreeSetting.get_setting('INVENTREE_DEFAULT_CURRENCY')
|
||||||
|
|
||||||
|
print(f"Using base currency '{base}'")
|
||||||
|
|
||||||
backend.update_rates(base_currency=base, symbols=currencies)
|
backend.update_rates(base_currency=base, symbols=currencies)
|
||||||
|
|
||||||
|
@ -87,12 +87,6 @@ class InvenTreeSetting(models.Model):
|
|||||||
'choices': djmoney.settings.CURRENCY_CHOICES,
|
'choices': djmoney.settings.CURRENCY_CHOICES,
|
||||||
},
|
},
|
||||||
|
|
||||||
'INVENTREE_FIXER_API_KEY': {
|
|
||||||
'name': _('fixer.io API key'),
|
|
||||||
'description': _('API key for fixer.io currency conversion service'),
|
|
||||||
'default': '',
|
|
||||||
},
|
|
||||||
|
|
||||||
'INVENTREE_DOWNLOAD_FROM_URL': {
|
'INVENTREE_DOWNLOAD_FROM_URL': {
|
||||||
'name': _('Download from URL'),
|
'name': _('Download from URL'),
|
||||||
'description': _('Allow download of remote images and files from external URL'),
|
'description': _('Allow download of remote images and files from external URL'),
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
{% include "InvenTree/settings/setting.html" with key="INVENTREE_BASE_URL" icon="fa-globe" %}
|
{% include "InvenTree/settings/setting.html" with key="INVENTREE_BASE_URL" icon="fa-globe" %}
|
||||||
{% include "InvenTree/settings/setting.html" with key="INVENTREE_COMPANY_NAME" icon="fa-building" %}
|
{% include "InvenTree/settings/setting.html" with key="INVENTREE_COMPANY_NAME" icon="fa-building" %}
|
||||||
{% include "InvenTree/settings/setting.html" with key="INVENTREE_DEFAULT_CURRENCY" icon="fa-dollar-sign" %}
|
{% include "InvenTree/settings/setting.html" with key="INVENTREE_DEFAULT_CURRENCY" icon="fa-dollar-sign" %}
|
||||||
{% include "InvenTree/settings/setting.html" with key="INVENTREE_FIXER_API_KEY" icon="fa-key" %}
|
|
||||||
{% include "InvenTree/settings/setting.html" with key="INVENTREE_DOWNLOAD_FROM_URL" icon="fa-cloud-download-alt" %}
|
{% include "InvenTree/settings/setting.html" with key="INVENTREE_DOWNLOAD_FROM_URL" icon="fa-cloud-download-alt" %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
Reference in New Issue
Block a user