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