• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/calllist/calllist.php
  • Класс: Bitrix\Crm\CallList\CallList
  • Вызов: CallList::setElementCall
public function setElementCall($elementId, $callId)
{
	$item = $this->getItem($elementId);
	if($item === false)
		return false;
	
	$item->setCallId($callId);
	return true;
}