• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/model/item.php
  • Класс: BitrixRpaModelItem
  • Вызов: Item::getStage
public function getStage(): ?Stage
{
	$stage = null;
	$type = $this->getType();
	if($type)
	{
		$stage = $type->getStages()->getByPrimary($this->getStageId());
	}

	return $stage;
}