• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/catalog/contractor/provider.php
  • Класс: Bitrix\Crm\Integration\Catalog\Contractor\Provider
  • Вызов: Provider::getCategoryIdByEntityType
static function getCategoryIdByEntityType(int $entityTypeId): int
{
	$categoryId = CategoryRepository::getIdByEntityTypeId($entityTypeId);
	if (!$categoryId)
	{
		return -1;
	}

	return $categoryId;
}