CCrmRequisiteRestProxy::entityExists

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmRequisiteRestProxy
  4. entityExists
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmRequisiteRestProxy
  • Вызов: CCrmRequisiteRestProxy::entityExists
protected function entityExists(int $entityTypeId, int $entityId): bool
{
	switch ($entityTypeId)
	{
		case CCrmOwnerType::Contact:
			return CCrmContact::Exists($entityId);
		case CCrmOwnerType::Company:
			return CCrmCompany::Exists($entityId);
	}
	return false;
}

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