• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/socialnetwork/livefeed/crmlead.php
  • Класс: Bitrix\Crm\Integration\Socialnetwork\Livefeed\CrmLead
  • Вызов: CrmLead::getCurrentEntityFields
public function getCurrentEntityFields(): array
{
	$result = [];

	$res = LogTable::getList([
		'filter' => [
			'=ID' => $this->getEntityId()
		],
		'select' => [ 'ENTITY_ID' ]
	]);
	if ($logEntryFields = $res->fetch())
	{
		$res = \CCrmLead::getListEx(
			[],
			[
				'ID' => $logEntryFields['ENTITY_ID'],
				'CHECK_PERMISSIONS' => 'N'
			],
			false,
			[ 'nTopCount' => 1 ],
			[]
		);
		if ($currentEntity = $res->fetch())
		{
			$result = $currentEntity;
		}
	}

	return $result;
}