• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_crm_helper.php
  • Класс: CVoxImplantCrmHelper
  • Вызов: CVoxImplantCrmHelper::shouldCompleteActivity
static function shouldCompleteActivity(array $statisticRecord)
{

	if(
		$statisticRecord['INCOMING'] == CVoxImplantMain::CALL_OUTGOING
		&& $statisticRecord['CALL_DURATION'] > 0
		&& $statisticRecord['CALL_FAILED_CODE'] == '200'
	)
		return true;

	return false;
}