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

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

	return $price;
}