Zmieniono sposób pobierania identyfikatorów walut w module Gm_OmniPrice, aby używać statycznej tablicy zamiast dynamicznego wywołania funkcji.

This commit is contained in:
2025-12-16 23:35:02 +01:00
parent ac48c61b72
commit 08511a0c24

View File

@@ -565,7 +565,8 @@ class Gm_OmniPrice extends Module
}
$specificPriceOutput = null;
foreach ($shopIds as $shopId) {
$currencyIds = $this->getCurrencyIds($shopId);
// $currencyIds = $this->getCurrencyIds($shopId);
$currencyIds = [3];
$countryIds = $this->getCountryIds($shopId);
$groupIds = $this->getGroupIds($shopId);
$lastCurrencyId = end($currencyIds);