• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/product/quantitycontrol.php
  • Класс: BitrixCatalogProductQuantityControl
  • Вызов: QuantityControl::resetValue
static function resetValue(string $type, $productId = null): void
{
	if ($productId == null)
	{
		unset(self::$values[$type]);
	}
	else
	{
		unset(self::$values[$type][$productId]);
	}
}