• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_company.php
  • Класс: \CAllCrmCompany
  • Вызов: CAllCrmCompany::Exists
static function Exists($ID)
{
	$ID = intval($ID);
	if($ID <= 0)
	{
		return false;
	}

	$dbRes = self::GetListEx(
		[],
		array('ID' => $ID, 'CHECK_PERMISSIONS' => 'N'),
		false,
		false,
		array('ID')
	);

	return is_array($dbRes->Fetch());
}