Bug 28959: Add virtualshelves.public as a boolean
[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 use Koha::BackgroundJob::BatchCancelHold;
56
57 my $dbh = C4::Context->dbh;
58 my $input = CGI->new;
59 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user(
60     {
61         template_name   => "reserve/request.tt",
62         query           => $input,
63         type            => "intranet",
64         flagsrequired   => { reserveforothers => 'place_holds' },
65     }
66 );
67
68 my $showallitems = $input->param('showallitems');
69 my $pickup = $input->param('pickup');
70
71 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
72
73 # Select borrowers infos
74 my $findborrower = $input->param('findborrower');
75 $findborrower = '' unless defined $findborrower;
76 $findborrower =~ s|,| |g;
77 my $findclub = $input->param('findclub');
78 $findclub = '' unless defined $findclub && !$findborrower;
79 my $borrowernumber_hold = $input->param('borrowernumber') || '';
80 my $club_hold = $input->param('club')||'';
81 my $messageborrower;
82 my $messageclub;
83 my $warnings;
84 my $messages;
85 my $exceeded_maxreserves;
86 my $exceeded_holds_per_record;
87
88 my $date = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
89 my $action = $input->param('action');
90 $action ||= q{};
91
92 if ( $action eq 'move' ) {
93     my $where           = $input->param('where');
94     my $reserve_id      = $input->param('reserve_id');
95     my $prev_priority   = $input->param('prev_priority');
96     my $next_priority   = $input->param('next_priority');
97     my $first_priority  = $input->param('first_priority');
98     my $last_priority   = $input->param('last_priority');
99     my $hold_itemnumber = $input->param('itemnumber');
100     if ( $prev_priority == 0 && $next_priority == 1 ) {
101         C4::Reserves::RevertWaitingStatus( { itemnumber => $hold_itemnumber } );
102     }
103     else {
104         AlterPriority(
105             $where,         $reserve_id,     $prev_priority,
106             $next_priority, $first_priority, $last_priority
107         );
108     }
109 }
110 elsif ( $action eq 'cancel' ) {
111     my $reserve_id          = $input->param('reserve_id');
112     my $cancellation_reason = $input->param("cancellation-reason");
113     my $hold                = Koha::Holds->find($reserve_id);
114     $hold->cancel( { cancellation_reason => $cancellation_reason } ) if $hold;
115 }
116 elsif ( $action eq 'setLowestPriority' ) {
117     my $reserve_id = $input->param('reserve_id');
118     ToggleLowestPriority($reserve_id);
119 }
120 elsif ( $action eq 'toggleSuspend' ) {
121     my $reserve_id    = $input->param('reserve_id');
122     my $suspend_until = $input->param('suspend_until');
123     ToggleSuspend( $reserve_id, $suspend_until );
124 }
125 elsif ( $action eq 'cancelBulk' ) {
126     my $cancellation_reason = $input->param("cancellation-reason");
127     my @hold_ids            = split ',', $input->param("ids");
128     my $params              = {
129         reason   => $cancellation_reason,
130         hold_ids => \@hold_ids,
131     };
132     my $job_id = Koha::BackgroundJob::BatchCancelHold->new->enqueue($params);
133
134     $template->param(
135         enqueued => 1,
136         job_id   => $job_id
137     );
138 }
139
140 if ($findborrower) {
141     my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
142     if ( $patron ) {
143         $borrowernumber_hold = $patron->borrowernumber;
144     } else {
145         my $dt_params = { iDisplayLength => -1 };
146         my $results = C4::Utils::DataTables::Members::search(
147             {
148                 searchmember => $findborrower,
149                 dt_params => $dt_params,
150             }
151         );
152         my $borrowers = $results->{patrons};
153         if ( scalar @$borrowers == 1 ) {
154             $borrowernumber_hold = $borrowers->[0]->{borrowernumber};
155         } elsif ( @$borrowers ) {
156             $template->param( borrowers => $borrowers );
157         } else {
158             $messageborrower = "'$findborrower'";
159         }
160     }
161 }
162
163 if($findclub) {
164     my $club = Koha::Clubs->find( { name => $findclub } );
165     if( $club ) {
166         $club_hold = $club->id;
167     } else {
168         my @clubs = Koha::Clubs->search( [
169             { name => { like => '%'.$findclub.'%' } },
170             { description => { like => '%'.$findclub.'%' } }
171         ] );
172         if( scalar @clubs == 1 ) {
173             $club_hold = $clubs[0]->id;
174         } elsif ( @clubs ) {
175             $template->param( clubs => \@clubs );
176         } else {
177             $messageclub = "'$findclub'";
178         }
179     }
180 }
181
182 my @biblionumbers = ();
183 my $biblionumber = $input->param('biblionumber');
184 my $biblionumbers = $input->param('biblionumbers');
185 if ( $biblionumbers ) {
186     @biblionumbers = split '/', $biblionumbers;
187 } else {
188     push @biblionumbers, $input->multi_param('biblionumber');
189 }
190
191 my $multi_hold = @biblionumbers > 1;
192 $template->param(
193     multi_hold => $multi_hold,
194 );
195
196 # If we have the borrowernumber because we've performed an action, then we
197 # don't want to try to place another reserve.
198 if ($borrowernumber_hold && !$action) {
199     my $patron = Koha::Patrons->find( $borrowernumber_hold );
200     my $diffbranch;
201
202     # we check the reserves of the user, and if they can reserve a document
203     # FIXME At this time we have a simple count of reservs, but, later, we could improve the infos "title" ...
204
205     my $reserves_count = $patron->holds->count;
206
207     my $new_reserves_count = scalar( @biblionumbers );
208
209     my $maxreserves = C4::Context->preference('maxreserves');
210     $template->param( maxreserves => $maxreserves );
211
212     if ( $maxreserves
213         && ( $reserves_count + $new_reserves_count > $maxreserves ) )
214     {
215         my $new_reserves_allowed =
216             $maxreserves - $reserves_count > 0
217           ? $maxreserves - $reserves_count
218           : 0;
219         $warnings             = 1;
220         $exceeded_maxreserves = 1;
221         $template->param(
222             new_reserves_allowed => $new_reserves_allowed,
223             new_reserves_count   => $new_reserves_count,
224             reserves_count       => $reserves_count,
225             maxreserves          => $maxreserves,
226         );
227     }
228
229     # check if the borrower make the reserv in a different branch
230     if ( $patron->branchcode ne C4::Context->userenv->{'branch'} ) {
231         $diffbranch = 1;
232     }
233
234     my $amount_outstanding = $patron->account->balance;
235     $template->param(
236                 patron              => $patron,
237                 diffbranch          => $diffbranch,
238                 messages            => $messages,
239                 warnings            => $warnings,
240                 amount_outstanding  => $amount_outstanding,
241     );
242 }
243
244 if ($club_hold && !$borrowernumber_hold && !$action) {
245     my $club = Koha::Clubs->find($club_hold);
246
247     my $enrollments = $club->club_enrollments;
248
249     my $maxreserves = C4::Context->preference('maxreserves');
250     my $new_reserves_count = scalar( @biblionumbers );
251
252     my @members;
253
254     while(my $enrollment = $enrollments->next) {
255         next if $enrollment->is_canceled;
256         my $member = { patron => $enrollment->patron->unblessed };
257         my $reserves_count = $enrollment->patron->holds->count;
258         if ( $maxreserves
259             && ( $reserves_count + $new_reserves_count > $maxreserves ) )
260         {
261             $member->{new_reserves_allowed} = $maxreserves - $reserves_count > 0
262                 ? $maxreserves - $reserves_count
263                 : 0;
264             $member->{exceeded_maxreserves} = 1;
265         }
266         my $expiry_date = $enrollment->patron->dateexpiry;
267         $member->{expiry} = 0; # flag set if patron account has expired
268         if ($expiry_date and
269             Date_to_Days(split /-/,$date) > Date_to_Days(split /-/,$expiry_date)) {
270             $member->{expiry} = 1;
271         }
272         $member->{amount_outstanding} = $enrollment->patron->account->balance;
273         if ( $enrollment->patron->branchcode ne C4::Context->userenv->{'branch'} ) {
274             $member->{diffbranch} = 1;
275         }
276
277         push @members, $member;
278     }
279
280     $template->param(
281         club                => $club,
282         members             => \@members,
283         maxreserves         => $maxreserves,
284         new_reserves_count  => $new_reserves_count
285     );
286 }
287
288 unless ( $club_hold or $borrowernumber_hold ) {
289     $template->param( clubcount => Koha::Clubs->search->count );
290 }
291
292 $template->param(
293     messageborrower => $messageborrower,
294     messageclub     => $messageclub
295 );
296
297 # FIXME launch another time GetMember perhaps until (Joubu: Why?)
298 my $patron = Koha::Patrons->find( $borrowernumber_hold );
299
300 if ( $patron && $multi_hold ) {
301     my @multi_pickup_locations =
302       Koha::Biblios->search( { biblionumber => \@biblionumbers } )
303       ->pickup_locations( { patron => $patron } );
304     $template->param( multi_pickup_locations => \@multi_pickup_locations );
305 }
306
307 my $logged_in_patron = Koha::Patrons->find( $borrowernumber );
308
309 my $wants_check;
310 if ($patron) {
311     $wants_check = $patron->wants_check_for_previous_checkout;
312 }
313 my $itemdata_enumchron = 0;
314 my $itemdata_ccode = 0;
315 my @biblioloop = ();
316 my $no_reserves_allowed = 0;
317 foreach my $biblionumber (@biblionumbers) {
318     next unless $biblionumber =~ m|^\d+$|;
319
320     my %biblioloopiter = ();
321
322     my $biblio = Koha::Biblios->find( $biblionumber );
323     unless ($biblio) {
324         $biblioloopiter{noitems} = 1;
325         $template->param('nobiblio' => 1);
326         last;
327     }
328
329     my $force_hold_level;
330     if ( $patron ) {
331         { # CanBookBeReserved
332             my $canReserve = CanBookBeReserved( $patron->borrowernumber, $biblionumber );
333             if ( $canReserve->{status} eq 'OK' ) {
334
335                 #All is OK and we can continue
336             }
337             elsif ( $canReserve->{status} eq 'noReservesAllowed' || $canReserve->{status} eq 'notReservable' ) {
338                 $no_reserves_allowed = 1;
339             }
340             elsif ( $canReserve->{status} eq 'tooManyReserves' ) {
341                 $exceeded_maxreserves = 1;
342                 $template->param( maxreserves => $canReserve->{limit} );
343             }
344             elsif ( $canReserve->{status} eq 'tooManyHoldsForThisRecord' ) {
345                 $exceeded_holds_per_record = 1;
346                 $biblioloopiter{ $canReserve->{status} } = 1;
347             }
348             elsif ( $canReserve->{status} eq 'ageRestricted' ) {
349                 $template->param( $canReserve->{status} => 1 );
350                 $biblioloopiter{ $canReserve->{status} } = 1;
351             }
352             elsif ( $canReserve->{status} eq 'alreadypossession' ) {
353                 $template->param( $canReserve->{status} => 1);
354                 $biblioloopiter{ $canReserve->{status} } = 1;
355             }
356             else {
357                 $biblioloopiter{ $canReserve->{status} } = 1;
358             }
359         }
360
361         # For multiple holds per record, if a patron has previously placed a hold,
362         # the patron can only place more holds of the same type. That is, if the
363         # patron placed a record level hold, all the holds the patron places must
364         # be record level. If the patron placed an item level hold, all holds
365         # the patron places must be item level
366         my $holds = Koha::Holds->search(
367             {
368                 borrowernumber => $patron->borrowernumber,
369                 biblionumber   => $biblionumber,
370                 found          => undef,
371             }
372         );
373         $force_hold_level = $holds->forced_hold_level();
374         $biblioloopiter{force_hold_level} = $force_hold_level;
375         $template->param( force_hold_level => $force_hold_level );
376
377         # For a librarian to be able to place multiple record holds for a patron for a record,
378         # we must find out what the maximum number of holds they can place for the patron is
379         my $max_holds_for_record = GetMaxPatronHoldsForRecord( $patron->borrowernumber, $biblionumber );
380         my $remaining_holds_for_record = $max_holds_for_record - $holds->count();
381         $biblioloopiter{remaining_holds_for_record} = $max_holds_for_record;
382         $template->param( max_holds_for_record => $max_holds_for_record );
383         $template->param( remaining_holds_for_record => $remaining_holds_for_record );
384     }
385
386
387     my $count = Koha::Holds->search( { biblionumber => $biblionumber } )->count();
388     my $totalcount = $count;
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                         # Send the pickup locations count to the UI, the pickup locations will be pulled using the API
610                         my $pickup_locations = $item_object->pickup_locations({ patron => $patron });
611                         $item->{pickup_locations_count} = $pickup_locations->count;
612                         if ( $item->{pickup_locations_count} > 0 ) {
613                             $item->{override} = 1;
614                             $num_override++;
615                             # pass the holding branch for use as default
616                             my $default_pickup_location = $pickup_locations->search({ branchcode => $item->{holdingbranch} })->next;
617                             $item->{default_pickup_location} = $default_pickup_location;
618                         }
619                         else {
620                             $item->{available} = 0;
621                             $item->{not_holdable} = "no_valid_pickup_location";
622                         }
623                     } else { $num_alreadyheld++ }
624
625                     push( @available_itemtypes, $item->{itype} );
626                 }
627
628                 # If none of the conditions hold true, then neither override nor available is set and the item cannot be checked
629
630                 # Show serial enumeration when needed
631                 if ($item->{enumchron}) {
632                     $itemdata_enumchron = 1;
633                 }
634                 # Show collection when needed
635                 if ($item->{ccode}) {
636                     $itemdata_ccode = 1;
637                 }
638             }
639
640             push @{ $biblioitem->{itemloop} }, $item;
641         }
642
643         # While we can't override an alreay held item, we should be able to override the others
644         # Unless all items are already held
645         if ( $num_override > 0 && ($num_override + $num_alreadyheld) == scalar( @{ $biblioitem->{itemloop} } ) ) {
646         # That is, if all items require an override
647             $template->param( override_required => 1 );
648         } elsif ( $num_available == 0 ) {
649             $template->param( none_available => 1 );
650             $biblioloopiter{warn} = 1;
651             $biblioloopiter{none_avail} = 1;
652         }
653         $template->param( hiddencount => $hiddencount);
654
655         push @bibitemloop, $biblioitem;
656     }
657
658     @available_itemtypes = uniq( @available_itemtypes );
659     $template->param( available_itemtypes => \@available_itemtypes );
660
661     # existingreserves building
662     my @reserveloop;
663     my @reserves = Koha::Holds->search( { biblionumber => $biblionumber }, { order_by => 'priority' } );
664     foreach my $res (
665         sort {
666             my $a_found = $a->found() || '';
667             my $b_found = $a->found() || '';
668             $a_found cmp $b_found;
669         } @reserves
670       )
671     {
672         my %reserve;
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{'suspend'}        = $res->suspend();
706         $reserve{'suspend_until'}  = $res->suspend_until();
707         $reserve{'reserve_id'}     = $res->reserve_id();
708         $reserve{itemtype}         = $res->itemtype();
709         $reserve{branchcode}       = $res->branchcode();
710         $reserve{non_priority}     = $res->non_priority();
711         $reserve{object}           = $res;
712
713         push( @reserveloop, \%reserve );
714     }
715
716     # get the time for the form name...
717     my $time = time();
718
719     $template->param(
720                      time        => $time,
721                      fixedRank   => $fixedRank,
722                     );
723
724     # display infos
725     $template->param(
726                      bibitemloop       => \@bibitemloop,
727                      itemdata_enumchron => $itemdata_enumchron,
728                      itemdata_ccode    => $itemdata_ccode,
729                      date              => $date,
730                      biblionumber      => $biblionumber,
731                      findborrower      => $findborrower,
732                      biblio            => $biblio,
733                      holdsview         => 1,
734                      C4::Search::enabled_staff_search_views,
735                     );
736
737     $biblioloopiter{biblionumber} = $biblionumber;
738     $biblioloopiter{title} = $biblio->title;
739     $biblioloopiter{rank} = $fixedRank;
740     $biblioloopiter{reserveloop} = \@reserveloop;
741
742     if (@reserveloop) {
743         $template->param( reserveloop => \@reserveloop );
744     }
745
746     if ( $patron ) {
747         # Add the valid pickup locations
748         my @pickup_locations = $biblio->pickup_locations({ patron => $patron });
749         $biblioloopiter{pickup_locations} = \@pickup_locations;
750         $biblioloopiter{pickup_locations_codes} = [ map { $_->branchcode } @pickup_locations ];
751     }
752
753     push @biblioloop, \%biblioloopiter;
754 }
755
756 $template->param( biblioloop => \@biblioloop );
757 $template->param( no_reserves_allowed => $no_reserves_allowed );
758 $template->param( biblionumbers => join('/', @biblionumbers) );
759 $template->param( exceeded_maxreserves => $exceeded_maxreserves );
760 $template->param( exceeded_holds_per_record => $exceeded_holds_per_record );
761 $template->param( subscriptionsnumber => CountSubscriptionFromBiblionumber($biblionumber));
762
763 # pass the userenv branch if no pickup location selected
764 $template->param( pickup => $pickup || C4::Context->userenv->{branch} );
765
766 if ( C4::Context->preference( 'AllowHoldDateInFuture' ) ) {
767     $template->param( reserve_in_future => 1 );
768 }
769
770 $template->param(
771     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
772     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
773 );
774
775 # printout the page
776 output_html_with_http_headers $input, $cookie, $template->output;
777
778 sub sort_borrowerlist {
779     my $borrowerslist = shift;
780     my $ref           = [];
781     push @{$ref}, sort {
782         uc( $a->{surname} . $a->{firstname} ) cmp
783           uc( $b->{surname} . $b->{firstname} )
784     } @{$borrowerslist};
785     return $ref;
786 }