@@ -, +, @@ syspref. --- acqui/basketgroup.pl | 3 +++ 1 file changed, 3 insertions(+) --- a/acqui/basketgroup.pl +++ a/acqui/basketgroup.pl @@ -56,6 +56,7 @@ use Koha::EDI qw/create_edi_order get_edifact_ean/; use Koha::Biblioitems; use Koha::Acquisition::Booksellers; +use Koha::Number::Price; use Koha::ItemTypes; use Koha::Patrons; @@ -83,6 +84,8 @@ sub BasketTotal { $total = $total + ( $order->{ecost_tax_excluded} * $order->{quantity} ); } } + my $formattotal = new Koha::Number::Price($total); + $total = $formattotal->format(); $total .= " " . ($bookseller->invoiceprice // 0); return $total; } --