• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/command/update.php
  • Класс: BitrixRpaCommandUpdate
  • Вызов: Update::isItemChanged
protected function isItemChanged(): bool
{
	if($this->isItemChanged === null)
	{
		$this->isItemChanged = (
			$this->item->isChanged('STAGE_ID') ||
			!empty($this->item->getChangedUserFieldNames())
		);

		if ($this->isItemChanged)
		{
			$this->historyItem = clone $this->item;
		}
	}

	return $this->isItemChanged;
}