- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/integration/socialnetwork/livefeed/crmdeal.php
- Класс: Bitrix\Crm\Integration\Socialnetwork\Livefeed\CrmDeal
- Вызов: CrmDeal::getCurrentEntityFields
public function getCurrentEntityFields(): array
{
$result = [];
$res = LogTable::getList([
'filter' => [
'=ID' => $this->getEntityId()
],
'select' => [ 'ENTITY_ID' ]
]);
if ($logEntryFields = $res->fetch())
{
$res = \CCrmDeal::getListEx(
[],
[
'ID' => $logEntryFields['ENTITY_ID'],
'CHECK_PERMISSIONS' => 'N',
],
false,
[ 'nTopCount' => 1 ],
[]
);
if ($currentEntity = $res->fetch())
{
$result = $currentEntity;
}
}
return $result;
}