Bug 30847: Don't fetch patron twice
[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 ItemsAnyAvailableAndNotRestricted IsAvailableForItemLevelRequest );
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 # check if this user can place a reserve, -1 means use sys pref, 0 means dont block, 1 means block
76 if ( $category->effective_BlockExpiredPatronOpacActions ) {
77
78     if ( $patron->is_expired ) {
79
80         # cannot reserve, their card has expired and the rules set mean this is not allowed
81         $template->param( message => 1, expired_patron => 1 );
82         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
83         exit;
84     }
85 }
86
87 # Pass through any reserve charge
88 my $reservefee = $category->reservefee;
89 if ( $reservefee > 0){
90     $template->param( RESERVE_CHARGE => $reservefee);
91 }
92
93 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
94
95 # There are two ways of calling this script, with a single biblio num
96 # or multiple biblio nums.
97 my $biblionumbers = $query->param('biblionumbers');
98 my $reserveMode = $query->param('reserve_mode');
99 if ($reserveMode && ($reserveMode eq 'single')) {
100     my $bib = $query->param('single_bib');
101     $biblionumbers = "$bib/";
102 }
103 if (! $biblionumbers) {
104     $biblionumbers = $query->param('biblionumber');
105 }
106
107 if ((! $biblionumbers) && (! $query->param('place_reserve'))) {
108     $template->param(message=>1, no_biblionumber=>1);
109     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
110     exit;
111 }
112
113 # Pass the numbers to the page so they can be fed back
114 # when the hold is confirmed. TODO: Not necessary?
115 $template->param( biblionumbers => $biblionumbers );
116
117 # Each biblio number is suffixed with '/', e.g. "1/2/3/"
118 my @biblionumbers = split /\//, $biblionumbers;
119 if (($#biblionumbers < 0) && (! $query->param('place_reserve'))) {
120     # TODO: New message?
121     $template->param(message=>1, no_biblionumber=>1);
122     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
123     exit;
124 }
125
126
127 # pass the pickup branch along....
128 my $branch = $query->param('branch') || $patron->branchcode || C4::Context->userenv->{branch} || '' ;
129 $template->param( branch => $branch );
130
131 #
132 #
133 # Build hashes of the requested biblio(item)s and items.
134 #
135 #
136
137 my %biblioDataHash; # Hash of biblionumber to biblio/biblioitems record.
138 foreach my $biblioNumber (@biblionumbers) {
139
140     my $biblioData = GetBiblioData($biblioNumber);
141     $biblioDataHash{$biblioNumber} = $biblioData;
142
143     my $biblio = Koha::Biblios->find( $biblioNumber );
144     next unless $biblio;
145
146     my $marcrecord = $biblio->metadata->record;
147
148     my $items = Koha::Items->search_ordered(
149         [
150             biblionumber => $biblioNumber,
151             'me.itemnumber' => {
152                 -in => [
153                     $biblio->host_items->get_column('itemnumber')
154                 ]
155             }
156         ],
157         { prefetch => [ 'issue', 'homebranch', 'holdingbranch' ] }
158     )->filter_by_visible_in_opac({ patron => $patron });
159
160     $biblioData->{items} = [$items->as_list]; # FIXME Potentially a lot in memory here!
161
162     # Compute the priority rank.
163     $biblioData->{object} = $biblio;
164     my $reservecount = $biblio->holds->search({ found => [ {"!=" => "W"},undef] })->count;
165     $biblioData->{reservecount} = $reservecount;
166     $biblioData->{rank} = $reservecount + 1;
167 }
168
169 #
170 #
171 # If this is the second time through this script, it
172 # means we are carrying out the hold request, possibly
173 # with a specific item for each biblionumber.
174 #
175 #
176 if ( $query->param('place_reserve') ) {
177     my $reserve_cnt = 0;
178     if ($maxreserves) {
179         $reserve_cnt = $patron->holds->count;
180     }
181
182     # List is composed of alternating biblio/item/branch
183     my $selectedItems = $query->param('selecteditems');
184
185     if ($query->param('reserve_mode') eq 'single') {
186         # This indicates non-JavaScript mode, so there was
187         # only a single biblio number selected.
188         my $bib = $query->param('single_bib');
189         my $item = $query->param("checkitem_$bib");
190         if ($item eq 'any') {
191             $item = '';
192         }
193         my $branch = $query->param('branch');
194         $selectedItems = "$bib/$item/$branch/";
195     }
196
197     $selectedItems =~ s!/$!!;
198     my @selectedItems = split /\//, $selectedItems, -1;
199
200     # Make sure there is a biblionum/itemnum/branch triplet for each item.
201     # The itemnum can be 'any', meaning next available.
202     my $selectionCount = @selectedItems;
203     if (($selectionCount == 0) || (($selectionCount % 3) != 0)) {
204         $template->param(message=>1, bad_data=>1);
205         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
206         exit;
207     }
208
209     my $failed_holds = 0;
210     while (@selectedItems) {
211         my $biblioNum = shift(@selectedItems);
212         my $itemNum   = shift(@selectedItems);
213         my $branch    = shift(@selectedItems);    # i.e., branch code, not name
214
215         my $canreserve = 0;
216
217         my $singleBranchMode = Koha::Libraries->search->count == 1;
218         if ( $singleBranchMode || ! C4::Context->preference("OPACAllowUserToChooseBranch") )
219         {    # single branch mode or disabled user choosing
220             $branch = $patron->branchcode;
221         }
222
223         # FIXME We shouldn't need to fetch the item here
224         my $item = $itemNum ? Koha::Items->find( $itemNum ) : undef;
225         # When choosing a specific item, the default pickup library should be dictated by the default hold policy
226         if ( ! C4::Context->preference("OPACAllowUserToChooseBranch") && $item ) {
227             my $type = $item->effective_itemtype;
228             my $rule = GetBranchItemRule( $patron->branchcode, $type );
229
230             if ( $rule->{hold_fulfillment_policy} eq 'any' || $rule->{hold_fulfillment_policy} eq 'patrongroup' ) {
231                 $branch = $patron->branchcode;
232             } elsif ( $rule->{hold_fulfillment_policy} eq 'holdgroup' ){
233                 $branch = $item->homebranch;
234             } else {
235                 my $policy = $rule->{hold_fulfillment_policy};
236                 $branch = $item->$policy;
237             }
238         }
239
240 #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
241         if ( $item ) {
242             my $hostbiblioNum = $item->biblio->biblionumber;
243             if ( $hostbiblioNum ne $biblioNum ) {
244                 $biblioNum = $hostbiblioNum;
245             }
246         }
247
248         my $biblioData = $biblioDataHash{$biblioNum};
249         my $found;
250
251         # Check for user supplied reserve date
252         my $startdate;
253         if (   C4::Context->preference('AllowHoldDateInFuture')
254             && C4::Context->preference('OPACAllowHoldDateInFuture') )
255         {
256             $startdate = $query->param("reserve_date_$biblioNum");
257         }
258
259         my $patron_expiration_date = $query->param("expiration_date_$biblioNum");
260
261         my $itemtype = $query->param('itemtype') || undef;
262         $itemtype = undef if $itemNum;
263
264         my $rank = $biblioData->{rank};
265         if ( $item ) {
266             $canreserve = 1 if CanItemBeReserved( $patron, $item, $branch )->{status} eq 'OK';
267         }
268         else {
269             $canreserve = 1
270               if CanBookBeReserved( $borrowernumber, $biblioNum, $branch, { itemtype => $itemtype } )->{status} eq 'OK';
271
272             # Inserts a null into the 'itemnumber' field of 'reserves' table.
273             $itemNum = undef;
274         }
275         my $notes = $query->param('notes_'.$biblioNum)||'';
276
277         if (   $maxreserves
278             && $reserve_cnt >= $maxreserves )
279         {
280             $canreserve = 0;
281         }
282
283         unless ( $can_place_hold_if_available_at_pickup ) {
284             my $items_in_this_library = Koha::Items->search({ biblionumber => $biblioNum, holdingbranch => $branch });
285             my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
286             my $nb_of_items_unavailable = $items_in_this_library->search({ -or => { lost => { '!=' => 0 }, damaged => { '!=' => 0 }, } });
287             if ( $items_in_this_library->count > $nb_of_items_issued + $nb_of_items_unavailable ) {
288                 $canreserve = 0
289             }
290         }
291
292         # Here we actually do the reserveration. Stage 3.
293         if ($canreserve) {
294             my $reserve_id = AddReserve(
295                 {
296                     branchcode       => $branch,
297                     borrowernumber   => $borrowernumber,
298                     biblionumber     => $biblioNum,
299                     priority         => $rank,
300                     reservation_date => $startdate,
301                     expiration_date  => $patron_expiration_date,
302                     notes            => $notes,
303                     title            => $biblioData->{title},
304                     itemnumber       => $itemNum,
305                     found            => $found,
306                     itemtype         => $itemtype,
307                 }
308             );
309             $failed_holds++ unless $reserve_id;
310             ++$reserve_cnt;
311         }
312     }
313
314     print $query->redirect("/cgi-bin/koha/opac-user.pl?" . ( $failed_holds ? "failed_holds=$failed_holds" : q|| ) . "#opac-user-holds");
315     exit;
316 }
317
318 #
319 #
320 # Here we check that the borrower can actually make reserves Stage 1.
321 #
322 #
323 my $noreserves     = 0;
324 my $maxoutstanding = C4::Context->preference("maxoutstanding");
325 my $amountoutstanding = $patron->account->balance;
326 if ( $amountoutstanding && ($amountoutstanding > $maxoutstanding) ) {
327     my $amount = sprintf "%.02f", $amountoutstanding;
328     $template->param( message => 1 );
329     $noreserves = 1;
330     $template->param( too_much_oweing => $amount );
331 }
332
333 if ( $patron->gonenoaddress && ($patron->gonenoaddress == 1) ) {
334     $noreserves = 1;
335     $template->param(
336         message => 1,
337         GNA     => 1
338     );
339 }
340
341 if ( $patron->lost && ($patron->lost == 1) ) {
342     $noreserves = 1;
343     $template->param(
344         message => 1,
345         lost    => 1
346     );
347 }
348
349 if ( $patron->is_debarred ) {
350     $noreserves = 1;
351     $template->param(
352         message          => 1,
353         debarred         => 1,
354         debarred_comment => $patron->debarredcomment,
355         debarred_date    => $patron->debarred,
356     );
357 }
358
359 my $holds = $patron->holds;
360 my $reserves_count = $holds->count;
361 $template->param( RESERVES => $holds->unblessed );
362 if ( $maxreserves && ( $reserves_count >= $maxreserves ) ) {
363     $template->param( message => 1 );
364     $noreserves = 1;
365     $template->param( too_many_reserves => $holds->count );
366 }
367
368 unless ( $noreserves ) {
369     my $requested_reserves_count = scalar( @biblionumbers );
370     if ( $maxreserves && ( $reserves_count + $requested_reserves_count > $maxreserves ) ) {
371         $template->param( new_reserves_allowed => $maxreserves - $reserves_count );
372     }
373 }
374
375 unless ($noreserves) {
376     $template->param( select_item_types => 1 );
377 }
378
379
380 #
381 #
382 # Build the template parameters that will show the info
383 # and items for each biblionumber.
384 #
385 #
386
387 my $biblioLoop = [];
388 my $numBibsAvailable = 0;
389 my $itemdata_enumchron = 0;
390 my $itemdata_ccode = 0;
391 my $anyholdable = 0;
392 my $itemLevelTypes = C4::Context->preference('item-level_itypes');
393 my $pickup_locations = Koha::Libraries->search({ pickup_location => 1 });
394 $template->param('item_level_itypes' => $itemLevelTypes);
395
396 my $patron_unblessed = $patron->unblessed;
397 foreach my $biblioNum (@biblionumbers) {
398
399     # Init the bib item with the choices for branch pickup
400     my %biblioLoopIter;
401
402     # Get relevant biblio data.
403     my $biblioData = $biblioDataHash{$biblioNum};
404     if (! $biblioData) {
405         $template->param(message=>1, bad_biblionumber=>$biblioNum);
406         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
407         exit;
408     }
409
410     my @not_available_at = ();
411     my $biblio = $biblioData->{object};
412     foreach my $library ( $pickup_locations->as_list ) {
413         push( @not_available_at, $library->branchcode ) unless $biblio->can_be_transferred({ to => $library });
414     }
415
416     my $frameworkcode = GetFrameworkCode( $biblioData->{biblionumber} );
417     $biblioLoopIter{biblionumber} = $biblioData->{biblionumber};
418     $biblioLoopIter{title} = $biblioData->{title};
419     $biblioLoopIter{subtitle} = $biblioData->{'subtitle'};
420     $biblioLoopIter{medium} = $biblioData->{medium};
421     $biblioLoopIter{part_number} = $biblioData->{part_number};
422     $biblioLoopIter{part_name} = $biblioData->{part_name};
423     $biblioLoopIter{author} = $biblioData->{author};
424     $biblioLoopIter{rank} = $biblioData->{rank};
425     $biblioLoopIter{reservecount} = $biblioData->{reservecount};
426     $biblioLoopIter{already_reserved} = $biblioData->{already_reserved};
427     $biblioLoopIter{reqholdnotes}=0; #TODO: For future use
428
429     if (!$itemLevelTypes && $biblioData->{itemtype}) {
430         $biblioLoopIter{translated_description} = $itemtypes->{$biblioData->{itemtype}}{translated_description};
431         $biblioLoopIter{imageurl} = getitemtypeimagesrc() . "/". $itemtypes->{$biblioData->{itemtype}}{imageurl};
432     }
433
434
435
436     $biblioLoopIter{itemLoop} = [];
437     my $numCopiesAvailable = 0;
438     my $numCopiesOPACAvailable = 0;
439     # iterating through all items first to check if any of them available
440     # to pass this value further inside down to IsAvailableForItemLevelRequest to
441     # it's complicated logic to analyse.
442     # (before this loop was inside that sub loop so it was O(n^2) )
443     my $items_any_available;
444     $items_any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $biblioNum, patron => $patron }) if $patron;
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         # items_any_available defined outside of the current loop,
484         # so we avoiding loop inside IsAvailableForItemLevelRequest:
485         my $policy_holdallowed =
486             CanItemBeReserved( $patron, $item )->{status} eq 'OK' &&
487             IsAvailableForItemLevelRequest($item, $patron, undef, $items_any_available);
488
489         if ($policy_holdallowed) {
490             my $opac_hold_policy = Koha::CirculationRules->get_opacitemholds_policy( { item => $item, patron => $patron } );
491             if ( $opac_hold_policy ne 'N' ) { # If Y or F
492                 $item_info->{available} = 1;
493                 $numCopiesOPACAvailable++;
494                 $biblioLoopIter{force_hold} = 1 if $opac_hold_policy eq 'F';
495             }
496             $numCopiesAvailable++;
497
498             unless ( $can_place_hold_if_available_at_pickup ) {
499                 my $items_in_this_library = Koha::Items->search({ biblionumber => $item->biblionumber, holdingbranch => $item->holdingbranch });
500                 my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
501                 if ( $items_in_this_library->count > $nb_of_items_issued ) {
502                     push @not_available_at, $item->holdingbranch;
503                 }
504             }
505         }
506
507         # Show serial enumeration when needed
508         if ($item_info->{enumchron}) {
509             $itemdata_enumchron = 1;
510         }
511         # Show collection when needed
512         if ($item_info->{ccode}) {
513             $itemdata_ccode = 1;
514         }
515
516         push @{$biblioLoopIter{itemLoop}}, $item_info;
517     }
518     $template->param(
519         itemdata_enumchron => $itemdata_enumchron,
520         itemdata_ccode     => $itemdata_ccode,
521     );
522
523     if ($numCopiesAvailable > 0) {
524         $numBibsAvailable++;
525         $biblioLoopIter{bib_available} = 1;
526         $biblioLoopIter{holdable} = 1;
527         $biblioLoopIter{itemholdable} = 1 if $numCopiesOPACAvailable;
528     }
529     if ($biblioLoopIter{already_reserved}) {
530         $biblioLoopIter{holdable} = undef;
531         $biblioLoopIter{itemholdable} = undef;
532     }
533     if ( $biblioLoopIter{holdable} ) {
534         @not_available_at = uniq @not_available_at;
535         $biblioLoopIter{not_available_at} = \@not_available_at ;
536     }
537
538     unless ( $can_place_hold_if_available_at_pickup ) {
539         @not_available_at = uniq @not_available_at;
540         $biblioLoopIter{not_available_at} = \@not_available_at ;
541         # The record is not holdable is not available at any of the libraries
542         if ( Koha::Libraries->search->count == @not_available_at ) {
543             $biblioLoopIter{holdable} = 0;
544         }
545     }
546
547     my $status = CanBookBeReserved( $borrowernumber, $biblioNum )->{status};
548     $biblioLoopIter{holdable} &&= $status eq 'OK';
549     $biblioLoopIter{$status} = 1;
550
551     if ( $biblioLoopIter{holdable} and C4::Context->preference('AllowHoldItemTypeSelection') ) {
552         # build the allowed item types loop
553         my $rs = $biblio->items->search_ordered(
554             undef,
555             {   select => [ { distinct => 'itype' } ],
556                 as     => 'item_type'
557             }
558         );
559
560         my @item_types =
561           grep { CanBookBeReserved( $borrowernumber, $biblioNum, $branch, { itemtype => $_ } )->{status} eq 'OK' }
562           $rs->get_column('item_type');
563
564         $biblioLoopIter{allowed_item_types} = \@item_types;
565     }
566
567     if ( $status eq 'recall' ) {
568         $biblioLoopIter{recall} = 1;
569     }
570
571     # For multiple holds per record, if a patron has previously placed a hold,
572     # the patron can only place more holds of the same type. That is, if the
573     # patron placed a record level hold, all the holds the patron places must
574     # be record level. If the patron placed an item level hold, all holds
575     # the patron places must be item level
576     my $forced_hold_level = Koha::Holds->search(
577         {
578             borrowernumber => $borrowernumber,
579             biblionumber   => $biblioNum,
580             found          => undef,
581         }
582     )->forced_hold_level();
583     if ($forced_hold_level) {
584         $biblioLoopIter{force_hold}   = 1 if $forced_hold_level eq 'item';
585         $biblioLoopIter{itemholdable} = 0 if $forced_hold_level eq 'record';
586         $biblioLoopIter{forced_hold_level} = $forced_hold_level;
587     }
588
589
590     push @$biblioLoop, \%biblioLoopIter;
591
592     $anyholdable = 1 if $biblioLoopIter{holdable};
593 }
594
595 unless ($pickup_locations->count) {
596     $numBibsAvailable = 0;
597     $anyholdable = 0;
598     $template->param(
599         message => 1,
600         no_pickup_locations => 1
601     );
602 }
603
604 if ( $numBibsAvailable == 0 || $anyholdable == 0) {
605     $template->param( none_available => 1 );
606 }
607
608 if (scalar @biblionumbers > 1) {
609     $template->param( multi_hold => 1);
610 }
611
612 my $show_notes=C4::Context->preference('OpacHoldNotes');
613 $template->param(OpacHoldNotes=>$show_notes);
614
615 # display infos
616 $template->param(bibitemloop => $biblioLoop);
617 # can set reserve date in future
618 if (
619     C4::Context->preference( 'AllowHoldDateInFuture' ) &&
620     C4::Context->preference( 'OPACAllowHoldDateInFuture' )
621     ) {
622     $template->param(
623             reserve_in_future         => 1,
624     );
625 }
626
627 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };