• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_crm_helper.php
  • Класс: CVoxImplantCrmHelper
  • Вызов: CVoxImplantCrmHelper::getResponsibleWithCall
static function getResponsibleWithCall(VICall $call)
{
	if(!BitrixMainLoader::includeModule('crm'))
		return false;

	$crmEntityType = $call->getPrimaryEntityType();
	$crmEntityId = $call->getPrimaryEntityId();

	if(!$crmEntityType || !$crmEntityId)
	{
		return false;
	}

	return (int)CVoxImplantCrmHelper::getResponsible($crmEntityType, $crmEntityId);
}