View | Details | Raw Unified | Return to bug 24051
Collapse All | Expand All

(-)a/tools/batchMod.pl (-2 / +1 lines)
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
- 

Return to bug 24051