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

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

Return to bug 22360