• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Field/Stage.php
  • Класс: Bitrix\Crm\Field\Stage
  • Вызов: Stage::isValueChanged
public function isValueChanged(Item $item): bool
{
	$fieldName = $this->getName();

	return $item->isNew()
		? $item->getDefaultValue($fieldName) !== $item->get($fieldName)
		: $item->isChanged($fieldName);
}