• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/product/price.php
  • Класс: BitrixCatalogProductPrice
  • Вызов: Price::getRoundRules
static function getRoundRules($priceType)
{
	$priceType = (int)$priceType;
	if ($priceType <= 0)
		return array();
	if (!isset(self::$roundRules[$priceType]))
		static::loadRoundRules(array($priceType));

	return self::$roundRules[$priceType];
}