• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/entitycollection.php
  • Класс: BitrixSaleInternalsEntityCollection
  • Вызов: EntityCollection::clearChanged
public function clearChanged()
{
	if (!empty($this->collection))
	{
		foreach ($this->collection as $entityItem)
		{
			if ($entityItem instanceof Entity)
			{
				$entityItem->clearChanged();
			}
		}
	}
}