Bug 18295: C4::Items - Remove get_itemnumbers_of
[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::Circulation;
41 use Koha::DateUtils;
42 use C4::Utils::DataTables::Members;
43 use C4::Members;
44 use C4::Search;         # enabled_staff_search_views
45 use Koha::DateUtils;
46 use Koha::Holds;
47 use Koha::Items;
48 use Koha::ItemTypes;
49 use Koha::Libraries;
50 use Koha::Patrons;
51
52 my $dbh = C4::Context->dbh;
53 my $input = new CGI;
54 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user(
55     {
56         template_name   => "reserve/request.tt",
57         query           => $input,
58         type            => "intranet",
59         authnotrequired => 0,
60         flagsrequired   => { reserveforothers => 'place_holds' },
61     }
62 );
63
64 my $multihold = $input->param('multi_hold');
65 $template->param(multi_hold => $multihold);
66 my $showallitems = $input->param('showallitems');
67
68 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
69
70 # Select borrowers infos
71 my $findborrower = $input->param('findborrower');
72 $findborrower = '' unless defined $findborrower;
73 $findborrower =~ s|,| |g;
74 my $borrowernumber_hold = $input->param('borrowernumber') || '';
75 my $messageborrower;
76 my $warnings;
77 my $messages;
78 my $exceeded_maxreserves;
79 my $exceeded_holds_per_record;
80
81 my $date = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
82 my $action = $input->param('action');
83 $action ||= q{};
84
85 if ( $action eq 'move' ) {
86   my $where = $input->param('where');
87   my $reserve_id = $input->param('reserve_id');
88   AlterPriority( $where, $reserve_id );
89 } elsif ( $action eq 'cancel' ) {
90   my $reserve_id = $input->param('reserve_id');
91   CancelReserve({ reserve_id => $reserve_id });
92 } elsif ( $action eq 'setLowestPriority' ) {
93   my $reserve_id = $input->param('reserve_id');
94   ToggleLowestPriority( $reserve_id );
95 } elsif ( $action eq 'toggleSuspend' ) {
96   my $reserve_id = $input->param('reserve_id');
97   my $suspend_until  = $input->param('suspend_until');
98   ToggleSuspend( $reserve_id, $suspend_until );
99 }
100
101 if ($findborrower) {
102     my $borrower = C4::Members::GetMember( cardnumber => $findborrower );
103     if ( $borrower ) {
104         $borrowernumber_hold = $borrower->{borrowernumber};
105     } else {
106         my $dt_params = { iDisplayLength => -1 };
107         my $results = C4::Utils::DataTables::Members::search(
108             {
109                 searchmember => $findborrower,
110                 dt_params => $dt_params,
111             }
112         );
113         my $borrowers = $results->{patrons};
114         if ( scalar @$borrowers == 1 ) {
115             $borrowernumber_hold = $borrowers->[0]->{borrowernumber};
116         } elsif ( @$borrowers ) {
117             $template->param( borrowers => $borrowers );
118         } else {
119             $messageborrower = "'$findborrower'";
120         }
121     }
122 }
123
124 my @biblionumbers = ();
125 my $biblionumbers = $input->param('biblionumbers');
126 if ($multihold) {
127     @biblionumbers = split '/', $biblionumbers;
128 } else {
129     push @biblionumbers, $input->multi_param('biblionumber');
130 }
131
132
133 # If we have the borrowernumber because we've performed an action, then we
134 # don't want to try to place another reserve.
135 if ($borrowernumber_hold && !$action) {
136     my $borrowerinfo = GetMember( borrowernumber => $borrowernumber_hold );
137     my $diffbranch;
138
139     # we check the reserves of the user, and if they can reserve a document
140     # FIXME At this time we have a simple count of reservs, but, later, we could improve the infos "title" ...
141
142     my $reserves_count =
143       GetReserveCount( $borrowerinfo->{'borrowernumber'} );
144
145     my $new_reserves_count = scalar( @biblionumbers );
146
147     my $maxreserves = C4::Context->preference('maxreserves');
148     if ( $maxreserves
149         && ( $reserves_count + $new_reserves_count > $maxreserves ) )
150     {
151         my $new_reserves_allowed =
152             $maxreserves - $reserves_count > 0
153           ? $maxreserves - $reserves_count
154           : 0;
155         $warnings             = 1;
156         $exceeded_maxreserves = 1;
157         $template->param(
158             new_reserves_allowed => $new_reserves_allowed,
159             new_reserves_count   => $new_reserves_count,
160             reserves_count       => $reserves_count,
161             maxreserves          => $maxreserves,
162         );
163     }
164
165     # we check the date expiry of the borrower (only if there is an expiry date, otherwise, set to 1 (warn)
166     my $expiry_date = $borrowerinfo->{dateexpiry};
167     my $expiry = 0; # flag set if patron account has expired
168     if ($expiry_date and $expiry_date ne '0000-00-00' and
169         Date_to_Days(split /-/,$date) > Date_to_Days(split /-/,$expiry_date)) {
170         $expiry = 1;
171     }
172
173     # check if the borrower make the reserv in a different branch
174     if ( $borrowerinfo->{'branchcode'} ne C4::Context->userenv->{'branch'} ) {
175         $diffbranch = 1;
176     }
177
178     my $is_debarred = Koha::Patrons->find( $borrowerinfo->{borrowernumber} )->is_debarred;
179     $template->param(
180                 borrowernumber      => $borrowerinfo->{'borrowernumber'},
181                 borrowersurname     => $borrowerinfo->{'surname'},
182                 borrowerfirstname   => $borrowerinfo->{'firstname'},
183                 borrowerstreetaddress   => $borrowerinfo->{'address'},
184                 borrowercity        => $borrowerinfo->{'city'},
185                 borrowerphone       => $borrowerinfo->{'phone'},
186                 borrowermobile      => $borrowerinfo->{'mobile'},
187                 borrowerfax         => $borrowerinfo->{'fax'},
188                 borrowerphonepro    => $borrowerinfo->{'phonepro'},
189                 borroweremail       => $borrowerinfo->{'email'},
190                 borroweremailpro    => $borrowerinfo->{'emailpro'},
191                 borrowercategory    => $borrowerinfo->{'category'},
192                 cardnumber          => $borrowerinfo->{'cardnumber'},
193                 expiry              => $expiry,
194                 diffbranch          => $diffbranch,
195                 messages            => $messages,
196                 warnings            => $warnings,
197                 restricted          => $is_debarred,
198                 amount_outstanding  => GetMemberAccountRecords($borrowerinfo->{borrowernumber}),
199     );
200 }
201
202 $template->param( messageborrower => $messageborrower );
203
204 # FIXME launch another time GetMember perhaps until
205 my $borrowerinfo = GetMember( borrowernumber => $borrowernumber_hold );
206
207 my $logged_in_patron = Koha::Patrons->find( $borrowernumber );
208
209 my $itemdata_enumchron = 0;
210 my @biblioloop = ();
211 foreach my $biblionumber (@biblionumbers) {
212     next unless $biblionumber =~ m|^\d+$|;
213
214     my %biblioloopiter = ();
215
216     my $dat = GetBiblioData($biblionumber);
217
218     my $canReserve = CanBookBeReserved( $borrowerinfo->{borrowernumber}, $biblionumber );
219     $canReserve //= '';
220     if ( $canReserve eq 'OK' ) {
221
222         #All is OK and we can continue
223     }
224     elsif ( $canReserve eq 'tooManyReserves' ) {
225         $exceeded_maxreserves = 1;
226     }
227     elsif ( $canReserve eq 'tooManyHoldsForThisRecord' ) {
228         $exceeded_holds_per_record = 1;
229         $biblioloopiter{$canReserve} = 1;
230     }
231     elsif ( $canReserve eq 'ageRestricted' ) {
232         $template->param( $canReserve => 1 );
233         $biblioloopiter{$canReserve} = 1;
234     }
235     else {
236         $biblioloopiter{$canReserve} = 1;
237     }
238
239     my $force_hold_level;
240     if ( $borrowerinfo->{borrowernumber} ) {
241         # For multiple holds per record, if a patron has previously placed a hold,
242         # the patron can only place more holds of the same type. That is, if the
243         # patron placed a record level hold, all the holds the patron places must
244         # be record level. If the patron placed an item level hold, all holds
245         # the patron places must be item level
246         my $holds = Koha::Holds->search(
247             {
248                 borrowernumber => $borrowerinfo->{borrowernumber},
249                 biblionumber   => $biblionumber,
250                 found          => undef,
251             }
252         );
253         $force_hold_level = $holds->forced_hold_level();
254         $biblioloopiter{force_hold_level} = $force_hold_level;
255         $template->param( force_hold_level => $force_hold_level );
256
257         # For a librarian to be able to place multiple record holds for a patron for a record,
258         # we must find out what the maximum number of holds they can place for the patron is
259         my $max_holds_for_record = GetMaxPatronHoldsForRecord( $borrowerinfo->{borrowernumber}, $biblionumber );
260         my $remaining_holds_for_record = $max_holds_for_record - $holds->count();
261         $biblioloopiter{remaining_holds_for_record} = $max_holds_for_record;
262         $template->param( max_holds_for_record => $max_holds_for_record );
263         $template->param( remaining_holds_for_record => $remaining_holds_for_record );
264     }
265
266     # Check to see if patron is allowed to place holds on records where the
267     # patron already has an item from that record checked out
268     my $alreadypossession;
269     if ( !C4::Context->preference('AllowHoldsOnPatronsPossessions')
270         && CheckIfIssuedToPatron( $borrowerinfo->{borrowernumber}, $biblionumber ) )
271     {
272         $template->param( alreadypossession => $alreadypossession, );
273     }
274
275
276     my $count = Koha::Holds->search( { biblionumber => $biblionumber } )->count();
277     my $totalcount = $count;
278
279     # FIXME think @optionloop, is maybe obsolete, or  must be switchable by a systeme preference fixed rank or not
280     # make priorities options
281
282     my @optionloop;
283     for ( 1 .. $count + 1 ) {
284         push(
285              @optionloop,
286              {
287               num      => $_,
288               selected => ( $_ == $count + 1 ),
289              }
290             );
291     }
292     # adding a fixed value for priority options
293     my $fixedRank = $count+1;
294
295     my %itemnumbers_of_biblioitem;
296
297     ## $items is array of 'item' table numbers
298     my $items = Koha::Items->search({ biblionumber => $biblionumber });
299     my @itemnumbers = $items->get_column('itemnumber');
300     my @hostitems = get_hostitemnumbers_of($biblionumber);
301     if (@hostitems){
302         $template->param('hostitemsflag' => 1);
303         push(@itemnumbers, @hostitems);
304     }
305
306     if (!@itemnumbers) {
307         $template->param('noitems' => 1);
308         $biblioloopiter{noitems} = 1;
309     }
310
311     ## Hash of item number to 'item' table fields
312     my $iteminfos_of = GetItemInfosOf(@itemnumbers);
313
314     ## Here we go backwards again to create hash of biblioitemnumber to itemnumbers,
315     ## when by definition all of the itemnumber have the same biblioitemnumber
316     foreach my $itemnumber (@itemnumbers) {
317         my $biblioitemnumber = $iteminfos_of->{$itemnumber}->{biblioitemnumber};
318         push( @{ $itemnumbers_of_biblioitem{$biblioitemnumber} }, $itemnumber );
319     }
320
321     ## Should be same as biblionumber
322     my @biblioitemnumbers = keys %itemnumbers_of_biblioitem;
323
324     ## Hash of biblioitemnumber to 'biblioitem' table records
325     my $biblioiteminfos_of  = GetBiblioItemInfosOf(@biblioitemnumbers);
326
327     my $frameworkcode = GetFrameworkCode( $biblionumber );
328     my @notforloan_avs = Koha::AuthorisedValues->search_by_koha_field({ kohafield => 'items.notforloan', frameworkcode => $frameworkcode });
329     my $notforloan_label_of = { map { $_->authorised_value => $_->lib } @notforloan_avs };
330
331     my @bibitemloop;
332
333     my @available_itemtypes;
334     foreach my $biblioitemnumber (@biblioitemnumbers) {
335         my $biblioitem = $biblioiteminfos_of->{$biblioitemnumber};
336         my $num_available = 0;
337         my $num_override  = 0;
338         my $hiddencount   = 0;
339
340         $biblioitem->{force_hold_level} = $force_hold_level;
341
342         if ( $biblioitem->{biblioitemnumber} ne $biblionumber ) {
343             $biblioitem->{hostitemsflag} = 1;
344         }
345
346         $biblioloopiter{description} = $biblioitem->{description};
347         $biblioloopiter{itypename}   = $biblioitem->{description};
348         if ( $biblioitem->{itemtype} ) {
349
350             $biblioitem->{description} =
351               $itemtypes->{ $biblioitem->{itemtype} }{description};
352
353             $biblioloopiter{imageurl} =
354               getitemtypeimagelocation( 'intranet',
355                 $itemtypes->{ $biblioitem->{itemtype} }{imageurl} );
356         }
357
358         foreach my $itemnumber ( @{ $itemnumbers_of_biblioitem{$biblioitemnumber} } )    {
359             my $item = $iteminfos_of->{$itemnumber};
360
361             $item->{force_hold_level} = $force_hold_level;
362
363             unless (C4::Context->preference('item-level_itypes')) {
364                 $item->{itype} = $biblioitem->{itemtype};
365             }
366
367             $item->{itypename} = $itemtypes->{ $item->{itype} }{description};
368             $item->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $item->{itype} }{imageurl} );
369             $item->{homebranch} = $item->{homebranch};
370
371             # if the holdingbranch is different than the homebranch, we show the
372             # holdingbranch of the document too
373             if ( $item->{homebranch} ne $item->{holdingbranch} ) {
374                 $item->{holdingbranch} = $item->{holdingbranch};
375             }
376
377                 if($item->{biblionumber} ne $biblionumber){
378                         $item->{hostitemsflag}=1;
379                         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
380                 }
381                 
382             # if the item is currently on loan, we display its return date and
383             # change the background color
384             my $issues= GetItemIssue($itemnumber);
385             if ( $issues->{'date_due'} ) {
386                 $item->{date_due} = $issues->{date_due_sql};
387                 $item->{backgroundcolor} = 'onloan';
388             }
389
390             # checking reserve
391             my $holds = Koha::Items->find( $itemnumber )->current_holds;
392             if ( my $first_hold = $holds->next ) {
393                 my $ItemBorrowerReserveInfo = GetMember( borrowernumber => $first_hold->borrowernumber );
394
395                 $item->{backgroundcolor} = 'reserved';
396                 $item->{reservedate}     = output_pref({ dt => dt_from_string( $first_hold->reservedate ), dateonly => 1 }); # FIXME Should be formatted in the template
397                 $item->{ReservedForBorrowernumber}     = $first_hold->borrowernumber;
398                 $item->{ReservedForSurname}     = $ItemBorrowerReserveInfo->{'surname'};
399                 $item->{ReservedForFirstname}     = $ItemBorrowerReserveInfo->{'firstname'};
400                 $item->{ExpectedAtLibrary}     = $first_hold->branchcode;
401                 $item->{waitingdate} = $first_hold->waitingdate;
402             }
403
404             # Management of the notforloan document
405             if ( $item->{notforloan} ) {
406                 $item->{backgroundcolor} = 'other';
407                 $item->{notforloanvalue} =
408                   $notforloan_label_of->{ $item->{notforloan} };
409             }
410
411             # Management of lost or long overdue items
412             if ( $item->{itemlost} ) {
413
414                 # FIXME localized strings should never be in Perl code
415                 $item->{message} =
416                   $item->{itemlost} == 1 ? "(lost)"
417                     : $item->{itemlost} == 2 ? "(long overdue)"
418                       : "";
419                 $item->{backgroundcolor} = 'other';
420                 if ($logged_in_patron->category->hidelostitems && !$showallitems) {
421                     $item->{hide} = 1;
422                     $hiddencount++;
423                 }
424             }
425
426             # Check the transit status
427             my ( $transfertwhen, $transfertfrom, $transfertto ) =
428               GetTransfers($itemnumber);
429
430             if ( defined $transfertwhen && $transfertwhen ne '' ) {
431                 $item->{transfertwhen} = output_pref({ dt => dt_from_string( $transfertwhen ), dateonly => 1 });
432                 $item->{transfertfrom} = $transfertfrom;
433                 $item->{transfertto} = $transfertto;
434                 $item->{nocancel} = 1;
435             }
436
437             # If there is no loan, return and transfer, we show a checkbox.
438             $item->{notforloan} ||= 0;
439
440             # if independent branches is on we need to check if the person can reserve
441             # for branches they arent logged in to
442             if ( C4::Context->preference("IndependentBranches") ) {
443                 if (! C4::Context->preference("canreservefromotherbranches")){
444                     # cant reserve items so need to check if item homebranch and userenv branch match if not we cant reserve
445                     my $userenv = C4::Context->userenv;
446                     unless ( C4::Context->IsSuperLibrarian ) {
447                         $item->{cantreserve} = 1 if ( $item->{homebranch} ne $userenv->{branch} );
448                     }
449                 }
450             }
451
452             my $branch = C4::Circulation::_GetCircControlBranch($item, $borrowerinfo);
453
454             my $branchitemrule = GetBranchItemRule( $branch, $item->{'itype'} );
455
456             $item->{'holdallowed'} = $branchitemrule->{'holdallowed'};
457
458             my $can_item_be_reserved = CanItemBeReserved( $borrowerinfo->{borrowernumber}, $itemnumber );
459             $item->{not_holdable} = $can_item_be_reserved unless ( $can_item_be_reserved eq 'OK' );
460
461             $item->{item_level_holds} = OPACItemHoldsAllowed( $item, $borrowerinfo );
462
463             if (
464                    !$item->{cantreserve}
465                 && !$exceeded_maxreserves
466                 && IsAvailableForItemLevelRequest($item, $borrowerinfo)
467                 && $can_item_be_reserved eq 'OK'
468               )
469             {
470                 $item->{available} = 1;
471                 $num_available++;
472
473                 push( @available_itemtypes, $item->{itype} );
474             }
475             elsif ( C4::Context->preference('AllowHoldPolicyOverride') ) {
476                 # If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
477                 $item->{override} = 1;
478                 $num_override++;
479             }
480
481             # If none of the conditions hold true, then neither override nor available is set and the item cannot be checked
482
483             # Show serial enumeration when needed
484             if ($item->{enumchron}) {
485                 $itemdata_enumchron = 1;
486             }
487
488             push @{ $biblioitem->{itemloop} }, $item;
489         }
490
491         if ( $num_override == scalar( @{ $biblioitem->{itemloop} } ) ) { # That is, if all items require an override
492             $template->param( override_required => 1 );
493         } elsif ( $num_available == 0 ) {
494             $template->param( none_available => 1 );
495             $biblioloopiter{warn} = 1;
496             $biblioloopiter{none_avail} = 1;
497         }
498         $template->param( hiddencount => $hiddencount);
499
500         push @bibitemloop, $biblioitem;
501     }
502
503     @available_itemtypes = uniq( @available_itemtypes );
504     $template->param( available_itemtypes => \@available_itemtypes );
505
506     # existingreserves building
507     my @reserveloop;
508     my @reserves = Koha::Holds->search( { biblionumber => $biblionumber }, { order_by => 'priority' } );
509     foreach my $res (
510         sort {
511             my $a_found = $a->found() || '';
512             my $b_found = $a->found() || '';
513             $a_found cmp $b_found;
514         } @reserves
515       )
516     {
517         my $priority = $res->priority();
518         my %reserve;
519         my @optionloop;
520         for ( my $i = 1 ; $i <= $totalcount ; $i++ ) {
521             push(
522                 @optionloop,
523                 {
524                     num      => $i,
525                     selected => ( $i == $priority ),
526                 }
527             );
528         }
529
530         if ( $res->is_found() ) {
531             $reserve{'holdingbranch'} = $res->item()->holdingbranch();
532             $reserve{'biblionumber'}  = $res->item()->biblionumber();
533             $reserve{'barcodenumber'} = $res->item()->barcode();
534             $reserve{'wbrcode'}       = $res->branchcode();
535             $reserve{'itemnumber'}    = $res->itemnumber();
536             $reserve{'wbrname'}       = $res->branch()->branchname();
537
538             if ( $reserve{'holdingbranch'} eq $reserve{'wbrcode'} ) {
539
540                 # Just because the holdingbranch matches the reserve branch doesn't mean the item
541                 # has arrived at the destination, check for an open transfer for the item as well
542                 my ( $transfertwhen, $transfertfrom, $transferto ) =
543                   C4::Circulation::GetTransfers( $res->itemnumber() );
544                 if ( not $transferto or $transferto ne $res->branchcode() ) {
545                     $reserve{'atdestination'} = 1;
546                 }
547             }
548
549             # set found to 1 if reserve is waiting for patron pickup
550             $reserve{'found'}     = $res->is_found();
551             $reserve{'intransit'} = $res->is_in_transit();
552         }
553         elsif ( $res->priority() > 0 ) {
554             if ( my $item = $res->item() )  {
555                 $reserve{'itemnumber'}      = $item->id();
556                 $reserve{'barcodenumber'}   = $item->barcode();
557                 $reserve{'item_level_hold'} = 1;
558             }
559         }
560
561         #     get borrowers reserve info
562         if ( C4::Context->preference('HidePatronName') ) {
563             $reserve{'hidename'}   = 1;
564             $reserve{'cardnumber'} = $res->borrower()->cardnumber();
565         }
566         $reserve{'expirationdate'} = output_pref( { dt => dt_from_string( $res->expirationdate ), dateonly => 1 } )
567           unless ( !defined( $res->expirationdate ) || $res->expirationdate eq '0000-00-00' );
568         $reserve{'date'}           = output_pref( { dt => dt_from_string( $res->reservedate ), dateonly => 1 } );
569         $reserve{'borrowernumber'} = $res->borrowernumber();
570         $reserve{'biblionumber'}   = $res->biblionumber();
571         $reserve{'borrowernumber'} = $res->borrowernumber();
572         $reserve{'firstname'}      = $res->borrower()->firstname();
573         $reserve{'surname'}        = $res->borrower()->surname();
574         $reserve{'notes'}          = $res->reservenotes();
575         $reserve{'waiting_date'}   = $res->waitingdate();
576         $reserve{'ccode'}          = $res->item() ? $res->item()->ccode() : undef;
577         $reserve{'barcode'}        = $res->item() ? $res->item()->barcode() : undef;
578         $reserve{'priority'}       = $res->priority();
579         $reserve{'lowestPriority'} = $res->lowestPriority();
580         $reserve{'optionloop'}     = \@optionloop;
581         $reserve{'suspend'}        = $res->suspend();
582         $reserve{'suspend_until'}  = $res->suspend_until();
583         $reserve{'reserve_id'}     = $res->reserve_id();
584         $reserve{itemtype}         = $res->itemtype();
585         $reserve{branchcode}       = $res->branchcode();
586
587         push( @reserveloop, \%reserve );
588     }
589
590     # get the time for the form name...
591     my $time = time();
592
593     $template->param(
594                      time        => $time,
595                      fixedRank   => $fixedRank,
596                     );
597
598     # display infos
599     $template->param(
600                      optionloop        => \@optionloop,
601                      bibitemloop       => \@bibitemloop,
602                      itemdata_enumchron => $itemdata_enumchron,
603                      date              => $date,
604                      biblionumber      => $biblionumber,
605                      findborrower      => $findborrower,
606                      title             => $dat->{title},
607                      author            => $dat->{author},
608                      holdsview => 1,
609                      C4::Search::enabled_staff_search_views,
610                     );
611     if (defined $borrowerinfo && exists $borrowerinfo->{'branchcode'}) {
612         $template->param( borrower_branchcode => $borrowerinfo->{'branchcode'},);
613     }
614
615     $biblioloopiter{biblionumber} = $biblionumber;
616     $biblioloopiter{title} = $dat->{title};
617     $biblioloopiter{rank} = $fixedRank;
618     $biblioloopiter{reserveloop} = \@reserveloop;
619
620     if (@reserveloop) {
621         $template->param( reserveloop => \@reserveloop );
622     }
623
624     push @biblioloop, \%biblioloopiter;
625 }
626
627 $template->param( biblioloop => \@biblioloop );
628 $template->param( biblionumbers => $biblionumbers );
629 $template->param( exceeded_maxreserves => $exceeded_maxreserves );
630 $template->param( exceeded_holds_per_record => $exceeded_holds_per_record );
631
632 if ($multihold) {
633     $template->param( multi_hold => 1 );
634 }
635
636 if ( C4::Context->preference( 'AllowHoldDateInFuture' ) ) {
637     $template->param( reserve_in_future => 1 );
638 }
639
640 $template->param(
641     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
642     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
643 );
644
645 # printout the page
646 output_html_with_http_headers $input, $cookie, $template->output;
647
648 sub sort_borrowerlist {
649     my $borrowerslist = shift;
650     my $ref           = [];
651     push @{$ref}, sort {
652         uc( $a->{surname} . $a->{firstname} ) cmp
653           uc( $b->{surname} . $b->{firstname} )
654     } @{$borrowerslist};
655     return $ref;
656 }