Lines 632-638
sub BuildItemsData{
Link Here
|
632 |
$this_row{isbn} = $biblio->biblioitem->isbn; |
632 |
$this_row{isbn} = $biblio->biblioitem->isbn; |
633 |
$this_row{biblionumber} = $biblio->biblionumber; |
633 |
$this_row{biblionumber} = $biblio->biblionumber; |
634 |
$this_row{holds} = $biblio->holds->count; |
634 |
$this_row{holds} = $biblio->holds->count; |
635 |
$this_row{item_holds} = Koha::Holds->search( itemnumber => $itemnumber )->count; |
635 |
$this_row{item_holds} = Koha::Holds->search( { itemnumber => $itemnumber } )->count; |
636 |
|
636 |
|
637 |
if (%this_row) { |
637 |
if (%this_row) { |
638 |
push(@big_array, \%this_row); |
638 |
push(@big_array, \%this_row); |
639 |
- |
|
|