• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/binding/leadcontact.php
  • Класс: Bitrix\Crm\Binding\LeadContactTable
  • Вызов: LeadContactTable::hasContacts
static function hasContacts($leadID)
{
	$leadID = (int)$leadID;
	if($leadID <= 0)
	{
		throw new Main\ArgumentException('Must be greater than zero', 'leadID');
	}

	$result = self::getList(
		array(
			'select' => array('LEAD_ID'),
			'filter' => array('=LEAD_ID' => $leadID),
			'limit' => 1
		)
	);

	return is_array($result->fetch());
}