Lines 459-468
if ($session->param('busc')) {
Link Here
|
459 |
} |
459 |
} |
460 |
} |
460 |
} |
461 |
|
461 |
|
462 |
|
462 |
$template->param( |
463 |
$template->param( 'ItemsIssued' => CountItemsIssued( $biblionumber ) ); |
463 |
ItemsIssued => CountItemsIssued( $biblionumber ), |
464 |
$template->param('OPACShowCheckoutName' => C4::Context->preference("OPACShowCheckoutName") ); |
464 |
ItemsWaiting => Koha::Holds->search({biblionumber => $biblionumber, found => 'W'})->count(), |
465 |
$template->param('OPACShowBarcode' => C4::Context->preference("OPACShowBarcode") ); |
465 |
OPACShowCheckoutName => C4::Context->preference("OPACShowCheckoutName"), |
|
|
466 |
OPACShowBarcode => C4::Context->preference("OPACShowBarcode") |
467 |
); |
466 |
|
468 |
|
467 |
# adding items linked via host biblios |
469 |
# adding items linked via host biblios |
468 |
|
470 |
|
469 |
- |
|
|