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

(-)a/circ/pendingreserves.pl (-2 / +9 lines)
Lines 285-291 foreach my $bibnum ( @biblionumbers ){ Link Here
285
    }
285
    }
286
286
287
    if ( $res_info->item_group ) {
287
    if ( $res_info->item_group ) {
288
       $hold_info->{barcodes} = [ uniq map { defined $_->barcode && $_->item_group && ( $_->item_group->id == $res_info->item_group_id )  ? $_->barcode : () } @$items ];
288
        my @items = uniq map {
289
                 defined $_->barcode
290
              && $_->item_group
291
              && ( $_->item_group->id == $res_info->item_group_id )
292
              ? $_->barcode
293
              : ()
294
        } @$items;
295
        next unless @items;
296
        $hold_info->{barcodes} = \@items;
289
    }
297
    }
290
298
291
    # items available
299
    # items available
292
- 

Return to bug 24860