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