Lines 592-598
sub BuildItemsData{
Link Here
|
592 |
$this_row{isbn} = $biblio->biblioitem->isbn; |
592 |
$this_row{isbn} = $biblio->biblioitem->isbn; |
593 |
$this_row{biblionumber} = $biblio->biblionumber; |
593 |
$this_row{biblionumber} = $biblio->biblionumber; |
594 |
$this_row{holds} = $biblio->holds->count; |
594 |
$this_row{holds} = $biblio->holds->count; |
595 |
$this_row{item_holds} = Koha::Holds->search( itemnumber => $itemnumber )->count; |
595 |
$this_row{item_holds} = Koha::Holds->search( { itemnumber => $itemnumber } )->count; |
596 |
|
596 |
|
597 |
if (%this_row) { |
597 |
if (%this_row) { |
598 |
push(@big_array, \%this_row); |
598 |
push(@big_array, \%this_row); |
599 |
- |
|
|