CCrmRestProxyBase::traceEntity

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmRestProxyBase
  4. traceEntity
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmRestProxyBase
  • Вызов: CCrmRestProxyBase::traceEntity
protected function traceEntity($entityTypeId, $entityId, $fields, $isUpdate = false)
{
	if ($isUpdate)
	{
		Tracking\Entity::onRestAfterUpdate($entityTypeId, $entityId, $fields);
	}
	else
	{
		Tracking\Entity::onRestAfterAdd($entityTypeId, $entityId, $fields);
	}
}

Добавить комментарий