• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/history/leadstatushistorywithsupposedentry.php
  • Класс: Bitrix\Crm\History\LeadStatusHistoryWithSupposedEntry
  • Вызов: LeadStatusHistoryWithSupposedEntry::getLeadUnSuccessStatusList
static function getLeadUnSuccessStatusList()
{
	$statusSemanticInfo = CCrmStatus::GetLeadStatusSemanticInfo();

	$statusIds = self::getExistStatusIdList();

	$unSuccessStatusList = [];
	$firstUnSuccessStatusId = $statusSemanticInfo['FINAL_UNSUCCESS_FIELD'];

	$firstUnSuccessStatus = false;
	foreach ($statusIds as $statusId)
	{
		if ($statusId === $firstUnSuccessStatusId)
		{
			$firstUnSuccessStatus = true;
		}

		if ($firstUnSuccessStatus)
		{
			$unSuccessStatusList[] = $statusId;
		}
	}

	return $unSuccessStatusList;
}