• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/automation/target/companytarget.php
  • Класс: Bitrix\Crm\Automation\Target\CompanyTarget
  • Вызов: CompanyTarget::setEntityById
public function setEntityById($id)
{
	$id = (int)$id;
	if ($id > 0)
	{
		$entity = \CCrmCompany::GetByID($id, false);
		if ($entity)
		{
			$this->setEntity($entity);
			$this->setDocumentId('COMPANY_' . $id);
		}
	}
}