• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/product/catalog.php
  • Класс: Bitrix\Crm\Product\Catalog
  • Вызов: Catalog::getDefaultOfferId
static function getDefaultOfferId(): ?int
	{
		$productCatalogId = static::getDefaultId();
		if (!$productCatalogId)
		{
			return null;
		}

		$offerCatalogId = null;
		$iblockInfo = \CCatalogSku::GetInfoByProductIBlock($productCatalogId);

		if (!empty($iblockInfo))
		{
			$offerCatalogId = $iblockInfo['IBLOCK_ID'];
		}

		return $offerCatalogId;
	}