@@ -, +, @@ receipting --- acqui/finishreceive.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/acqui/finishreceive.pl +++ a/acqui/finishreceive.pl @@ -34,6 +34,7 @@ use C4::Search; use Koha::Acquisition::Booksellers; use List::MoreUtils qw/any/; +use Number::Format qw(unformat_number); my $input=new CGI; my $flagsrequired = {acquisition => 'order_receive'}; @@ -56,6 +57,7 @@ my $cnt = 0; my $bookfund = $input->param("bookfund"); my $order = GetOrder($ordernumber); my $new_ordernumber = $ordernumber; +$unitprice = unformat_number($unitprice); #need old receivedate if we update the order, parcel.pl only shows the right parcel this way FIXME if ($quantityrec > $origquantityrec ) { --