From 7f9457e8d7fb5df138133c52afbb50bccccf81e4 Mon Sep 17 00:00:00 2001 From: Yurii Date: Sat, 13 Dec 2025 10:40:59 +0200 Subject: [PATCH] fix rates to string --- application/Espo/Classes/AppParams/CurrencyRates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Classes/AppParams/CurrencyRates.php b/application/Espo/Classes/AppParams/CurrencyRates.php index 8bb663d618..47c1162468 100644 --- a/application/Espo/Classes/AppParams/CurrencyRates.php +++ b/application/Espo/Classes/AppParams/CurrencyRates.php @@ -51,7 +51,7 @@ class CurrencyRates implements AppParam $rates = $this->configDataProvider->getCurrencyRates()->toAssoc(); foreach ($rates as $code => $value) { - $rates[$code] = $this->numberUtil->format($value, self::PRECISION); + $rates[$code] = $this->numberUtil->format($value, self::PRECISION, '.', ''); } return (object) $rates;