• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_history.php
  • Класс: CVoxImplantHistory
  • Вызов: CVoxImplantHistory::saveComment
static function saveComment($callId, $comment)
{
	$call = VIStatisticTable::getRow(array('filter' => array('=CALL_ID' => $callId)));
	if($call)
	{
		VIStatisticTable::update($call['ID'], array(
			'COMMENT' => $comment
		));
	}
}