• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/documentgenerator/dataprovider/product.php
  • Класс: Bitrix\Crm\Integration\DocumentGenerator\DataProvider\Product
  • Вызов: Product::getVatlessPrice
public function getVatlessPrice()
{
	if($this->data['TAX_INCLUDED'] === 'Y')
	{
		return $this->round($this->data['PRICE_RAW'] / (1 + $this->data['TAX_RATE']/100));
	}

	return $this->data['PRICE_EXCLUSIVE'];
}