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