Booking edit v3

This commit is contained in:
Kevin Adametz 2021-06-18 15:00:12 +02:00
parent 6706d28f51
commit 6880c7e989
20 changed files with 691 additions and 97 deletions

View file

@ -45,8 +45,8 @@ class Util
}
public static function _number_format($value){
return number_format(($value), 2, ',', '.');
public static function _number_format($value, $dec=2){
return number_format(($value), $dec, ',', '.');
}