• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/tax/vatcalculator.php
  • Класс: BitrixSaleTaxVatCalculator
  • Вызов: VatCalculator::accrue
public function accrue(float $price, bool $withRound = true): float
{
	$priceWithVat = $price * (1 + $this->rate);

	return $withRound ? PriceMaths::roundPrecision($priceWithVat) : $priceWithVat;
}