Lines 402-408
sub _get_outstanding_holds {
Link Here
|
402 |
else { |
402 |
else { |
403 |
# We need to return a barcode for the biblio so the client |
403 |
# We need to return a barcode for the biblio so the client |
404 |
# can request the biblio info |
404 |
# can request the biblio info |
405 |
$item = ( GetItemnumbersForBiblio($h->{biblionumber}) )[0]; |
405 |
$item = ( GetItemnumbersForBiblio($h->{biblionumber}) )->[0]; |
406 |
} |
406 |
} |
407 |
$h->{barcode} = GetBarcodeFromItemnumber($item); |
407 |
$h->{barcode} = GetBarcodeFromItemnumber($item); |
408 |
} |
408 |
} |
409 |
- |
|
|