Merge branch '21.05.x' of git.koha-community.org:Koha-community/Koha into 21.05.x
[koha.git] / reserve / request.pl
1 #!/usr/bin/perl
2
3
4 #written 2/1/00 by chris@katipo.oc.nz
5 # Copyright 2000-2002 Katipo Communications
6 # Parts Copyright 2011 Catalyst IT
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23 =head1 request.pl
24
25 script to place reserves/requests
26
27 =cut
28
29 use Modern::Perl;
30
31 use CGI qw ( -utf8 );
32 use List::MoreUtils qw/uniq/;
33 use Date::Calc qw/Date_to_Days/;
34 use C4::Output;
35 use C4::Auth;
36 use C4::Reserves;
37 use C4::Biblio;
38 use C4::Items;
39 use C4::Koha;
40 use C4::Serials;
41 use C4::Circulation;
42 use Koha::DateUtils;
43 use C4::Utils::DataTables::Members;
44 use C4::Members;
45 use C4::Search;         # enabled_staff_search_views
46
47 use Koha::Biblios;
48 use Koha::DateUtils;
49 use Koha::Checkouts;
50 use Koha::Holds;
51 use Koha::CirculationRules;
52 use Koha::Items;
53 use Koha::ItemTypes;
54 use Koha::Libraries;
55 use Koha::Patrons;
56 use Koha::Clubs;
57
58 my $dbh = C4::Context->dbh;
59 my $input = CGI->new;
60 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user(
61     {
62         template_name   => "reserve/request.tt",
63         query           => $input,
64         type            => "intranet",
65         flagsrequired   => { reserveforothers => 'place_holds' },
66     }
67 );
68
69 my $showallitems = $input->param('showallitems');
70 my $pickup = $input->param('pickup');
71
72 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
73
74 # Select borrowers infos
75 my $findborrower = $input->param('findborrower');
76 $findborrower = '' unless defined $findborrower;
77 $findborrower =~ s|,| |g;
78 my $findclub = $input->param('findclub');
79 $findclub = '' unless defined $findclub && !$findborrower;
80 my $borrowernumber_hold = $input->param('borrowernumber') || '';
81 my $club_hold = $input->param('club')||'';
82 my $messageborrower;
83 my $messageclub;
84 my $warnings;
85 my $messages;
86 my $exceeded_maxreserves;
87 my $exceeded_holds_per_record;
88
89 my $date = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
90 my $action = $input->param('action');
91 $action ||= q{};
92
93 if ( $action eq 'move' ) {
94   my $where           = $input->param('where');
95   my $reserve_id      = $input->param('reserve_id');
96   my $prev_priority   = $input->param('prev_priority');
97   my $next_priority   = $input->param('next_priority');
98   my $first_priority  = $input->param('first_priority');
99   my $last_priority   = $input->param('last_priority');
100   my $hold_itemnumber = $input->param('itemnumber');
101   if ( $prev_priority == 0 && $next_priority == 1 ){
102       C4::Reserves::RevertWaitingStatus({ itemnumber => $hold_itemnumber });
103   } else {
104       AlterPriority( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority );
105   }
106 } elsif ( $action eq 'cancel' ) {
107   my $reserve_id = $input->param('reserve_id');
108   my $cancellation_reason = $input->param("cancellation-reason");
109   my $hold = Koha::Holds->find( $reserve_id );
110   $hold->cancel({ cancellation_reason => $cancellation_reason }) if $hold;
111 } elsif ( $action eq 'setLowestPriority' ) {
112   my $reserve_id = $input->param('reserve_id');
113   ToggleLowestPriority( $reserve_id );
114 } elsif ( $action eq 'toggleSuspend' ) {
115   my $reserve_id = $input->param('reserve_id');
116   my $suspend_until  = $input->param('suspend_until');
117   ToggleSuspend( $reserve_id, $suspend_until );
118 }
119
120 if ($findborrower) {
121     my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
122     if ( $patron ) {
123         $borrowernumber_hold = $patron->borrowernumber;
124     } else {
125         my $dt_params = { iDisplayLength => -1 };
126         my $results = C4::Utils::DataTables::Members::search(
127             {
128                 searchmember => $findborrower,
129                 dt_params => $dt_params,
130             }
131         );
132         my $borrowers = $results->{patrons};
133         if ( scalar @$borrowers == 1 ) {
134             $borrowernumber_hold = $borrowers->[0]->{borrowernumber};
135         } elsif ( @$borrowers ) {
136             $template->param( borrowers => $borrowers );
137         } else {
138             $messageborrower = "'$findborrower'";
139         }
140     }
141 }
142
143 if($findclub) {
144     my $club = Koha::Clubs->find( { name => $findclub } );
145     if( $club ) {
146         $club_hold = $club->id;
147     } else {
148         my @clubs = Koha::Clubs->search( [
149             { name => { like => '%'.$findclub.'%' } },
150             { description => { like => '%'.$findclub.'%' } }
151         ] );
152         if( scalar @clubs == 1 ) {
153             $club_hold = $clubs[0]->id;
154         } elsif ( @clubs ) {
155             $template->param( clubs => \@clubs );
156         } else {
157             $messageclub = "'$findclub'";
158         }
159     }
160 }
161
162 my @biblionumbers = ();
163 my $biblionumber = $input->param('biblionumber');
164 my $biblionumbers = $input->param('biblionumbers');
165 if ( $biblionumbers ) {
166     @biblionumbers = split '/', $biblionumbers;
167 } else {
168     push @biblionumbers, $input->multi_param('biblionumber');
169 }
170
171 my $multi_hold = @biblionumbers > 1;
172 $template->param(
173     multi_hold => $multi_hold,
174 );
175
176 # If we have the borrowernumber because we've performed an action, then we
177 # don't want to try to place another reserve.
178 if ($borrowernumber_hold && !$action) {
179     my $patron = Koha::Patrons->find( $borrowernumber_hold );
180     my $diffbranch;
181
182     # we check the reserves of the user, and if they can reserve a document
183     # FIXME At this time we have a simple count of reservs, but, later, we could improve the infos "title" ...
184
185     my $reserves_count = $patron->holds->count;
186
187     my $new_reserves_count = scalar( @biblionumbers );
188
189     my $maxreserves = C4::Context->preference('maxreserves');
190     $template->param( maxreserves => $maxreserves );
191
192     if ( $maxreserves
193         && ( $reserves_count + $new_reserves_count > $maxreserves ) )
194     {
195         my $new_reserves_allowed =
196             $maxreserves - $reserves_count > 0
197           ? $maxreserves - $reserves_count
198           : 0;
199         $warnings             = 1;
200         $exceeded_maxreserves = 1;
201         $template->param(
202             new_reserves_allowed => $new_reserves_allowed,
203             new_reserves_count   => $new_reserves_count,
204             reserves_count       => $reserves_count,
205             maxreserves          => $maxreserves,
206         );
207     }
208
209     # we check the date expiry of the borrower (only if there is an expiry date, otherwise, set to 1 (warn)
210     my $expiry_date = $patron->dateexpiry;
211     my $expiry = 0; # flag set if patron account has expired
212     if ($expiry_date and
213         Date_to_Days(split /-/,$date) > Date_to_Days(split /-/,$expiry_date)) {
214         $expiry = 1;
215     }
216
217     # check if the borrower make the reserv in a different branch
218     if ( $patron->branchcode ne C4::Context->userenv->{'branch'} ) {
219         $diffbranch = 1;
220     }
221
222     my $amount_outstanding = $patron->account->balance;
223     $template->param(
224                 patron              => $patron,
225                 expiry              => $expiry,
226                 diffbranch          => $diffbranch,
227                 messages            => $messages,
228                 warnings            => $warnings,
229                 amount_outstanding  => $amount_outstanding,
230     );
231 }
232
233 if ($club_hold && !$borrowernumber_hold && !$action) {
234     my $club = Koha::Clubs->find($club_hold);
235
236     my $enrollments = $club->club_enrollments;
237
238     my $maxreserves = C4::Context->preference('maxreserves');
239     my $new_reserves_count = scalar( @biblionumbers );
240
241     my @members;
242
243     while(my $enrollment = $enrollments->next) {
244         next if $enrollment->is_canceled;
245         my $member = { patron => $enrollment->patron->unblessed };
246         my $reserves_count = $enrollment->patron->holds->count;
247         if ( $maxreserves
248             && ( $reserves_count + $new_reserves_count > $maxreserves ) )
249         {
250             $member->{new_reserves_allowed} = $maxreserves - $reserves_count > 0
251                 ? $maxreserves - $reserves_count
252                 : 0;
253             $member->{exceeded_maxreserves} = 1;
254         }
255         my $expiry_date = $enrollment->patron->dateexpiry;
256         $member->{expiry} = 0; # flag set if patron account has expired
257         if ($expiry_date and
258             Date_to_Days(split /-/,$date) > Date_to_Days(split /-/,$expiry_date)) {
259             $member->{expiry} = 1;
260         }
261         $member->{amount_outstanding} = $enrollment->patron->account->balance;
262         if ( $enrollment->patron->branchcode ne C4::Context->userenv->{'branch'} ) {
263             $member->{diffbranch} = 1;
264         }
265
266         push @members, $member;
267     }
268
269     $template->param(
270         club                => $club,
271         members             => \@members,
272         maxreserves         => $maxreserves,
273         new_reserves_count  => $new_reserves_count
274     );
275 }
276
277 unless ( $club_hold or $borrowernumber_hold ) {
278     $template->param( clubcount => Koha::Clubs->search->count );
279 }
280
281 $template->param(
282     messageborrower => $messageborrower,
283     messageclub     => $messageclub
284 );
285
286 # FIXME launch another time GetMember perhaps until (Joubu: Why?)
287 my $patron = Koha::Patrons->find( $borrowernumber_hold );
288
289 if ( $patron && $multi_hold ) {
290     my @multi_pickup_locations =
291       Koha::Biblios->search( { biblionumber => \@biblionumbers } )
292       ->pickup_locations( { patron => $patron } );
293     $template->param( multi_pickup_locations => \@multi_pickup_locations );
294 }
295
296 my $logged_in_patron = Koha::Patrons->find( $borrowernumber );
297
298 my $wants_check;
299 if ($patron) {
300     $wants_check = $patron->wants_check_for_previous_checkout;
301 }
302 my $itemdata_enumchron = 0;
303 my $itemdata_ccode = 0;
304 my @biblioloop = ();
305 my $no_reserves_allowed = 0;
306 foreach my $biblionumber (@biblionumbers) {
307     next unless $biblionumber =~ m|^\d+$|;
308
309     my %biblioloopiter = ();
310
311     my $biblio = Koha::Biblios->find( $biblionumber );
312     unless ($biblio) {
313         $biblioloopiter{noitems} = 1;
314         $template->param('nobiblio' => 1);
315         last;
316     }
317
318     my $force_hold_level;
319     if ( $patron ) {
320         { # CanBookBeReserved
321             my $canReserve = CanBookBeReserved( $patron->borrowernumber, $biblionumber );
322             if ( $canReserve->{status} eq 'OK' ) {
323
324                 #All is OK and we can continue
325             }
326             elsif ( $canReserve->{status} eq 'noReservesAllowed' || $canReserve->{status} eq 'notReservable' ) {
327                 $no_reserves_allowed = 1;
328             }
329             elsif ( $canReserve->{status} eq 'tooManyReserves' ) {
330                 $exceeded_maxreserves = 1;
331                 $template->param( maxreserves => $canReserve->{limit} );
332             }
333             elsif ( $canReserve->{status} eq 'tooManyHoldsForThisRecord' ) {
334                 $exceeded_holds_per_record = 1;
335                 $biblioloopiter{ $canReserve->{status} } = 1;
336             }
337             elsif ( $canReserve->{status} eq 'ageRestricted' ) {
338                 $template->param( $canReserve->{status} => 1 );
339                 $biblioloopiter{ $canReserve->{status} } = 1;
340             }
341             elsif ( $canReserve->{status} eq 'alreadypossession' ) {
342                 $template->param( $canReserve->{status} => 1);
343                 $biblioloopiter{ $canReserve->{status} } = 1;
344             }
345             else {
346                 $biblioloopiter{ $canReserve->{status} } = 1;
347             }
348         }
349
350         # For multiple holds per record, if a patron has previously placed a hold,
351         # the patron can only place more holds of the same type. That is, if the
352         # patron placed a record level hold, all the holds the patron places must
353         # be record level. If the patron placed an item level hold, all holds
354         # the patron places must be item level
355         my $holds = Koha::Holds->search(
356             {
357                 borrowernumber => $patron->borrowernumber,
358                 biblionumber   => $biblionumber,
359                 found          => undef,
360             }
361         );
362         $force_hold_level = $holds->forced_hold_level();
363         $biblioloopiter{force_hold_level} = $force_hold_level;
364         $template->param( force_hold_level => $force_hold_level );
365
366         # For a librarian to be able to place multiple record holds for a patron for a record,
367         # we must find out what the maximum number of holds they can place for the patron is
368         my $max_holds_for_record = GetMaxPatronHoldsForRecord( $patron->borrowernumber, $biblionumber );
369         my $remaining_holds_for_record = $max_holds_for_record - $holds->count();
370         $biblioloopiter{remaining_holds_for_record} = $max_holds_for_record;
371         $template->param( max_holds_for_record => $max_holds_for_record );
372         $template->param( remaining_holds_for_record => $remaining_holds_for_record );
373     }
374
375
376     my $count = Koha::Holds->search( { biblionumber => $biblionumber } )->count();
377     my $totalcount = $count;
378
379     # adding a fixed value for priority options
380     my $fixedRank = $count+1;
381
382     my %itemnumbers_of_biblioitem;
383
384     my @hostitems = get_hostitemnumbers_of($biblionumber);
385     my @itemnumbers;
386     if (@hostitems){
387         $template->param('hostitemsflag' => 1);
388         push(@itemnumbers, @hostitems);
389     }
390
391     my $items = Koha::Items->search({ -or => { biblionumber => $biblionumber, itemnumber => { in => \@itemnumbers } } });
392
393     unless ( $items->count ) {
394         # FIXME Then why do we continue?
395         $template->param('noitems' => 1) unless ( $multi_hold );
396         $biblioloopiter{noitems} = 1;
397     }
398
399     ## Here we go backwards again to create hash of biblioitemnumber to itemnumbers
400     ## this is important when we have analytic items which may be on another record
401     my ( $iteminfos_of );
402     while ( my $item = $items->next ) {
403         $item = $item->unblessed;
404         my $biblioitemnumber = $item->{biblioitemnumber};
405         my $itemnumber = $item->{itemnumber};
406         push( @{ $itemnumbers_of_biblioitem{$biblioitemnumber} }, $itemnumber );
407         $iteminfos_of->{$itemnumber} = $item;
408     }
409
410     my @biblioitemnumbers = keys %itemnumbers_of_biblioitem;
411
412     my $biblioiteminfos_of = {
413         map {
414             my $biblioitem = $_;
415             ( $biblioitem->{biblioitemnumber} => $biblioitem )
416           } @{ Koha::Biblioitems->search(
417                 { biblioitemnumber => { -in => \@biblioitemnumbers } },
418                 { select => ['biblionumber', 'biblioitemnumber', 'publicationyear', 'itemtype']}
419             )->unblessed
420           }
421     };
422
423     my @bibitemloop;
424
425     my @available_itemtypes;
426     foreach my $biblioitemnumber (@biblioitemnumbers) {
427         my $biblioitem = $biblioiteminfos_of->{$biblioitemnumber};
428         my $num_available = 0;
429         my $num_override  = 0;
430         my $hiddencount   = 0;
431         my $num_alreadyheld = 0;
432
433         $biblioitem->{force_hold_level} = $force_hold_level;
434
435         if ( $biblioitem->{biblioitemnumber} ne $biblionumber ) {
436             $biblioitem->{hostitemsflag} = 1;
437         }
438
439         $biblioloopiter{description} = $biblioitem->{description};
440         $biblioloopiter{itypename}   = $biblioitem->{description};
441         if ( $biblioitem->{itemtype} ) {
442
443             $biblioitem->{description} =
444               $itemtypes->{ $biblioitem->{itemtype} }{description};
445
446             $biblioloopiter{imageurl} =
447               getitemtypeimagelocation( 'intranet',
448                 $itemtypes->{ $biblioitem->{itemtype} }{imageurl} );
449         }
450
451         # iterating through all items first to check if any of them available
452         # to pass this value further inside down to IsAvailableForItemLevelRequest to
453         # it's complicated logic to analyse.
454         # (before this loop was inside that sub loop so it was O(n^2) )
455         my $items_any_available;
456         $items_any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $biblioitem->{biblionumber}, patron => $patron })
457             if $patron;
458
459         foreach my $itemnumber ( @{ $itemnumbers_of_biblioitem{$biblioitemnumber} } )    {
460             my $item = $iteminfos_of->{$itemnumber};
461             my $do_check;
462             if ( $patron ) {
463                 $do_check = $patron->do_check_for_previous_checkout($item) if $wants_check;
464                 if ( $do_check && $wants_check ) {
465                     $item->{checked_previously} = $do_check;
466                     if ( $multi_hold ) {
467                         $biblioloopiter{checked_previously} = $do_check;
468                     } else {
469                         $template->param( checked_previously => $do_check );
470                     }
471                 }
472             }
473             $item->{force_hold_level} = $force_hold_level;
474
475             unless (C4::Context->preference('item-level_itypes')) {
476                 $item->{itype} = $biblioitem->{itemtype};
477             }
478
479             $item->{itypename} = $itemtypes->{ $item->{itype} }{description};
480             $item->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $item->{itype} }{imageurl} );
481             $item->{homebranch} = $item->{homebranch};
482
483             # if the holdingbranch is different than the homebranch, we show the
484             # holdingbranch of the document too
485             if ( $item->{homebranch} ne $item->{holdingbranch} ) {
486                 $item->{holdingbranch} = $item->{holdingbranch};
487             }
488
489             if($item->{biblionumber} ne $biblionumber){
490                 $item->{hostitemsflag} = 1;
491                 $item->{hosttitle} = Koha::Biblios->find( $item->{biblionumber} )->title;
492             }
493
494             # if the item is currently on loan, we display its return date and
495             # change the background color
496             my $issue = Koha::Checkouts->find( { itemnumber => $itemnumber } );
497             if ( $issue ) {
498                 $item->{date_due} = $issue->date_due;
499                 $item->{backgroundcolor} = 'onloan';
500             }
501
502             # checking reserve
503             my $item_object = Koha::Items->find( $itemnumber );
504             my $holds = $item_object->current_holds;
505             if ( my $first_hold = $holds->next ) {
506                 my $p = Koha::Patrons->find( $first_hold->borrowernumber );
507
508                 $item->{backgroundcolor} = 'reserved';
509                 $item->{reservedate}     = output_pref({ dt => dt_from_string( $first_hold->reservedate ), dateonly => 1 }); # FIXME Should be formatted in the template
510                 $item->{ReservedFor}     = $p;
511                 $item->{ExpectedAtLibrary}     = $first_hold->branchcode;
512                 $item->{waitingdate} = $first_hold->waitingdate;
513             }
514
515             # Management of the notforloan document
516             if ( $item->{notforloan} ) {
517                 $item->{backgroundcolor} = 'other';
518             }
519
520             # Management of lost or long overdue items
521             if ( $item->{itemlost} ) {
522                 $item->{backgroundcolor} = 'other';
523                 if ($logged_in_patron->category->hidelostitems && !$showallitems) {
524                     $item->{hide} = 1;
525                     $hiddencount++;
526                 }
527             }
528
529             # Check the transit status
530             my ( $transfertwhen, $transfertfrom, $transfertto ) =
531               GetTransfers($itemnumber);
532
533             if ( defined $transfertwhen && $transfertwhen ne '' ) {
534                 $item->{transfertwhen} = output_pref({ dt => dt_from_string( $transfertwhen ), dateonly => 1 });
535                 $item->{transfertfrom} = $transfertfrom;
536                 $item->{transfertto} = $transfertto;
537                 $item->{nocancel} = 1;
538             }
539
540             # If there is no loan, return and transfer, we show a checkbox.
541             $item->{notforloan} ||= 0;
542
543             # if independent branches is on we need to check if the person can reserve
544             # for branches they arent logged in to
545             if ( C4::Context->preference("IndependentBranches") ) {
546                 if (! C4::Context->preference("canreservefromotherbranches")){
547                     # can't reserve items so need to check if item homebranch and userenv branch match if not we can't reserve
548                     my $userenv = C4::Context->userenv;
549                     unless ( C4::Context->IsSuperLibrarian ) {
550                         $item->{cantreserve} = 1 if ( $item->{homebranch} ne $userenv->{branch} );
551                     }
552                 }
553             }
554
555             if ( $patron ) {
556                 my $patron_unblessed = $patron->unblessed;
557                 my $branch = C4::Circulation::_GetCircControlBranch($item, $patron_unblessed);
558
559                 my $branchitemrule = GetBranchItemRule( $branch, $item->{'itype'} );
560
561                 $item->{'holdallowed'} = $branchitemrule->{'holdallowed'};
562
563                 my $can_item_be_reserved = CanItemBeReserved( $patron->borrowernumber, $itemnumber )->{status};
564                 $item->{not_holdable} = $can_item_be_reserved unless ( $can_item_be_reserved eq 'OK' );
565
566                 $item->{item_level_holds} = Koha::CirculationRules->get_opacitemholds_policy( { item => $item_object, patron => $patron } );
567
568                 if (
569                        !$item->{cantreserve}
570                     && !$exceeded_maxreserves
571                     && $can_item_be_reserved eq 'OK'
572                     # items_any_available defined outside of the current loop,
573                     # so we avoiding loop inside IsAvailableForItemLevelRequest:
574                     && IsAvailableForItemLevelRequest($item_object, $patron, undef, $items_any_available)
575                   )
576                 {
577                     # Send the pickup locations count to the UI, the pickup locations will be pulled using the API
578                     my $pickup_locations = $item_object->pickup_locations({ patron => $patron });
579                     $item->{pickup_locations_count} = $pickup_locations->count;
580                     if ( $item->{pickup_locations_count} > 0 ) {
581                         $num_available++;
582                         $item->{available} = 1;
583                         # pass the holding branch for use as default
584                         my $default_pickup_location = $pickup_locations->search({ branchcode => $item->{holdingbranch} })->next;
585                         $item->{default_pickup_location} = $default_pickup_location;
586                     }
587                     else {
588                         $item->{available} = 0;
589                         $item->{not_holdable} = "no_valid_pickup_location";
590                     }
591
592                     push( @available_itemtypes, $item->{itype} );
593                 }
594                 elsif ( C4::Context->preference('AllowHoldPolicyOverride') ) {
595                     # If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
596                     # with the exception of itemAlreadyOnHold because, you know, the item is already on hold
597                     if ( $can_item_be_reserved ne 'itemAlreadyOnHold' ) {
598                         $item->{override} = 1;
599                         $num_override++;
600                     } else { $num_alreadyheld++ }
601
602                     push( @available_itemtypes, $item->{itype} );
603                 }
604
605                 # If none of the conditions hold true, then neither override nor available is set and the item cannot be checked
606
607                 # Show serial enumeration when needed
608                 if ($item->{enumchron}) {
609                     $itemdata_enumchron = 1;
610                 }
611                 # Show collection when needed
612                 if ($item->{ccode}) {
613                     $itemdata_ccode = 1;
614                 }
615             }
616
617             push @{ $biblioitem->{itemloop} }, $item;
618         }
619
620         # While we can't override an alreay held item, we should be able to override the others
621         # Unless all items are already held
622         if ( $num_override > 0 && ($num_override + $num_alreadyheld) == scalar( @{ $biblioitem->{itemloop} } ) ) {
623         # That is, if all items require an override
624             $template->param( override_required => 1 );
625         } elsif ( $num_available == 0 ) {
626             $template->param( none_available => 1 );
627             $biblioloopiter{warn} = 1;
628             $biblioloopiter{none_avail} = 1;
629         }
630         $template->param( hiddencount => $hiddencount);
631
632         push @bibitemloop, $biblioitem;
633     }
634
635     @available_itemtypes = uniq( @available_itemtypes );
636     $template->param( available_itemtypes => \@available_itemtypes );
637
638     # existingreserves building
639     my @reserveloop;
640     my @reserves = Koha::Holds->search( { biblionumber => $biblionumber }, { order_by => 'priority' } );
641     foreach my $res (
642         sort {
643             my $a_found = $a->found() || '';
644             my $b_found = $a->found() || '';
645             $a_found cmp $b_found;
646         } @reserves
647       )
648     {
649         my %reserve;
650         if ( $res->is_found() ) {
651             $reserve{'holdingbranch'} = $res->item()->holdingbranch();
652             $reserve{'biblionumber'}  = $res->item()->biblionumber();
653             $reserve{'barcodenumber'} = $res->item()->barcode();
654             $reserve{'wbrcode'}       = $res->branchcode();
655             $reserve{'itemnumber'}    = $res->itemnumber();
656             $reserve{'wbrname'}       = $res->branch()->branchname();
657             $reserve{'atdestination'} = $res->is_at_destination();
658             $reserve{'desk_name'}     = ( $res->desk() ) ? $res->desk()->desk_name() : '' ;
659             $reserve{'found'}     = $res->is_found();
660             $reserve{'inprocessing'} = $res->is_in_processing();
661             $reserve{'intransit'} = $res->is_in_transit();
662         }
663         elsif ( $res->priority() > 0 ) {
664             if ( my $item = $res->item() )  {
665                 $reserve{'itemnumber'}      = $item->id();
666                 $reserve{'barcodenumber'}   = $item->barcode();
667                 $reserve{'item_level_hold'} = 1;
668             }
669         }
670
671         $reserve{'expirationdate'} = $res->expirationdate;
672         $reserve{'date'}           = $res->reservedate;
673         $reserve{'borrowernumber'} = $res->borrowernumber();
674         $reserve{'biblionumber'}   = $res->biblionumber();
675         $reserve{'patron'}         = $res->borrower;
676         $reserve{'notes'}          = $res->reservenotes();
677         $reserve{'waiting_date'}   = $res->waitingdate();
678         $reserve{'ccode'}          = $res->item() ? $res->item()->ccode() : undef;
679         $reserve{'barcode'}        = $res->item() ? $res->item()->barcode() : undef;
680         $reserve{'priority'}       = $res->priority();
681         $reserve{'lowestPriority'} = $res->lowestPriority();
682         $reserve{'suspend'}        = $res->suspend();
683         $reserve{'suspend_until'}  = $res->suspend_until();
684         $reserve{'reserve_id'}     = $res->reserve_id();
685         $reserve{itemtype}         = $res->itemtype();
686         $reserve{branchcode}       = $res->branchcode();
687         $reserve{non_priority}     = $res->non_priority();
688         $reserve{object}           = $res;
689
690         push( @reserveloop, \%reserve );
691     }
692
693     # get the time for the form name...
694     my $time = time();
695
696     $template->param(
697                      time        => $time,
698                      fixedRank   => $fixedRank,
699                     );
700
701     # display infos
702     $template->param(
703                      bibitemloop       => \@bibitemloop,
704                      itemdata_enumchron => $itemdata_enumchron,
705                      itemdata_ccode    => $itemdata_ccode,
706                      date              => $date,
707                      biblionumber      => $biblionumber,
708                      findborrower      => $findborrower,
709                      biblio            => $biblio,
710                      holdsview         => 1,
711                      C4::Search::enabled_staff_search_views,
712                     );
713
714     $biblioloopiter{biblionumber} = $biblionumber;
715     $biblioloopiter{title} = $biblio->title;
716     $biblioloopiter{rank} = $fixedRank;
717     $biblioloopiter{reserveloop} = \@reserveloop;
718
719     if (@reserveloop) {
720         $template->param( reserveloop => \@reserveloop );
721     }
722
723     if ( $patron ) {
724         # Add the valid pickup locations
725         my @pickup_locations = $biblio->pickup_locations({ patron => $patron });
726         $biblioloopiter{pickup_locations} = \@pickup_locations;
727         $biblioloopiter{pickup_locations_codes} = [ map { $_->branchcode } @pickup_locations ];
728     }
729
730     push @biblioloop, \%biblioloopiter;
731 }
732
733 $template->param( biblioloop => \@biblioloop );
734 $template->param( no_reserves_allowed => $no_reserves_allowed );
735 $template->param( biblionumbers => join('/', @biblionumbers) );
736 $template->param( exceeded_maxreserves => $exceeded_maxreserves );
737 $template->param( exceeded_holds_per_record => $exceeded_holds_per_record );
738 $template->param( subscriptionsnumber => CountSubscriptionFromBiblionumber($biblionumber));
739
740 # pass the userenv branch if no pickup location selected
741 $template->param( pickup => $pickup || C4::Context->userenv->{branch} );
742
743 if ( C4::Context->preference( 'AllowHoldDateInFuture' ) ) {
744     $template->param( reserve_in_future => 1 );
745 }
746
747 $template->param(
748     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
749     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
750 );
751
752 # printout the page
753 output_html_with_http_headers $input, $cookie, $template->output;
754
755 sub sort_borrowerlist {
756     my $borrowerslist = shift;
757     my $ref           = [];
758     push @{$ref}, sort {
759         uc( $a->{surname} . $a->{firstname} ) cmp
760           uc( $b->{surname} . $b->{firstname} )
761     } @{$borrowerslist};
762     return $ref;
763 }