Bug 34479: Add new files to templates
[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 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( _GetCircControlBranch GetBranchItemRule );
41 use Koha::DateUtils qw( dt_from_string );
42 use C4::Search qw( enabled_staff_search_views );
43
44 use Koha::Biblios;
45 use Koha::Checkouts;
46 use Koha::Holds;
47 use Koha::CirculationRules;
48 use Koha::Items;
49 use Koha::ItemTypes;
50 use Koha::Libraries;
51 use Koha::Patrons;
52 use Koha::Patron::Attribute::Types;
53 use Koha::Clubs;
54 use Koha::BackgroundJob::BatchCancelHold;
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 = {
71     map {
72         $_->itemtype =>
73           { %{ $_->unblessed }, image_location => $_->image_location('intranet'), notforloan => $_->notforloan }
74     } Koha::ItemTypes->search_with_localization->as_list
75 };
76
77 # Select borrowers infos
78 my $findborrower = $input->param('findborrower');
79 $findborrower = '' unless defined $findborrower;
80 $findborrower =~ s|,| |g;
81 my $findclub = $input->param('findclub');
82 $findclub = '' unless defined $findclub && !$findborrower;
83 my $borrowernumber_hold = $input->param('borrowernumber') || '';
84 my $club_hold = $input->param('club')||'';
85 my $messageborrower;
86 my $messageclub;
87 my $warnings;
88 my $messages;
89 my $exceeded_maxreserves;
90 my $exceeded_holds_per_record;
91
92 my $action = $input->param('action');
93 $action ||= q{};
94
95 if ( $action eq 'move' ) {
96     my $where           = $input->param('where');
97     my $reserve_id      = $input->param('reserve_id');
98     my $prev_priority   = $input->param('prev_priority');
99     my $next_priority   = $input->param('next_priority');
100     my $first_priority  = $input->param('first_priority');
101     my $last_priority   = $input->param('last_priority');
102     my $hold_itemnumber = $input->param('itemnumber');
103     if ( $prev_priority == 0 && $next_priority == 1 ) {
104         C4::Reserves::RevertWaitingStatus( { itemnumber => $hold_itemnumber } );
105     }
106     else {
107         AlterPriority(
108             $where,         $reserve_id,     $prev_priority,
109             $next_priority, $first_priority, $last_priority
110         );
111     }
112 }
113 elsif ( $action eq 'cancel' ) {
114     my $reserve_id          = $input->param('reserve_id');
115     my $cancellation_reason = $input->param("cancellation-reason");
116     my $hold                = Koha::Holds->find($reserve_id);
117     $hold->cancel( { cancellation_reason => $cancellation_reason } ) if $hold;
118 }
119 elsif ( $action eq 'setLowestPriority' ) {
120     my $reserve_id = $input->param('reserve_id');
121     ToggleLowestPriority($reserve_id);
122 }
123 elsif ( $action eq 'toggleSuspend' ) {
124     my $reserve_id    = $input->param('reserve_id');
125     my $suspend_until = $input->param('suspend_until');
126     ToggleSuspend( $reserve_id, $suspend_until );
127 }
128 elsif ( $action eq 'cancelBulk' ) {
129     my $cancellation_reason = $input->param("cancellation-reason");
130     my @hold_ids            = split( ',', scalar $input->param("ids"));
131     my $params              = {
132         reason   => $cancellation_reason,
133         hold_ids => \@hold_ids,
134     };
135     my $job_id = Koha::BackgroundJob::BatchCancelHold->new->enqueue($params);
136
137     $template->param(
138         enqueued => 1,
139         job_id   => $job_id
140     );
141 }
142
143 if ($findborrower) {
144     my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
145     $borrowernumber_hold = $patron->borrowernumber if $patron;
146 }
147
148 if($findclub) {
149     my $club = Koha::Clubs->find( { name => $findclub } );
150     if( $club ) {
151         $club_hold = $club->id;
152     } else {
153         my @clubs = Koha::Clubs->search( [
154             { name => { like => '%'.$findclub.'%' } },
155             { description => { like => '%'.$findclub.'%' } }
156         ] )->as_list;
157         if( scalar @clubs == 1 ) {
158             $club_hold = $clubs[0]->id;
159         } elsif ( @clubs ) {
160             $template->param( clubs => \@clubs );
161         } else {
162             $messageclub = "'$findclub'";
163         }
164     }
165 }
166
167 my @biblionumbers = $input->multi_param('biblionumber');
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     # check if the borrower make the reserv in a different branch
208     if ( $patron->branchcode ne C4::Context->userenv->{'branch'} ) {
209         $diffbranch = 1;
210     }
211
212     my $amount_outstanding = $patron->account->balance;
213     $template->param(
214                 patron              => $patron,
215                 diffbranch          => $diffbranch,
216                 messages            => $messages,
217                 warnings            => $warnings,
218                 amount_outstanding  => $amount_outstanding,
219     );
220 }
221
222 if ($club_hold && !$borrowernumber_hold && !$action) {
223     my $club = Koha::Clubs->find($club_hold);
224
225     my $enrollments = $club->club_enrollments;
226
227     my $maxreserves = C4::Context->preference('maxreserves');
228     my $new_reserves_count = scalar( @biblionumbers );
229
230     my @members;
231
232     while(my $enrollment = $enrollments->next) {
233         next if $enrollment->is_canceled;
234         my $member = { patron => $enrollment->patron };
235         my $reserves_count = $enrollment->patron->holds->count;
236         if ( $maxreserves
237             && ( $reserves_count + $new_reserves_count > $maxreserves ) )
238         {
239             $member->{new_reserves_allowed} = $maxreserves - $reserves_count > 0
240                 ? $maxreserves - $reserves_count
241                 : 0;
242             $member->{exceeded_maxreserves} = 1;
243         }
244         $member->{amount_outstanding} = $enrollment->patron->account->balance;
245         if ( $enrollment->patron->branchcode ne C4::Context->userenv->{'branch'} ) {
246             $member->{diffbranch} = 1;
247         }
248
249         push @members, $member;
250     }
251
252     $template->param(
253         club                => $club,
254         members             => \@members,
255         maxreserves         => $maxreserves,
256         new_reserves_count  => $new_reserves_count
257     );
258 }
259
260 unless ( $club_hold or $borrowernumber_hold ) {
261     $template->param( clubcount => Koha::Clubs->search->count );
262 }
263
264 $template->param(
265     messageborrower => $messageborrower,
266     messageclub     => $messageclub
267 );
268
269 # Load the hold list if
270 #  - we are searching for a patron or club and found one
271 #  - we are not searching for anything
272 if (   ( $findborrower && $borrowernumber_hold || $findclub && $club_hold )
273     || ( !$findborrower && !$findclub ) )
274 {
275     # FIXME launch another time GetMember perhaps until (Joubu: Why?)
276     my $patron = Koha::Patrons->find( $borrowernumber_hold );
277
278     if ( $patron && $multi_hold ) {
279         my @multi_pickup_locations =
280           Koha::Biblios->search( { biblionumber => \@biblionumbers } )
281           ->pickup_locations( { patron => $patron } )->as_list;
282         $template->param( multi_pickup_locations => \@multi_pickup_locations );
283     }
284
285     my $logged_in_patron = Koha::Patrons->find( $borrowernumber );
286
287     my $wants_check;
288     if ($patron) {
289         $wants_check = $patron->wants_check_for_previous_checkout;
290     }
291     my $itemdata_enumchron = 0;
292     my $itemdata_ccode = 0;
293     my @biblioloop = ();
294     my $no_reserves_allowed = 0;
295     my $num_bibs_available = 0;
296     foreach my $biblionumber (@biblionumbers) {
297         next unless $biblionumber =~ m|^\d+$|;
298
299         my %biblioloopiter = ();
300
301         my $biblio = Koha::Biblios->find( $biblionumber );
302
303         unless ($biblio) {
304             $biblioloopiter{noitems} = 1;
305             $template->param('nobiblio' => 1);
306             last;
307         }
308
309         $biblioloopiter{object} = $biblio;
310
311         if ( $patron ) {
312             { # CanBookBeReserved
313                 my $canReserve = CanBookBeReserved( $patron->borrowernumber, $biblionumber );
314                 if ( $canReserve->{status} eq 'OK' ) {
315
316                     #All is OK and we can continue
317                 }
318                 elsif ( $canReserve->{status} eq 'noReservesAllowed' || $canReserve->{status} eq 'notReservable' ) {
319                     $no_reserves_allowed = 1;
320                 }
321                 elsif ( $canReserve->{status} eq 'tooManyReserves' ) {
322                     $exceeded_maxreserves = 1;
323                     $template->param( maxreserves => $canReserve->{limit} );
324                 }
325                 elsif ( $canReserve->{status} eq 'tooManyHoldsForThisRecord' ) {
326                     $exceeded_holds_per_record = 1;
327                     $biblioloopiter{ $canReserve->{status} } = 1;
328                 }
329                 elsif ( $canReserve->{status} eq 'ageRestricted' ) {
330                     $template->param( $canReserve->{status} => 1 );
331                     $biblioloopiter{ $canReserve->{status} } = 1;
332                 }
333                 elsif ( $canReserve->{status} eq 'alreadypossession' ) {
334                     $template->param( $canReserve->{status} => 1);
335                     $biblioloopiter{ $canReserve->{status} } = 1;
336                 }
337                 elsif ( $canReserve->{status} eq 'recall' ) {
338                     $template->param( $canReserve->{status} => 1 );
339                     $biblioloopiter{ $canReserve->{status} } = 1;
340                 }
341                 else {
342                     $biblioloopiter{ $canReserve->{status} } = 1;
343                 }
344             }
345
346             # For multiple holds per record, if a patron has previously placed a hold,
347             # the patron can only place more holds of the same type. That is, if the
348             # patron placed a record level hold, all the holds the patron places must
349             # be record level. If the patron placed an item level hold, all holds
350             # the patron places must be item level
351             my $holds = Koha::Holds->search(
352                 {
353                     borrowernumber => $patron->borrowernumber,
354                     biblionumber   => $biblionumber,
355                     found          => undef,
356                 }
357             );
358             $template->param( force_hold_level => $holds->forced_hold_level() );
359
360             # For a librarian to be able to place multiple record holds for a patron for a record,
361             # we must find out what the maximum number of holds they can place for the patron is
362             my $max_holds_for_record = GetMaxPatronHoldsForRecord( $patron->borrowernumber, $biblionumber );
363             my $remaining_holds_for_record = $max_holds_for_record - $holds->count();
364             $biblioloopiter{remaining_holds_for_record} = $max_holds_for_record;
365             $template->param( max_holds_for_record => $max_holds_for_record );
366             $template->param( remaining_holds_for_record => $remaining_holds_for_record );
367         }
368
369         # adding a fixed value for priority options
370         my $fixedRank = $biblio->holds->count + 1;
371
372         my @items = $biblio->items->as_list;
373
374         my @host_items = $biblio->host_items->as_list;
375         if (@host_items) {
376             push @items, @host_items;
377         }
378
379         unless ( @items ) {
380             # FIXME Then why do we continue?
381             $template->param('noitems' => 1) unless ( $multi_hold );
382             $biblioloopiter{noitems} = 1;
383         }
384
385         if ( $club_hold or $borrowernumber_hold ) {
386             my @available_itemtypes;
387             my $num_items_available = 0;
388             my $num_override  = 0;
389             my $hiddencount   = 0;
390             my $num_alreadyheld = 0;
391
392             # iterating through all items first to check if any of them available
393             # to pass this value further inside down to IsAvailableForItemLevelRequest to
394             # it's complicated logic to analyse.
395             # (before this loop was inside that sub loop so it was O(n^2) )
396
397             for my $item_object ( @items ) {
398                 my $do_check;
399                 my $item = $item_object->unblessed;
400                 $item->{object} = $item_object;
401                 if ( $patron ) {
402                     $do_check = $patron->do_check_for_previous_checkout($item) if $wants_check;
403                     if ( $do_check && $wants_check ) {
404                         $item->{checked_previously} = $do_check;
405                         if ( $multi_hold ) {
406                             $biblioloopiter{checked_previously} = $do_check;
407                         } else {
408                             $template->param( checked_previously => $do_check );
409                         }
410                     }
411                 }
412
413                 $item->{itemtype} = $itemtypes->{ $item_object->effective_itemtype };
414
415                 if($item->{biblionumber} ne $biblio->biblionumber){
416                     $item->{hosttitle} = Koha::Biblios->find( $item->{biblionumber} )->title;
417                 }
418
419                 # if the item is currently on loan, we display its return date and
420                 # change the background color
421                 my $issue = $item_object->checkout;
422                 if ( $issue ) { # FIXME must be moved to the template
423                     $item->{date_due} = $issue->date_due;
424                     $item->{backgroundcolor} = 'onloan';
425                 }
426
427                 # checking reserve
428                 my $holds = $item_object->current_holds;
429                 if ( my $first_hold = $holds->next ) {
430                     my $p = Koha::Patrons->find( $first_hold->borrowernumber );
431
432                     $item->{backgroundcolor} = 'reserved';
433                     $item->{reservedate}     = $first_hold->reservedate;
434                     $item->{ReservedFor}     = $p;
435                     $item->{ExpectedAtLibrary}     = $first_hold->branchcode;
436                     $item->{waitingdate} = $first_hold->waitingdate;
437                 }
438
439                 # Management of the notforloan document
440                 if ( $item->{notforloan} ) {
441                     $item->{backgroundcolor} = 'other';
442                 }
443
444                 # Management of lost or long overdue items
445                 if ( $item->{itemlost} ) {
446                     $item->{backgroundcolor} = 'other';
447                     if ($logged_in_patron->category->hidelostitems && !$showallitems) {
448                         $item->{hide} = 1;
449                         $hiddencount++;
450                     }
451                 }
452
453                 # Check the transit status
454                 my $transfer = $item_object->get_transfer;
455                 if ( $transfer && $transfer->in_transit ) {
456                     $item->{transfertwhen} = $transfer->datesent;
457                     $item->{transfertfrom} = $transfer->frombranch;
458                     $item->{transfertto} = $transfer->tobranch;
459                     $item->{nocancel} = 1;
460                 }
461
462                 # If there is no loan, return and transfer, we show a checkbox.
463                 $item->{notforloanitype} = $item->{itemtype}->{notforloan};
464                 $item->{notforloan} ||= 0;
465
466                 # if independent branches is on we need to check if the person can reserve
467                 # for branches they arent logged in to
468                 if ( C4::Context->preference("IndependentBranches") ) {
469                     if (! C4::Context->preference("canreservefromotherbranches")){
470                         # can't reserve items so need to check if item homebranch and userenv branch match if not we can't reserve
471                         my $userenv = C4::Context->userenv;
472                         unless ( C4::Context->IsSuperLibrarian ) {
473                             $item->{cantreserve} = 1 if ( $item->{homebranch} ne $userenv->{branch} );
474                         }
475                     }
476                 }
477
478                 if ( $patron ) {
479                     my $patron_unblessed = $patron->unblessed;
480                     my $branch = C4::Circulation::_GetCircControlBranch($item, $patron_unblessed);
481
482                     my $branchitemrule = GetBranchItemRule( $branch, $item->{'itype'} );
483
484                     $item->{'holdallowed'} = $branchitemrule->{'holdallowed'};
485
486                     my $can_item_be_reserved = CanItemBeReserved( $patron, $item_object, undef, { get_from_cache => 1 } )->{status};
487                     $item->{not_holdable} = $can_item_be_reserved unless ( $can_item_be_reserved eq 'OK' );
488                     $item->{not_holdable} ||= 'notforloan' if ( $item->{notforloanitype} || $item->{notforloan} > 0 );
489
490
491                     $item->{item_level_holds} = Koha::CirculationRules->get_opacitemholds_policy( { item => $item_object, patron => $patron } );
492
493                     my $default_hold_pickup_location_pref = C4::Context->preference('DefaultHoldPickupLocation');
494                     my $default_pickup_branch;
495                     if( $default_hold_pickup_location_pref eq 'homebranch' ){
496                         $default_pickup_branch = $item->{homebranch};
497                     } elsif ( $default_hold_pickup_location_pref eq 'holdingbranch' ){
498                         $default_pickup_branch = $item->{holdingbranch};
499                     } else {
500                         $default_pickup_branch = C4::Context->userenv->{branch};
501                     }
502
503                     if ( $can_item_be_reserved eq 'itemAlreadyOnHold' ) {
504                         # itemAlreadyOnHold cannot be overridden
505                         $num_alreadyheld++
506                     }
507                     elsif (
508                         (
509                                !$item->{cantreserve}
510                             && !$exceeded_maxreserves
511                             && $can_item_be_reserved eq 'OK'
512                             && IsAvailableForItemLevelRequest($item_object, $patron, undef)
513                         ) || C4::Context->preference('AllowHoldPolicyOverride')
514                              # If AllowHoldPolicyOverride is set, it overrides EVERY restriction
515                              # not just branch item rules
516                       )
517                     {
518                         # Send the pickup locations count to the UI, the pickup locations will be pulled using the API
519                         my $pickup_locations = $item_object->pickup_locations({ patron => $patron });
520                         $item->{pickup_locations_count} = $pickup_locations->count;
521                         if ( $item->{pickup_locations_count} > 0 ) {
522                             $num_items_available++;
523                             $item->{available} = 1;
524                             # pass the holding branch for use as default
525                             my $default_pickup_location = $pickup_locations->search({ branchcode => $default_pickup_branch })->next;
526                             $item->{default_pickup_location} = $default_pickup_location;
527                         }
528                         elsif ( C4::Context->preference('AllowHoldPolicyOverride') ){
529                              $num_items_available++;
530                              $item->{override} = 1;
531                             my $default_pickup_location = $pickup_locations->search({ branchcode => $default_pickup_branch })->next;
532                             $item->{default_pickup_location} = $default_pickup_location;
533                         }
534                         else {
535                             $item->{available} = 0;
536                             $item->{not_holdable} = "no_valid_pickup_location";
537                         }
538
539                         push( @available_itemtypes, $item->{itype} );
540                     } else {
541                         # If none of the conditions hold true, then neither override nor available is set and the item cannot be checked
542                         $item->{available} = 0;
543                     }
544
545
546                     # Show serial enumeration when needed
547                     if ($item->{enumchron}) {
548                         $itemdata_enumchron = 1;
549                     }
550                     # Show collection when needed
551                     if ($item->{ccode}) {
552                         $itemdata_ccode = 1;
553                     }
554                 }
555
556                 push @{ $biblioloopiter{itemloop} }, $item;
557             }
558
559             $biblioloopiter{biblioitem} = $biblio->biblioitem;
560
561             # While we can't override an alreay held item, we should be able to override the others
562             # Unless all items are already held
563             if ( $num_override > 0 && ($num_override + $num_alreadyheld) == scalar( @{ $biblioloopiter{itemloop} } ) ) {
564             # That is, if all items require an override
565                 $template->param( override_required => 1 );
566             } elsif ( $num_items_available == 0 ) {
567                 $template->param( none_available => 1 );
568                 $biblioloopiter{warn} = 1;
569                 $biblioloopiter{none_avail} = 1;
570             }
571             $template->param( hiddencount => $hiddencount);
572
573             @available_itemtypes = uniq( @available_itemtypes );
574             $template->param( available_itemtypes => \@available_itemtypes );
575         }
576
577         # existingreserves building
578         my @reserveloop;
579         my $always_show_holds = $input->cookie('always_show_holds');
580         $template->param( always_show_holds => $always_show_holds );
581         my $show_holds_now = $input->param('show_holds_now');
582         unless( (defined $always_show_holds && $always_show_holds eq 'DONT') && !$show_holds_now ){
583             my @reserves = Koha::Holds->search( { biblionumber => $biblionumber }, { order_by => 'priority' } )->as_list;
584             foreach my $res (
585                 sort {
586                     my $a_found = $a->found() || '';
587                     my $b_found = $a->found() || '';
588                     $a_found cmp $b_found;
589                 } @reserves
590               )
591             {
592                 my %reserve;
593                 if ( $res->is_found() ) {
594                     $reserve{'holdingbranch'} = $res->item()->holdingbranch();
595                     $reserve{'biblionumber'}  = $res->item()->biblionumber();
596                     $reserve{'barcodenumber'} = $res->item()->barcode();
597                     $reserve{'wbrcode'}       = $res->branchcode();
598                     $reserve{'itemnumber'}    = $res->itemnumber();
599                     $reserve{'wbrname'}       = $res->branch()->branchname();
600                     $reserve{'atdestination'} = $res->is_at_destination();
601                     $reserve{'desk_name'}     = ( $res->desk() ) ? $res->desk()->desk_name() : '' ;
602                     $reserve{'found'}     = $res->is_found();
603                     $reserve{'inprocessing'} = $res->is_in_processing();
604                     $reserve{'intransit'} = $res->is_in_transit();
605                 }
606                 elsif ( $res->priority() > 0 ) {
607                     if ( my $item = $res->item() )  {
608                         $reserve{'itemnumber'}      = $item->id();
609                         $reserve{'barcodenumber'}   = $item->barcode();
610                         $reserve{'item_level_hold'} = 1;
611                     }
612                 }
613                 $reserve{'expirationdate'} = $res->expirationdate;
614                 $reserve{'expired'}        = 1
615                     if ( DateTime->compare( dt_from_string( $res->expirationdate ), dt_from_string() ) == -1 );
616                 $reserve{'date'}           = $res->reservedate;
617                 $reserve{'borrowernumber'} = $res->borrowernumber();
618                 $reserve{'biblionumber'}   = $res->biblionumber();
619                 $reserve{'patron'}         = $res->borrower;
620                 $reserve{'notes'}          = $res->reservenotes();
621                 $reserve{'waiting_date'}   = $res->waitingdate();
622                 $reserve{'ccode'}          = $res->item() ? $res->item()->ccode() : undef;
623                 $reserve{'barcode'}        = $res->item() ? $res->item()->barcode() : undef;
624                 $reserve{'priority'}       = $res->priority();
625                 $reserve{'lowestPriority'} = $res->lowestPriority();
626                 $reserve{'suspend'}        = $res->suspend();
627                 $reserve{'suspend_until'}  = $res->suspend_until();
628                 $reserve{'reserve_id'}     = $res->reserve_id();
629                 $reserve{itemtype}         = $res->itemtype();
630                 $reserve{branchcode}       = $res->branchcode();
631                 $reserve{non_priority}     = $res->non_priority();
632                 $reserve{object}           = $res;
633
634                 push( @reserveloop, \%reserve );
635             }
636         }
637
638         # get the time for the form name...
639         my $time = time();
640
641         $template->param(
642                          time        => $time,
643                          fixedRank   => $fixedRank,
644                         );
645
646         # display infos
647         $template->param(
648                          itemdata_enumchron => $itemdata_enumchron,
649                          itemdata_ccode    => $itemdata_ccode,
650                          date              => dt_from_string,
651                          biblionumber      => $biblionumber,
652                          findborrower      => $findborrower,
653                          biblio            => $biblio,
654                          holdsview         => 1,
655                          C4::Search::enabled_staff_search_views,
656                         );
657
658         $biblioloopiter{biblionumber} = $biblionumber;
659         $biblioloopiter{title}  = $biblio->title;
660         $biblioloopiter{author} = $biblio->author;
661         $biblioloopiter{rank} = $fixedRank;
662         $biblioloopiter{reserveloop} = \@reserveloop;
663
664         if (@reserveloop) {
665             $template->param( reserveloop => \@reserveloop );
666         }
667
668         if ( $patron && $multi_hold ) {
669             # Add the valid pickup locations
670             my @pickup_locations = $biblio->pickup_locations({ patron => $patron })->as_list;
671             $biblioloopiter{pickup_locations} = \@pickup_locations;
672             $biblioloopiter{pickup_locations_codes} = [ map { $_->branchcode } @pickup_locations ];
673         }
674
675         $num_bibs_available++ unless $biblioloopiter{none_avail};
676         push @biblioloop, \%biblioloopiter;
677     }
678
679     $template->param( no_bibs_available => 1 ) unless $num_bibs_available > 0;
680
681     $template->param( biblioloop => \@biblioloop );
682     $template->param( no_reserves_allowed => $no_reserves_allowed );
683     $template->param( exceeded_maxreserves => $exceeded_maxreserves );
684     $template->param( exceeded_holds_per_record => $exceeded_holds_per_record );
685     # FIXME: getting just the first bib's result doesn't seem right
686     $template->param( subscriptionsnumber => CountSubscriptionFromBiblionumber($biblionumbers[0]));
687 } elsif ( ! $multi_hold ) {
688     my $biblio = Koha::Biblios->find( $biblionumbers[0] );
689     $template->param( biblio => $biblio );
690 }
691 $template->param( biblionumbers => \@biblionumbers );
692
693 $template->param(
694     attribute_type_codes => ( C4::Context->preference('ExtendedPatronAttributes')
695         ? [ Koha::Patron::Attribute::Types->search( { staff_searchable => 1 } )->get_column('code') ]
696         : []
697     ),
698 );
699
700
701 # pass the userenv branch if no pickup location selected
702 $template->param( pickup => $pickup || C4::Context->userenv->{branch} );
703
704 $template->param(borrowernumber => $borrowernumber_hold);
705
706 # printout the page
707 output_html_with_http_headers $input, $cookie, $template->output;
708
709 sub sort_borrowerlist {
710     my $borrowerslist = shift;
711     my $ref           = [];
712     push @{$ref}, sort {
713         uc( $a->{surname} . $a->{firstname} ) cmp
714           uc( $b->{surname} . $b->{firstname} )
715     } @{$borrowerslist};
716     return $ref;
717 }