• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/collectableentity.php
  • Класс: BitrixSaleInternalsCollectableEntity
  • Вызов: CollectableEntity::delete
public function delete()
{
	$collection = $this->getCollection();
	if (!$collection)
	{
		throw new MainObjectNotFoundException('Entity "CollectableEntity" not found');
	}

	/** @var Result $r */
	$collection->deleteItem($this->getInternalIndex());

	return new Result();
}