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