THANASOFT-HFC/gestion/lib/Helpers/PriceHelpers.php
2025-03-03 09:03:58 +03:00

21 lines
342 B
PHP

<?php
namespace OCA\Gestion\Helpers;
use DateTime;
use DateTimeZone;
use Exception;
class PriceHelpers
{
public static function calculPriceWithVatValue($price,$vat)
{
return ($price * (1 + ($vat / 100)));
}
public static function formatDecimalPrice($price){
return number_format($price,2,'.','');
}
}