• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/entitycollection.php
  • Класс: BitrixSaleInternalsEntityCollection
  • Вызов: EntityCollection::isChanged
public function isChanged()
{
	if (count($this->collection) > 0)
	{
		/** @var Entity $item */
		foreach ($this->collection as $item)
		{
			if ($item->isChanged())
			{
				return true;
			}
		}
	}

	return $this->isAnyItemDeleted() || $this->isAnyItemAdded();
}