17 lines
233 B
PHP
17 lines
233 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)));
|
|
}
|
|
|
|
}
|