diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index afa43396f5..718a10b5e5 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -513,6 +513,11 @@ CURRENCIES = CONFIG.get( ], ) +DEFAULT_CURRENCY = get_setting( + 'INVENTREE_DEFAULT_CURRENCY', + CONFIG.get('default_currency', 'USD') +) + # Extract email settings from the config file email_config = CONFIG.get('email', {})