@@ -, +, @@ order - On a server with locale 'fr_FR' - With Plack mode - Set CurrencyFormat on 'US' - Open a basket - Place an order for an item - Close basket - Receive order with changing 'Actual Cost' to '1,234' - Note the 'Actual Cost' is now '1.23' - Run unit test t/Number/Price.t without and with patch --- Koha/Number/Price.pm | 3 +++ 1 file changed, 3 insertions(+) --- a/Koha/Number/Price.pm +++ a/Koha/Number/Price.pm @@ -87,8 +87,11 @@ sub _format_params { my $int_curr_symbol = q||; my %format_params = ( + decimal_fill => '2', + decimal_point => '.', int_curr_symbol => $int_curr_symbol, mon_thousands_sep => ',', + thousands_sep => ',', mon_decimal_point => '.' ); --