- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/volume/company.php
- Класс: Bitrix\Crm\Volume\Company
- Вызов: Company::getActionList
public function getActionList($componentCommandAlias)
{
$queueList = $this->prepareRangeActionList(
Crm\CompanyTable::class,
'DATE_CREATE',
array(
'MEASURE_ENTITY' => $componentCommandAlias['MEASURE_ENTITY'],
'MEASURE_FILE' => $componentCommandAlias['MEASURE_FILE'],
)
);
$queueList = array_merge(
$queueList,
$this->prepareRangeActionList(
Crm\ActivityTable::class,
'CREATED',
array(
'MEASURE_ACTIVITY' => $componentCommandAlias['MEASURE_ACTIVITY'],
)
)
);
$queueList = array_merge(
$queueList,
$this->prepareRangeActionList(
Crm\EventTable::class,
'DATE_CREATE',
array(
'MEASURE_EVENT' => $componentCommandAlias['MEASURE_EVENT'],
)
)
);
return $queueList;
}