• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/Price/PriceRepository.php
  • Класс: BitrixCatalogv2PricePriceRepository
  • Вызов: PriceRepository::deleteInternal
protected function deleteInternal(int $id): Result
{
	$result = new Result();

	$res = Price::delete($id);

	if (!$res->isSuccess())
	{
		$result->addErrors($res->getErrors());
	}

	return $result;
}