From 1bfa3cdd6348b5c05f4e2f220d1cc93c4ea3eb22 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 2 Jul 2021 20:02:15 +0200 Subject: [PATCH] makes currency selection human-readable --- InvenTree/common/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/common/settings.py b/InvenTree/common/settings.py index e255ed0904..b34cf0b785 100644 --- a/InvenTree/common/settings.py +++ b/InvenTree/common/settings.py @@ -28,7 +28,7 @@ def currency_code_mappings(): """ Returns the current currency choices """ - return [(a, a) for a in settings.CURRENCIES] + return [(a, CURRENCIES[a].name) for a in settings.CURRENCIES] def currency_codes():