• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/main/uiselector/crmbase.php
  • Класс: Bitrix\Crm\Integration\Main\UISelector\CrmBase
  • Вызов: CrmBase::getByIdsRes
protected function getByIdsRes(array $ids, array $options)
{
	$listMethodName = $this->getByIdsListMethodName();
	$result = $this->getEntityClassName()::$listMethodName(
		$this->getByIdsOrder(),
		$this->getByIdsFilter($ids, $options),
		false,
		false,
		$this->getByIdsSelect()
	);

	if (!is_object($result))
	{
		return null;
	}

	return $result;
}