Skip to content
Code-Schnipsel Gruppen Projekte
Commit f66de536 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'next' into 'master'

Next

See merge request !32
Übergeordnete 823c0604 c7323cb3
No related branches found
Tags 1.6.1
3 Merge Requests!52Update 'next-3.x' with latest changes from 'main',!48Add QUIQQER Tooling,!32Next
Pipeline #4994 bestanden mit Phase
in 31 Sekunden
......@@ -297,20 +297,24 @@ public static function getUserCurrencyByCountry($User = null): ?Currency
* Return all allowed currencies
*
* @return Currency[] - [Currency, Currency, Currency]
* @throws QUI\Exception
*/
public static function getAllowedCurrencies(): array
{
$Config = QUI::getPackage('quiqqer/currency')->getConfig();
$allowed = $Config->getValue('currency', 'allowedCurrencies');
try {
$Config = QUI::getPackage('quiqqer/currency')->getConfig();
$allowed = $Config->getValue('currency', 'allowedCurrencies');
$allowed = explode(',', trim($allowed));
$list = [];
$allowed = explode(',', trim($allowed));
$list = [];
$default = self::getDefaultCurrency()->getCode();
$default = self::getDefaultCurrency()->getCode();
if (!in_array($default, $allowed)) {
$allowed[] = $default;
if (!in_array($default, $allowed)) {
$allowed[] = $default;
}
} catch (QUI\Exception $e) {
QUI\System\Log::addError($e->getMessage());
return [];
}
foreach ($allowed as $currency) {
......@@ -579,7 +583,7 @@ public static function getCurrencyTypes(): array
];
}
} catch (QUI\Exception $Exception) {
QUI\System\Log::writeException($Exception);
QUI\System\Log::addNotice($Exception->getMessage());
}
}
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren