• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/agent/activity/lightcounter/filllightcounterpart1.php
  • Класс: Bitrix\Crm\Agent\Activity\LightCounter\FillLightCounterPart1
  • Вызов: FillLightCounterPart1::insertIntoToLightTimeTable
private function insertIntoToLightTimeTable(int $activityId, DateTime $lightTime)
{
	$isNotified = $lightTime->getTimestamp() < (new DateTime())->getTimestamp() ? 'Y' : 'N';
	$sqlHelper = Application::getConnection()->getSqlHelper();

	$row = [
		'ACTIVITY_ID' => $activityId,
		'LIGHT_COUNTER_AT' => $sqlHelper->convertToDbDateTime($lightTime),
		'IS_LIGHT_COUNTER_NOTIFIED' => $sqlHelper->convertToDbString($isNotified),
	];
	$rowStr = implode(',', $row);
	$sql = <<query($sql);
}