• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/restriction/observersfieldrestriction.php
  • Класс: Bitrix\Crm\Restriction\ObserversFieldRestriction
  • Вызов: ObserversFieldRestriction::isExceeded
public function isExceeded(): bool
{
	if (!$this->isFeatureEnabled)
	{
		return true;
	}

	$limit = $this->getQuantityLimit();
	if ($limit <= 0)
	{
		return false;
	}
	
	return $this->getCount($this->entityTypeId) > $limit;
}