diff --git a/app/Utils/Number.php b/app/Utils/Number.php index 3876bb3da385..d53e335f98ab 100644 --- a/app/Utils/Number.php +++ b/app/Utils/Number.php @@ -244,6 +244,11 @@ class Number $precision = 2; } + //04-04-2023 if currency = JPY override precision to 0 + if($currency->code == 'JPY') { + $precision = 0; + } + $value = number_format($v, $precision, $decimal, $thousand); $symbol = $currency->symbol;