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

	return $value;
}