• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/order/order.php
  • Класс: Bitrix\Crm\Order\Order
  • Вызов: Order::needCreateContactCompany
private function needCreateContactCompany(): bool
{
	$contactCompanyCollection = $this->getContactCompanyCollection();
	if (
		$contactCompanyCollection->isEmpty()
		&& $contactCompanyCollection->isAutoCreationModeEnabled()
	)
	{
		return true;
	}

	return false;
}