• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/automation/trigger/openlinetrigger.php
  • Класс: Bitrix\Crm\Automation\Trigger\OpenLineTrigger
  • Вызов: OpenLineTrigger::isSupported
static function isSupported($entityTypeId)
{
	$unsupported = [\CCrmOwnerType::Quote, \CCrmOwnerType::SmartInvoice, \CCrmOwnerType::SmartDocument];
	if (in_array($entityTypeId, $unsupported, true))
	{
		return false;
	}

	return parent::isSupported($entityTypeId);
}