Bug 36149: (follow-up) POD and tidy
[koha.git] / opac / opac-reserve.pl
1 #!/usr/bin/perl
2
3
4 # Copyright Katipo Communications 2002
5 # Copyright Koha Development team 2012
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 use Modern::Perl;
23
24 use CGI qw ( -utf8 );
25 use C4::Auth qw( get_template_and_user );
26 use C4::Koha qw( getitemtypeimagelocation getitemtypeimagesrc );
27 use C4::Circulation qw( GetBranchItemRule );
28 use C4::Reserves qw( CanItemBeReserved CanBookBeReserved AddReserve GetReservesControlBranch IsAvailableForItemLevelRequest GetReserveFee );
29 use C4::Biblio qw( GetBiblioData GetFrameworkCode );
30 use C4::Output qw( output_html_with_http_headers );
31 use C4::Context;
32 use C4::Members;
33 use C4::Overdues;
34
35 use Koha::AuthorisedValues;
36 use Koha::Biblios;
37 use Koha::CirculationRules;
38 use Koha::Items;
39 use Koha::ItemTypes;
40 use Koha::Checkouts;
41 use Koha::Libraries;
42 use Koha::Patrons;
43 use List::MoreUtils qw( uniq );
44
45 my $maxreserves = C4::Context->preference("maxreserves");
46
47 my $query = CGI->new;
48
49 # if OPACHoldRequests (for placing holds) is disabled, leave immediately
50 if ( ! C4::Context->preference('OPACHoldRequests') ) {
51     print $query->redirect("/cgi-bin/koha/errors/404.pl");
52     exit;
53 }
54
55 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
56     {
57         template_name   => "opac-reserve.tt",
58         query           => $query,
59         type            => "opac",
60     }
61 );
62
63 my $patron = Koha::Patrons->find( $borrowernumber, { prefetch => ['categorycode'] } );
64 my $category = $patron->category;
65
66 my $can_place_hold_if_available_at_pickup = C4::Context->preference('OPACHoldsIfAvailableAtPickup');
67 unless ( $can_place_hold_if_available_at_pickup ) {
68     my @patron_categories = split ',', C4::Context->preference('OPACHoldsIfAvailableAtPickupExceptions');
69     if ( @patron_categories ) {
70         my $categorycode = $patron->categorycode;
71         $can_place_hold_if_available_at_pickup = grep { $_ eq $categorycode } @patron_categories;
72     }
73 }
74
75 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
76
77 # There are two ways of calling this script, with a single biblio num
78 # or multiple biblio nums.
79 my $biblionumbers = $query->param('biblionumbers');
80 my $reserveMode = $query->param('reserve_mode');
81 if ($reserveMode && ($reserveMode eq 'single')) {
82     my $bib = $query->param('single_bib');
83     $biblionumbers = "$bib/";
84 }
85 if (! $biblionumbers) {
86     $biblionumbers = $query->param('biblionumber');
87 }
88
89 if ((! $biblionumbers) && (! $query->param('place_reserve'))) {
90     $template->param(message=>1, no_biblionumber=>1);
91     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
92     exit;
93 }
94
95 # Pass the numbers to the page so they can be fed back
96 # when the hold is confirmed. TODO: Not necessary?
97 $template->param( biblionumbers => $biblionumbers );
98
99 # Each biblio number is suffixed with '/', e.g. "1/2/3/"
100 my @biblionumbers = split /\//, $biblionumbers;
101 if (($#biblionumbers < 0) && (! $query->param('place_reserve'))) {
102     # TODO: New message?
103     $template->param(message=>1, no_biblionumber=>1);
104     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
105     exit;
106 }
107
108 #
109 #
110 # Here we check that the borrower can actually make reserves Stage 1.
111 #
112 #
113 my $noreserves     = 0;
114 if ( $category->effective_BlockExpiredPatronOpacActions ) {
115     if ( $patron->is_expired ) {
116         # cannot reserve, their card has expired and the rules set mean this is not allowed
117         $noreserves = 1;
118         $template->param( message => 1, expired_patron => 1 );
119     }
120 }
121
122 my $maxoutstanding = C4::Context->preference("maxoutstanding");
123 my $amountoutstanding = $patron->account->balance;
124 if ( $amountoutstanding && ($amountoutstanding > $maxoutstanding) ) {
125     my $amount = sprintf "%.02f", $amountoutstanding;
126     $template->param( message => 1 );
127     $noreserves = 1;
128     $template->param( too_much_oweing => $amount );
129 }
130
131 if ( $patron->gonenoaddress && ($patron->gonenoaddress == 1) ) {
132     $noreserves = 1;
133     $template->param(
134         message => 1,
135         GNA     => 1
136     );
137 }
138
139 if ( $patron->lost && ($patron->lost == 1) ) {
140     $noreserves = 1;
141     $template->param(
142         message => 1,
143         lost    => 1
144     );
145 }
146
147 if ( $patron->is_debarred ) {
148     $noreserves = 1;
149     $template->param(
150         message          => 1,
151         debarred         => 1,
152         debarred_comment => $patron->debarredcomment,
153         debarred_date    => $patron->debarred,
154     );
155 }
156
157 my $holds = $patron->holds;
158 my $reserves_count = $holds->count;
159 $template->param( RESERVES => $holds->unblessed );
160 if ( $maxreserves && ( $reserves_count >= $maxreserves ) ) {
161     $template->param( message => 1 );
162     $noreserves = 1;
163     $template->param( too_many_reserves => $holds->count );
164 }
165
166 if( $noreserves ){
167     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
168     exit;
169 }
170
171
172 # pass the pickup branch along....
173 my $branch = $query->param('branch') || $patron->branchcode || C4::Context->userenv->{branch} || '' ;
174 $template->param( branch => $branch );
175
176 #
177 #
178 # Here we are carrying out the hold request, possibly
179 # with a specific item for each biblionumber.
180 #
181 #
182 if ( $query->param('place_reserve') ) {
183     my $reserve_cnt = 0;
184     if ($maxreserves) {
185         $reserve_cnt = $patron->holds->count;
186     }
187
188     # List is composed of alternating biblio/item/branch
189     my $selectedItems = $query->param('selecteditems');
190
191     if ($query->param('reserve_mode') eq 'single') {
192         # This indicates non-JavaScript mode, so there was
193         # only a single biblio number selected.
194         my $bib = $query->param('single_bib');
195         my $item = $query->param("checkitem_$bib");
196         if ($item eq 'any') {
197             $item = '';
198         }
199         my $branch = $query->param('branch');
200         $selectedItems = "$bib/$item/$branch/";
201     }
202
203     $selectedItems =~ s!/$!!;
204     my @selectedItems = split /\//, $selectedItems, -1;
205
206     # Make sure there is a biblionum/itemnum/branch triplet for each item.
207     # The itemnum can be 'any', meaning next available.
208     my $selectionCount = @selectedItems;
209     if (($selectionCount == 0) || (($selectionCount % 3) != 0)) {
210         $template->param(message=>1, bad_data=>1);
211         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
212         exit;
213     }
214
215     my @failed_holds;
216     while (@selectedItems) {
217         my $biblioNum = shift(@selectedItems);
218         my $itemNum   = shift(@selectedItems);
219         my $branch    = shift(@selectedItems);    # i.e., branch code, not name
220
221         my $canreserve = 0;
222
223         my $singleBranchMode = Koha::Libraries->search->count == 1;
224         if ( $singleBranchMode || ! C4::Context->preference("OPACAllowUserToChooseBranch") )
225         {    # single branch mode or disabled user choosing
226             $branch = $patron->branchcode;
227         }
228
229         # FIXME We shouldn't need to fetch the item here
230         my $item = $itemNum ? Koha::Items->find( $itemNum ) : undef;
231         # When choosing a specific item, the default pickup library should be dictated by the default hold policy
232         if ( ! C4::Context->preference("OPACAllowUserToChooseBranch") && $item ) {
233             my $type                    = $item->effective_itemtype;
234             my $reserves_control_branch = GetReservesControlBranch($item->unblessed, $patron->unblessed);
235             my $rule                    = GetBranchItemRule( $reserves_control_branch, $type );
236
237             if ( $rule->{hold_fulfillment_policy} eq 'any' || $rule->{hold_fulfillment_policy} eq 'patrongroup' ) {
238                 $branch = $patron->branchcode;
239             } elsif ( $rule->{hold_fulfillment_policy} eq 'holdgroup' ){
240                 $branch = $item->homebranch;
241             } else {
242                 my $policy = $rule->{hold_fulfillment_policy};
243                 $branch = $item->$policy;
244             }
245         }
246
247         # if we have an item, we are placing the hold on the item's bib, in case of analytics
248         if ( $item ) {
249             $biblioNum = $item->biblionumber;
250         }
251
252         # Check for user supplied reserve date
253         my $startdate;
254         if (   C4::Context->preference('AllowHoldDateInFuture')
255             && C4::Context->preference('OPACAllowHoldDateInFuture') )
256         {
257             $startdate = $query->param("reserve_date_$biblioNum");
258         }
259
260         my $patron_expiration_date = $query->param("expiration_date_$biblioNum");
261
262         my $itemtype = $query->param('itemtype') || undef;
263         $itemtype = undef if $itemNum;
264
265         my $biblio = Koha::Biblios->find($biblioNum);
266         my $rank = $biblio->holds->search( { found => [ { "!=" => "W" }, undef ] } )->count + 1;
267         if ( $item ) {
268             my $status = CanItemBeReserved( $patron, $item, $branch, { get_from_cache => 1 } )->{status};
269             if( $status eq 'OK' ){
270                 $canreserve = 1;
271             } else {
272                 push @failed_holds, $status;
273             }
274
275         }
276         else {
277             my $status = CanBookBeReserved( $borrowernumber, $biblioNum, $branch, { itemtype => $itemtype } )->{status};
278             if( $status eq 'OK'){
279                 $canreserve = 1;
280             } else {
281                 push @failed_holds, $status;
282             }
283
284             # Inserts a null into the 'itemnumber' field of 'reserves' table.
285             $itemNum = undef;
286         }
287         my $notes = $query->param('notes_'.$biblioNum)||'';
288         my $item_group_id = $query->param("item_group_id_$biblioNum") || undef;
289
290         if (   $maxreserves
291             && $reserve_cnt >= $maxreserves )
292         {
293             push @failed_holds, 'tooManyReserves';
294             $canreserve = 0;
295         }
296
297         unless ( $can_place_hold_if_available_at_pickup ) {
298             my $items_in_this_library = Koha::Items->search({ biblionumber => $biblioNum, holdingbranch => $branch });
299             my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
300             my $nb_of_items_unavailable = $items_in_this_library->search({ -or => { lost => { '!=' => 0 }, damaged => { '!=' => 0 }, } });
301             if ( $items_in_this_library->count > $nb_of_items_issued + $nb_of_items_unavailable ) {
302                 $canreserve = 0;
303                 push @failed_holds, 'items_available';
304             }
305         }
306
307         # Here we actually do the reserveration. Stage 3.
308         if ($canreserve) {
309             my $reserve_id = AddReserve(
310                 {
311                     branchcode       => $branch,
312                     borrowernumber   => $borrowernumber,
313                     biblionumber     => $biblioNum,
314                     priority         => $rank,
315                     reservation_date => $startdate,
316                     expiration_date  => $patron_expiration_date,
317                     notes            => $notes,
318                     title            => $biblio->title,
319                     itemnumber       => $itemNum,
320                     found            => undef,
321                     itemtype         => $itemtype,
322                     item_group_id    => $item_group_id,
323                 }
324             );
325             if( $reserve_id ){
326                 ++$reserve_cnt;
327             } else {
328                 push @failed_holds, 'not_placed';
329             }
330         }
331     }
332
333     print $query->redirect("/cgi-bin/koha/opac-user.pl?" . ( @failed_holds ? "failed_holds=" . join('|',@failed_holds) : q|| ) . "&opac-user-holds=1");
334     exit;
335 }
336
337 #
338 #
339 # Build hashes of the requested biblio(item)s and items.
340 #
341 #
342
343 my %biblioDataHash; # Hash of biblionumber to biblio/biblioitems record.
344 foreach my $biblioNumber (@biblionumbers) {
345
346     my $biblioData = GetBiblioData($biblioNumber);
347     $biblioDataHash{$biblioNumber} = $biblioData;
348
349     my $biblio = Koha::Biblios->find( $biblioNumber );
350     next unless $biblio;
351
352     my $items = Koha::Items->search_ordered(
353         [
354             'me.biblionumber' => $biblioNumber,
355             'me.itemnumber' => {
356                 -in => [
357                     $biblio->host_items->get_column('itemnumber')
358                 ]
359             }
360         ],
361         { prefetch => [ 'issue', 'homebranch', 'holdingbranch' ] }
362     )->filter_by_visible_in_opac({ patron => $patron });
363
364     $biblioData->{items} = [$items->as_list]; # FIXME Potentially a lot in memory here!
365
366     # Compute the priority rank.
367     $biblioData->{object} = $biblio;
368     my $reservecount = $biblio->holds->search({ found => [ {"!=" => "W"},undef] })->count;
369     $biblioData->{reservecount} = $reservecount;
370     $biblioData->{rank} = $reservecount + 1;
371 }
372
373
374 my $requested_reserves_count = scalar( @biblionumbers );
375 if ( $maxreserves && ( $reserves_count + $requested_reserves_count > $maxreserves ) ) {
376     $template->param( new_reserves_allowed => $maxreserves - $reserves_count );
377 }
378
379 $template->param( select_item_types => 1 );
380
381
382 #
383 #
384 # Build the template parameters that will show the info
385 # and items for each biblionumber.
386 #
387 #
388
389 my $biblioLoop = [];
390 my $numBibsAvailable = 0;
391 my $itemdata_enumchron = 0;
392 my $itemdata_ccode = 0;
393 my $anyholdable = 0;
394 my $itemLevelTypes = C4::Context->preference('item-level_itypes');
395 my $pickup_locations = Koha::Libraries->search({ pickup_location => 1 });
396 $template->param('item_level_itypes' => $itemLevelTypes);
397
398 my $patron_unblessed = $patron->unblessed;
399 foreach my $biblioNum (@biblionumbers) {
400
401     # Init the bib item with the choices for branch pickup
402     my %biblioLoopIter;
403
404     # Get relevant biblio data.
405     my $biblioData = $biblioDataHash{$biblioNum};
406     if (! $biblioData) {
407         $template->param(message=>1, bad_biblionumber=>$biblioNum);
408         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
409         exit;
410     }
411
412     my @not_available_at = ();
413     my $biblio = $biblioData->{object};
414     foreach my $library ( $pickup_locations->as_list ) {
415         push( @not_available_at, $library->branchcode ) unless $biblio->can_be_transferred({ to => $library });
416     }
417
418     my $frameworkcode = GetFrameworkCode( $biblioData->{biblionumber} );
419     $biblioLoopIter{biblionumber} = $biblioData->{biblionumber};
420     $biblioLoopIter{title} = $biblioData->{title};
421     $biblioLoopIter{subtitle} = $biblioData->{'subtitle'};
422     $biblioLoopIter{medium} = $biblioData->{medium};
423     $biblioLoopIter{part_number} = $biblioData->{part_number};
424     $biblioLoopIter{part_name} = $biblioData->{part_name};
425     $biblioLoopIter{author} = $biblioData->{author};
426     $biblioLoopIter{rank} = $biblioData->{rank};
427     $biblioLoopIter{reservecount} = $biblioData->{reservecount};
428     $biblioLoopIter{already_reserved} = $biblioData->{already_reserved};
429     $biblioLoopIter{object} = $biblio;
430
431     if (!$itemLevelTypes && $biblioData->{itemtype}) {
432         $biblioLoopIter{translated_description} = $itemtypes->{$biblioData->{itemtype}}{translated_description};
433         $biblioLoopIter{imageurl} = getitemtypeimagesrc() . "/". $itemtypes->{$biblioData->{itemtype}}{imageurl};
434     }
435
436
437
438     $biblioLoopIter{itemLoop} = [];
439     my $numCopiesAvailable = 0;
440     my $numCopiesOPACAvailable = 0;
441     # iterating through all items first to check if any of them available
442     # to pass this value further inside down to IsAvailableForItemLevelRequest to
443     # it's complicated logic to analyse.
444     # (before this loop was inside that sub loop so it was O(n^2) )
445     foreach my $item (@{$biblioData->{items}}) {
446
447         my $item_info = $item->unblessed;
448         $item_info->{holding_branch} = $item->holding_branch;
449         $item_info->{home_branch}    = $item->home_branch;
450         if ($itemLevelTypes) {
451             my $itemtype = $item->itemtype;
452             $item_info->{'imageurl'} = getitemtypeimagelocation( 'opac',
453                 $itemtypes->{ $itemtype->itemtype }->{'imageurl'} );
454             $item_info->{'translated_description'} =
455               $itemtypes->{ $itemtype->itemtype }->{translated_description};
456         }
457
458         # checking for holds
459         my $holds = $item->current_holds;
460         if ( my $first_hold = $holds->next ) {
461             $item_info->{first_hold} = $first_hold;
462         }
463
464         $item_info->{checkout} = $item->checkout;
465
466         # Check of the transferred documents
467         my $transfer = $item->get_transfer;
468         if ( $transfer && $transfer->in_transit ) {
469             $item_info->{transfertwhen} = $transfer->datesent;
470             $item_info->{transfertfrom} = $transfer->frombranch;
471             $item_info->{transfertto} = $transfer->tobranch;
472             $item_info->{nocancel} = 1;
473         }
474
475         # if the items belongs to a host record, show link to host record
476         if ( $item_info->{biblionumber} ne $biblioNum ) {
477             $item_info->{hostbiblionumber} = $item->biblionumber;
478             $item_info->{hosttitle}        = Koha::Biblios->find( $item_info->{biblionumber} )->title;
479         }
480
481         my $branch = GetReservesControlBranch( $item_info, $patron_unblessed );
482
483         my $policy_holdallowed =
484             CanItemBeReserved( $patron, $item, undef, { get_from_cache => 1 } )->{status} eq 'OK' &&
485             IsAvailableForItemLevelRequest($item, $patron, undef);
486
487         if ($policy_holdallowed) {
488             my $opac_hold_policy = Koha::CirculationRules->get_opacitemholds_policy( { item => $item, patron => $patron } );
489             if ( $opac_hold_policy ne 'N' ) { # If Y or F
490                 $item_info->{available} = 1;
491                 $numCopiesOPACAvailable++;
492                 $biblioLoopIter{force_hold} = 1 if $opac_hold_policy eq 'F';
493             }
494             $numCopiesAvailable++;
495
496             unless ( $can_place_hold_if_available_at_pickup ) {
497                 my $items_in_this_library = Koha::Items->search({ biblionumber => $item->biblionumber, holdingbranch => $item->holdingbranch });
498                 my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
499                 if ( $items_in_this_library->count > $nb_of_items_issued ) {
500                     push @not_available_at, $item->holdingbranch;
501                 }
502             }
503         }
504
505         # Show serial enumeration when needed
506         if ($item_info->{enumchron}) {
507             $itemdata_enumchron = 1;
508         }
509         # Show collection when needed
510         if ($item_info->{ccode}) {
511             $itemdata_ccode = 1;
512         }
513
514         push @{$biblioLoopIter{itemLoop}}, $item_info;
515     }
516     $template->param(
517         itemdata_enumchron => $itemdata_enumchron,
518         itemdata_ccode     => $itemdata_ccode,
519     );
520
521     if ($numCopiesAvailable > 0) {
522         $numBibsAvailable++;
523         $biblioLoopIter{bib_available} = 1;
524         $biblioLoopIter{holdable} = 1;
525         $biblioLoopIter{itemholdable} = 1 if $numCopiesOPACAvailable;
526     }
527     if ($biblioLoopIter{already_reserved}) {
528         $biblioLoopIter{holdable} = undef;
529         $biblioLoopIter{itemholdable} = undef;
530     }
531     if ( $biblioLoopIter{holdable} ) {
532         @not_available_at = uniq @not_available_at;
533         $biblioLoopIter{not_available_at} = \@not_available_at ;
534     }
535
536     unless ( $can_place_hold_if_available_at_pickup ) {
537         @not_available_at = uniq @not_available_at;
538         $biblioLoopIter{not_available_at} = \@not_available_at ;
539         # The record is not holdable is not available at any of the libraries
540         if ( Koha::Libraries->search->count == @not_available_at ) {
541             $biblioLoopIter{holdable} = 0;
542         }
543     }
544
545     my $status = CanBookBeReserved( $borrowernumber, $biblioNum )->{status};
546     $biblioLoopIter{holdable} &&= $status eq 'OK';
547     $biblioLoopIter{$status} = 1;
548
549     if ( $biblioLoopIter{holdable} and C4::Context->preference('AllowHoldItemTypeSelection') ) {
550         # build the allowed item types loop
551         my $rs = $biblio->items->search_ordered(
552             undef,
553             {   select => [ { distinct => 'itype' } ],
554                 as     => 'item_type'
555             }
556         );
557
558         my @item_types =
559           grep { CanBookBeReserved( $borrowernumber, $biblioNum, $branch, { itemtype => $_ } )->{status} eq 'OK' }
560           $rs->get_column('item_type');
561
562         $biblioLoopIter{allowed_item_types} = \@item_types;
563     }
564
565     if ( $status eq 'recall' ) {
566         $biblioLoopIter{recall} = 1;
567     }
568
569     # For multiple holds per record, if a patron has previously placed a hold,
570     # the patron can only place more holds of the same type. That is, if the
571     # patron placed a record level hold, all the holds the patron places must
572     # be record level. If the patron placed an item level hold, all holds
573     # the patron places must be item level
574     my $forced_hold_level = Koha::Holds->search(
575         {
576             borrowernumber => $borrowernumber,
577             biblionumber   => $biblioNum,
578             found          => undef,
579         }
580     )->forced_hold_level();
581     if ($forced_hold_level) {
582         $biblioLoopIter{force_hold}   = 1 if $forced_hold_level eq 'item';
583         $biblioLoopIter{force_hold}   = 0 if $forced_hold_level eq 'item_group';
584         $biblioLoopIter{itemholdable} = 0 if $forced_hold_level eq 'record';
585         $biblioLoopIter{itemholdable} = 0 if $forced_hold_level eq 'item_group';
586         $biblioLoopIter{forced_hold_level} = $forced_hold_level;
587     }
588
589     # Pass through any reserve charge
590     $biblioLoopIter{reserve_charge} = GetReserveFee( $patron->id, $biblioNum );
591
592     push @$biblioLoop, \%biblioLoopIter;
593
594     $anyholdable = 1 if $biblioLoopIter{holdable};
595 }
596
597 unless ($pickup_locations->count) {
598     $numBibsAvailable = 0;
599     $anyholdable = 0;
600     $template->param(
601         message => 1,
602         no_pickup_locations => 1
603     );
604 }
605
606 if ( $numBibsAvailable == 0 || $anyholdable == 0) {
607     $template->param( none_available => 1 );
608 }
609
610 if (scalar @biblionumbers > 1) {
611     $template->param( multi_hold => 1);
612 }
613
614 my $show_notes=C4::Context->preference('OpacHoldNotes');
615 $template->param(OpacHoldNotes=>$show_notes);
616
617 # display infos
618 $template->param(bibitemloop => $biblioLoop);
619 # can set reserve date in future
620 if (
621     C4::Context->preference( 'AllowHoldDateInFuture' ) &&
622     C4::Context->preference( 'OPACAllowHoldDateInFuture' )
623     ) {
624     $template->param(
625             reserve_in_future         => 1,
626     );
627 }
628
629 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };