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