• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/kpimanager.php
  • Класс: BitrixImOpenLinesKpiManager
  • Вызов: KpiManager::stopTimer
public function stopTimer()
{
	$currentMessage = $this->getNotAnsweredMessage();
	if (is_null($currentMessage['TIME_STOP']))
	{
		$updateFields = array(
			'TIME_STOP' => DateTime::createFromTimestamp(time())
		);
		$updateFields['TIME_STOP_HISTORY'][] = [
			'TIME_PAUSE' => $updateFields['TIME_STOP'],
			'TIME_CONTINUE' => null
		];

		$this->updateMessage($currentMessage['ID'], $updateFields);
	}
}