• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Factory/Lead.php
  • Класс: Bitrix\Crm\Service\Factory\Lead
  • Вызов: Lead::getSuccessfulStageId
private function getSuccessfulStageId(): string
{
	foreach ($this->getStages() as $stage)
	{
		if ($stage->getSemantics() === PhaseSemantics::SUCCESS)
		{
			return $stage->getStatusId();
		}
	}

	throw new ObjectNotFoundException('Successful stage for lead was not found');
}