@@ -, +, @@ OPACAcquisitionDetails behavior commit 7d10549ae8632e6640d3a99014268a2a1e46b3c4 Bug 21205: Replace C4::Items::GetOrderFromItemnumber calls --- opac/opac-detail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/opac/opac-detail.pl +++ a/opac/opac-detail.pl @@ -661,7 +661,7 @@ if ( C4::Context->preference('OPACAcquisitionDetails' ) ) { if ( $basket->effective_create_items eq 'ordering' ) { @itemnumbers_on_order = $order->items->get_column('itemnumber'); } - $total_quantity += $order->{quantity}; + $total_quantity += $order->quantity; } $template->{VARS}->{acquisition_details} = { total_quantity => $total_quantity, --