Explorar el Código

Merge branch 'dev'

prodstable
Guillaume Bourgeois hace 2 años
padre
commit
363a1595fc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php Ver fichero

@@ -61,7 +61,7 @@ class Price
$priceWithoutTax = self::round($priceWithoutTax);
$vat = self::getVat($priceWithoutTax, $taxRate, $taxCalculationMethod);

return $priceWithoutTax + $vat;
return self::numberTwoDecimals(self::round($priceWithoutTax + $vat));
}

public static function getVat($priceTotalWithoutTax, $taxRate, $taxCalculationMethod = Document::TAX_CALCULATION_METHOD_DEFAULT)

Cargando…
Cancelar
Guardar