CCrmQuoteRestProxy::getProductRows

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmQuoteRestProxy
  4. getProductRows
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmQuoteRestProxy
  • Вызов: CCrmQuoteRestProxy::getProductRows
public function getProductRows($ID)
{
	$ID = intval($ID);
	if($ID <= 0)
	{
		throw new RestException('The parameter id is invalid or not defined.');
	}

	if(!CCrmQuote::CheckReadPermission($ID))
	{
		throw new RestException('Access denied.');
	}

	return CCrmQuote::LoadProductRows($ID);
}

Добавить комментарий