• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/basketitembase.php
  • Класс: BitrixSaleBasketItemBase
  • Вызов: BasketItemBase::isChanged
public function isChanged()
{
	$isChanged = parent::isChanged();

	if ($isChanged === false)
	{
		$propertyCollection = $this->getPropertyCollection();
		$isChanged = $propertyCollection->isChanged();
	}

	return $isChanged;
}