• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/orderbase.php
  • Класс: BitrixSaleOrderBase
  • Вызов: OrderBase::normalizeValue
protected function normalizeValue($name, $value)
{
	if ($this->isPriceField($name))
	{
		$value = PriceMaths::roundPrecision($value);
	}

	return parent::normalizeValue($name, $value);
}