Bug 30718: Use flatpickr's altInput
[srvgit] / 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 );
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, 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         unless ($biblio) {
303             $biblioloopiter{noitems} = 1;
304             $template->param('nobiblio' => 1);
305             last;
306         }
307
308         if ( $patron ) {
309             { # CanBookBeReserved
310                 my $canReserve = CanBookBeReserved( $patron->borrowernumber, $biblionumber );
311                 if ( $canReserve->{status} eq 'OK' ) {
312
313                     #All is OK and we can continue
314                 }
315                 elsif ( $canReserve->{status} eq 'noReservesAllowed' || $canReserve->{status} eq 'notReservable' ) {
316                     $no_reserves_allowed = 1;
317                 }
318                 elsif ( $canReserve->{status} eq 'tooManyReserves' ) {
319                     $exceeded_maxreserves = 1;
320                     $template->param( maxreserves => $canReserve->{limit} );
321                 }
322                 elsif ( $canReserve->{status} eq 'tooManyHoldsForThisRecord' ) {
323                     $exceeded_holds_per_record = 1;
324                     $biblioloopiter{ $canReserve->{status} } = 1;
325                 }
326                 elsif ( $canReserve->{status} eq 'ageRestricted' ) {
327                     $template->param( $canReserve->{status} => 1 );
328                     $biblioloopiter{ $canReserve->{status} } = 1;
329                 }
330                 elsif ( $canReserve->{status} eq 'alreadypossession' ) {
331                     $template->param( $canReserve->{status} => 1);
332                     $biblioloopiter{ $canReserve->{status} } = 1;
333                 }
334                 elsif ( $canReserve->{status} eq 'recall' ) {
335                     $template->param( $canReserve->{status} => 1 );
336                     $biblioloopiter{ $canReserve->{status} } = 1;
337                 }
338                 else {
339                     $biblioloopiter{ $canReserve->{status} } = 1;
340                 }
341             }
342
343             # For multiple holds per record, if a patron has previously placed a hold,
344             # the patron can only place more holds of the same type. That is, if the
345             # patron placed a record level hold, all the holds the patron places must
346             # be record level. If the patron placed an item level hold, all holds
347             # the patron places must be item level
348             my $holds = Koha::Holds->search(
349                 {
350                     borrowernumber => $patron->borrowernumber,
351                     biblionumber   => $biblionumber,
352                     found          => undef,
353                 }
354             );
355             $template->param( force_hold_level => $holds->forced_hold_level() );
356
357             # For a librarian to be able to place multiple record holds for a patron for a record,
358             # we must find out what the maximum number of holds they can place for the patron is
359             my $max_holds_for_record = GetMaxPatronHoldsForRecord( $patron->borrowernumber, $biblionumber );
360             my $remaining_holds_for_record = $max_holds_for_record - $holds->count();
361             $biblioloopiter{remaining_holds_for_record} = $max_holds_for_record;
362             $template->param( max_holds_for_record => $max_holds_for_record );
363             $template->param( remaining_holds_for_record => $remaining_holds_for_record );
364         }
365
366         # adding a fixed value for priority options
367         my $fixedRank = $biblio->holds->count + 1;
368
369         my @items = $biblio->items->as_list;
370
371         my @host_items = $biblio->host_items->as_list;
372         if (@host_items) {
373             push @items, @host_items;
374         }
375
376         unless ( @items ) {
377             # FIXME Then why do we continue?
378             $template->param('noitems' => 1) unless ( $multi_hold );
379             $biblioloopiter{noitems} = 1;
380         }
381
382         if ( $club_hold or $borrowernumber_hold ) {
383             my @available_itemtypes;
384             my $num_items_available = 0;
385             my $num_override  = 0;
386             my $hiddencount   = 0;
387             my $num_alreadyheld = 0;
388
389             # iterating through all items first to check if any of them available
390             # to pass this value further inside down to IsAvailableForItemLevelRequest to
391             # it's complicated logic to analyse.
392             # (before this loop was inside that sub loop so it was O(n^2) )
393             my $items_any_available;
394             $items_any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $biblio->biblionumber, patron => $patron })
395                 if $patron;
396
397             for my $item_object ( @items ) {
398                 my $do_check;
399                 my $item = $item_object->unblessed;
400                 if ( $patron ) {
401                     $do_check = $patron->do_check_for_previous_checkout($item) if $wants_check;
402                     if ( $do_check && $wants_check ) {
403                         $item->{checked_previously} = $do_check;
404                         if ( $multi_hold ) {
405                             $biblioloopiter{checked_previously} = $do_check;
406                         } else {
407                             $template->param( checked_previously => $do_check );
408                         }
409                     }
410                 }
411
412                 $item->{itemtype} = $itemtypes->{ $item_object->effective_itemtype };
413
414                 if($item->{biblionumber} ne $biblio->biblionumber){
415                     $item->{hosttitle} = Koha::Biblios->find( $item->{biblionumber} )->title;
416                 }
417
418                 # if the item is currently on loan, we display its return date and
419                 # change the background color
420                 my $issue = $item_object->checkout;
421                 if ( $issue ) { # FIXME must be moved to the template
422                     $item->{date_due} = $issue->date_due;
423                     $item->{backgroundcolor} = 'onloan';
424                 }
425
426                 # checking reserve
427                 my $holds = $item_object->current_holds;
428                 if ( my $first_hold = $holds->next ) {
429                     my $p = Koha::Patrons->find( $first_hold->borrowernumber );
430
431                     $item->{backgroundcolor} = 'reserved';
432                     $item->{reservedate}     = $first_hold->reservedate;
433                     $item->{ReservedFor}     = $p;
434                     $item->{ExpectedAtLibrary}     = $first_hold->branchcode;
435                     $item->{waitingdate} = $first_hold->waitingdate;
436                 }
437
438                 # Management of the notforloan document
439                 if ( $item->{notforloan} ) {
440                     $item->{backgroundcolor} = 'other';
441                 }
442
443                 # Management of lost or long overdue items
444                 if ( $item->{itemlost} ) {
445                     $item->{backgroundcolor} = 'other';
446                     if ($logged_in_patron->category->hidelostitems && !$showallitems) {
447                         $item->{hide} = 1;
448                         $hiddencount++;
449                     }
450                 }
451
452                 # Check the transit status
453                 my ( $transfertwhen, $transfertfrom, $transfertto ) =
454                   GetTransfers($item_object->itemnumber); # FIXME replace with get_transfer
455
456                 if ( defined $transfertwhen && $transfertwhen ne '' ) {
457                     $item->{transfertwhen} = $transfertwhen;
458                     $item->{transfertfrom} = $transfertfrom;
459                     $item->{transfertto} = $transfertto;
460                     $item->{nocancel} = 1;
461                 }
462
463                 # If there is no loan, return and transfer, we show a checkbox.
464                 $item->{notforloanitype} = $item->{itemtype}->{notforloan};
465                 $item->{notforloan} ||= 0;
466
467                 # if independent branches is on we need to check if the person can reserve
468                 # for branches they arent logged in to
469                 if ( C4::Context->preference("IndependentBranches") ) {
470                     if (! C4::Context->preference("canreservefromotherbranches")){
471                         # can't reserve items so need to check if item homebranch and userenv branch match if not we can't reserve
472                         my $userenv = C4::Context->userenv;
473                         unless ( C4::Context->IsSuperLibrarian ) {
474                             $item->{cantreserve} = 1 if ( $item->{homebranch} ne $userenv->{branch} );
475                         }
476                     }
477                 }
478
479                 if ( $patron ) {
480                     my $patron_unblessed = $patron->unblessed;
481                     my $branch = C4::Circulation::_GetCircControlBranch($item, $patron_unblessed);
482
483                     my $branchitemrule = GetBranchItemRule( $branch, $item->{'itype'} );
484
485                     $item->{'holdallowed'} = $branchitemrule->{'holdallowed'};
486
487                     my $can_item_be_reserved = CanItemBeReserved( $patron, $item_object )->{status};
488                     $item->{not_holdable} = $can_item_be_reserved unless ( $can_item_be_reserved eq 'OK' );
489                     $item->{not_holdable} ||= 'notforloan' if ( $item->{notforloanitype} || $item->{notforloan} > 0 );
490
491
492                     $item->{item_level_holds} = Koha::CirculationRules->get_opacitemholds_policy( { item => $item_object, patron => $patron } );
493
494                     my $default_hold_pickup_location_pref = C4::Context->preference('DefaultHoldPickupLocation');
495                     my $default_pickup_branch;
496                     if( $default_hold_pickup_location_pref eq 'homebranch' ){
497                         $default_pickup_branch = $item->{homebranch};
498                     } elsif ( $default_hold_pickup_location_pref eq 'holdingbranch' ){
499                         $default_pickup_branch = $item->{holdingbranch};
500                     } else {
501                         $default_pickup_branch = C4::Context->userenv->{branch};
502                     }
503
504                     if (
505                            !$item->{cantreserve}
506                         && !$exceeded_maxreserves
507                         && $can_item_be_reserved eq 'OK'
508                         # items_any_available defined outside of the current loop,
509                         # so we avoiding loop inside IsAvailableForItemLevelRequest:
510                         && IsAvailableForItemLevelRequest($item_object, $patron, undef, $items_any_available)
511                       )
512                     {
513                         # Send the pickup locations count to the UI, the pickup locations will be pulled using the API
514                         my $pickup_locations = $item_object->pickup_locations({ patron => $patron });
515                         $item->{pickup_locations_count} = $pickup_locations->count;
516                         if ( $item->{pickup_locations_count} > 0 ) {
517                             $num_items_available++;
518                             $item->{available} = 1;
519                             # pass the holding branch for use as default
520                             my $default_pickup_location = $pickup_locations->search({ branchcode => $default_pickup_branch })->next;
521                             $item->{default_pickup_location} = $default_pickup_location;
522                         }
523                         else {
524                             $item->{available} = 0;
525                             $item->{not_holdable} = "no_valid_pickup_location";
526                         }
527
528                         push( @available_itemtypes, $item->{itype} );
529                     }
530                     elsif ( C4::Context->preference('AllowHoldPolicyOverride') ) {
531                         # If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
532                         # with the exception of itemAlreadyOnHold because, you know, the item is already on hold
533                         if ( $can_item_be_reserved ne 'itemAlreadyOnHold' ) {
534                             # Send the pickup locations count to the UI, the pickup locations will be pulled using the API
535                             my @pickup_locations = $item_object->pickup_locations({ patron => $patron })->as_list;
536                             $item->{pickup_locations_count} = scalar @pickup_locations;
537
538                             if ( @pickup_locations ) {
539                                 $num_items_available++;
540                                 $item->{available} = 1;
541
542                                 my $default_pickup_location;
543
544                                 ($default_pickup_location) = grep { $_->branchcode eq $default_pickup_branch } @pickup_locations;
545
546                                 $item->{default_pickup_location} = $default_pickup_location;
547                             }
548                             else {
549                                 $item->{available} = 0;
550                                 $item->{not_holdable} = "no_valid_pickup_location";
551                             }
552                         } else { $num_alreadyheld++ }
553
554                         push( @available_itemtypes, $item->{itype} );
555                     } else {
556                         # If none of the conditions hold true, then neither override nor available is set and the item cannot be checked
557                         $item->{available} = 0;
558                     }
559
560
561                     # Show serial enumeration when needed
562                     if ($item->{enumchron}) {
563                         $itemdata_enumchron = 1;
564                     }
565                     # Show collection when needed
566                     if ($item->{ccode}) {
567                         $itemdata_ccode = 1;
568                     }
569                 }
570
571                 push @{ $biblioloopiter{itemloop} }, $item;
572             }
573
574             $biblioloopiter{biblioitem} = $biblio->biblioitem;
575
576             # While we can't override an alreay held item, we should be able to override the others
577             # Unless all items are already held
578             if ( $num_override > 0 && ($num_override + $num_alreadyheld) == scalar( @{ $biblioloopiter{itemloop} } ) ) {
579             # That is, if all items require an override
580                 $template->param( override_required => 1 );
581             } elsif ( $num_items_available == 0 ) {
582                 $template->param( none_available => 1 );
583                 $biblioloopiter{warn} = 1;
584                 $biblioloopiter{none_avail} = 1;
585             }
586             $template->param( hiddencount => $hiddencount);
587
588             @available_itemtypes = uniq( @available_itemtypes );
589             $template->param( available_itemtypes => \@available_itemtypes );
590         }
591
592         # existingreserves building
593         my @reserveloop;
594         my $always_show_holds = $input->cookie('always_show_holds');
595         $template->param( always_show_holds => $always_show_holds );
596         my $show_holds_now = $input->param('show_holds_now');
597         unless( (defined $always_show_holds && $always_show_holds eq 'DONT') && !$show_holds_now ){
598             my @reserves = Koha::Holds->search( { biblionumber => $biblionumber }, { order_by => 'priority' } )->as_list;
599             foreach my $res (
600                 sort {
601                     my $a_found = $a->found() || '';
602                     my $b_found = $a->found() || '';
603                     $a_found cmp $b_found;
604                 } @reserves
605               )
606             {
607                 my %reserve;
608                 if ( $res->is_found() ) {
609                     $reserve{'holdingbranch'} = $res->item()->holdingbranch();
610                     $reserve{'biblionumber'}  = $res->item()->biblionumber();
611                     $reserve{'barcodenumber'} = $res->item()->barcode();
612                     $reserve{'wbrcode'}       = $res->branchcode();
613                     $reserve{'itemnumber'}    = $res->itemnumber();
614                     $reserve{'wbrname'}       = $res->branch()->branchname();
615                     $reserve{'atdestination'} = $res->is_at_destination();
616                     $reserve{'desk_name'}     = ( $res->desk() ) ? $res->desk()->desk_name() : '' ;
617                     $reserve{'found'}     = $res->is_found();
618                     $reserve{'inprocessing'} = $res->is_in_processing();
619                     $reserve{'intransit'} = $res->is_in_transit();
620                 }
621                 elsif ( $res->priority() > 0 ) {
622                     if ( my $item = $res->item() )  {
623                         $reserve{'itemnumber'}      = $item->id();
624                         $reserve{'barcodenumber'}   = $item->barcode();
625                         $reserve{'item_level_hold'} = 1;
626                     }
627                 }
628
629                 $reserve{'expirationdate'} = $res->expirationdate;
630                 $reserve{'date'}           = $res->reservedate;
631                 $reserve{'borrowernumber'} = $res->borrowernumber();
632                 $reserve{'biblionumber'}   = $res->biblionumber();
633                 $reserve{'patron'}         = $res->borrower;
634                 $reserve{'notes'}          = $res->reservenotes();
635                 $reserve{'waiting_date'}   = $res->waitingdate();
636                 $reserve{'ccode'}          = $res->item() ? $res->item()->ccode() : undef;
637                 $reserve{'barcode'}        = $res->item() ? $res->item()->barcode() : undef;
638                 $reserve{'priority'}       = $res->priority();
639                 $reserve{'lowestPriority'} = $res->lowestPriority();
640                 $reserve{'suspend'}        = $res->suspend();
641                 $reserve{'suspend_until'}  = $res->suspend_until();
642                 $reserve{'reserve_id'}     = $res->reserve_id();
643                 $reserve{itemtype}         = $res->itemtype();
644                 $reserve{branchcode}       = $res->branchcode();
645                 $reserve{non_priority}     = $res->non_priority();
646                 $reserve{object}           = $res;
647
648                 push( @reserveloop, \%reserve );
649             }
650         }
651
652         # get the time for the form name...
653         my $time = time();
654
655         $template->param(
656                          time        => $time,
657                          fixedRank   => $fixedRank,
658                         );
659
660         # display infos
661         $template->param(
662                          itemdata_enumchron => $itemdata_enumchron,
663                          itemdata_ccode    => $itemdata_ccode,
664                          date              => dt_from_string,
665                          biblionumber      => $biblionumber,
666                          findborrower      => $findborrower,
667                          biblio            => $biblio,
668                          holdsview         => 1,
669                          C4::Search::enabled_staff_search_views,
670                         );
671
672         $biblioloopiter{biblionumber} = $biblionumber;
673         $biblioloopiter{title}  = $biblio->title;
674         $biblioloopiter{author} = $biblio->author;
675         $biblioloopiter{rank} = $fixedRank;
676         $biblioloopiter{reserveloop} = \@reserveloop;
677
678         if (@reserveloop) {
679             $template->param( reserveloop => \@reserveloop );
680         }
681
682         if ( $patron ) {
683             # Add the valid pickup locations
684             my @pickup_locations = $biblio->pickup_locations({ patron => $patron })->as_list;
685             $biblioloopiter{pickup_locations} = \@pickup_locations;
686             $biblioloopiter{pickup_locations_codes} = [ map { $_->branchcode } @pickup_locations ];
687         }
688
689         $num_bibs_available++ unless $biblioloopiter{none_avail};
690         push @biblioloop, \%biblioloopiter;
691     }
692
693     $template->param( no_bibs_available => 1 ) unless $num_bibs_available > 0;
694
695     $template->param( biblioloop => \@biblioloop );
696     $template->param( no_reserves_allowed => $no_reserves_allowed );
697     $template->param( exceeded_maxreserves => $exceeded_maxreserves );
698     $template->param( exceeded_holds_per_record => $exceeded_holds_per_record );
699     # FIXME: getting just the first bib's result doesn't seem right
700     $template->param( subscriptionsnumber => CountSubscriptionFromBiblionumber($biblionumbers[0]));
701 } elsif ( ! $multi_hold ) {
702     my $biblio = Koha::Biblios->find( $biblionumbers[0] );
703     $template->param( biblio => $biblio );
704 }
705 $template->param( biblionumbers => \@biblionumbers );
706
707 $template->param(
708     attribute_type_codes => ( C4::Context->preference('ExtendedPatronAttributes')
709         ? [ Koha::Patron::Attribute::Types->search( { staff_searchable => 1 } )->get_column('code') ]
710         : []
711     ),
712 );
713
714
715 # pass the userenv branch if no pickup location selected
716 $template->param( pickup => $pickup || C4::Context->userenv->{branch} );
717
718 if ( C4::Context->preference( 'AllowHoldDateInFuture' ) ) {
719     $template->param( reserve_in_future => 1 );
720 }
721
722 $template->param(
723     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
724     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
725     borrowernumber => $borrowernumber_hold,
726 );
727
728 # printout the page
729 output_html_with_http_headers $input, $cookie, $template->output;
730
731 sub sort_borrowerlist {
732     my $borrowerslist = shift;
733     my $ref           = [];
734     push @{$ref}, sort {
735         uc( $a->{surname} . $a->{firstname} ) cmp
736           uc( $b->{surname} . $b->{firstname} )
737     } @{$borrowerslist};
738     return $ref;
739 }