View | Details | Raw Unified | Return to bug 22360
Collapse All | Expand All

(-)a/opac/opac-detail.pl (-2 / +1 lines)
Lines 661-667 if ( C4::Context->preference('OPACAcquisitionDetails' ) ) { Link Here
661
        if ( $basket->effective_create_items eq 'ordering' ) {
661
        if ( $basket->effective_create_items eq 'ordering' ) {
662
            @itemnumbers_on_order = $order->items->get_column('itemnumber');
662
            @itemnumbers_on_order = $order->items->get_column('itemnumber');
663
        }
663
        }
664
        $total_quantity += $order->{quantity};
664
        $total_quantity += $order->quantity;
665
    }
665
    }
666
    $template->{VARS}->{acquisition_details} = {
666
    $template->{VARS}->{acquisition_details} = {
667
        total_quantity => $total_quantity,
667
        total_quantity => $total_quantity,
668
- 

Return to bug 22360