@@ -, +, @@ it's 0. --- acqui/addorder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/acqui/addorder.pl +++ a/acqui/addorder.pl @@ -283,7 +283,7 @@ if ( $basket->{is_standing} || $orderinfo->{quantity} ne '0' ) { ); } - $orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq ''; + $orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq '' or $orderinfo->{unitprice} == 0; $orderinfo = C4::Acquisition::populate_order_with_prices( { --