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

	if (!$this->isVatInPrice())
		$price += $this->getVat();

	return $price;
}