CCrmTax::GetAll

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmTax
  4. GetAll
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_tax.php
  • Класс: \CCrmTax
  • Вызов: CCrmTax::GetAll
static function GetAll()
{
	$taxes = self::$TAXES ?? null;

	if(!$taxes && Loader::includeModule('sale'))
	{
		$taxes = array();
		$dbResultList = CSaleTax::GetList( array('NAME' => 'ASC')	);

		while ($arTax = $dbResultList->Fetch())
			$taxes[$arTax['ID']] = $arTax;

		self::$TAXES = $taxes;
	}

	return $taxes;
}

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