• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/basketitembase.php
  • Класс: BitrixSaleBasketItemBase
  • Вызов: BasketItemBase::getPriceWithVat
public function getPriceWithVat()
{
	$price = $this->getPrice();

	if (!$this->isVatInPrice())
	{
		$vatRate = (float)$this->getVatRate();
		$price += $this->getPrice() * $vatRate;
	}

	return PriceMaths::roundPrecision($price);
}