- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/webform/manager.php
- Класс: Bitrix\Crm\WebForm\Manager
- Вызов: Manager::getRoundedPrice
static function getRoundedPrice(float $price, string $currency)
{
if (Loader::includeModule('currency'))
{
$price = \CCurrencyLang::CurrencyFormat($price, $currency, false);
$price = \CCurrencyLang::getUnFormattedValue($price, $currency);
return (float)str_replace(' ', '', $price);
}
return round($price, 2);
}