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

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

	return PriceMaths::roundPrecision($price);
}