• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/integration/service/batchable/base.php
  • Класс: BitrixSaleExchangeIntegrationServiceBatchableBase
  • Вызов: Base::getContactItemsFromIndexes
protected function getContactItemsFromIndexes($indexes)
{
	$result = [];
	if(count($indexes)>0)
	{
		foreach ($indexes as $index)
		{
			$result[] = ['CONTACT_ID'=>$index];
		}
	}
	return $result;
}