• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/bizproc/document/valuecollection/lead.php
  • Класс: Bitrix\Crm\Integration\BizProc\Document\ValueCollection\Lead
  • Вызов: Lead::loadValue
protected function loadValue(string $fieldId): void
{
	if ($fieldId === 'CONTACT_IDS')
	{
		$this->document['CONTACT_IDS'] = Crm\Binding\LeadContactTable::getLeadContactIDs($this->id);
	}
	elseif ($fieldId === 'COMPANY_TITLE')
	{
		$this->loadCompanyTitle();
	}
	else
	{
		$this->loadEntityValues();
	}
}