• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/rounding.php
  • Класс: BitrixCatalogRoundingTable
  • Вызов: RoundingTable::clearCache
static function clearCache(): void
{
	if (!static::isAllowedClearCache() || empty(self::$priceTypeIds))
	{
		return;
	}
	foreach (self::$priceTypeIds as $priceType)
	{
		ProductPrice::clearRoundRulesCache($priceType);
	}
	unset($priceType);
	static::clearPriceTypeIds();
}