Bug 17600: Standardize our EXPORT_OK
[koha.git] / circ / circulation.pl
1 #!/usr/bin/perl
2
3 # script to execute issuing of books
4
5 # Copyright 2000-2002 Katipo Communications
6 # copyright 2010 BibLibre
7 # Copyright 2011 PTFS-Europe Ltd.
8 # Copyright 2012 software.coop and MJ Ray
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
16 #
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24
25 # FIXME There are too many calls to Koha::Patrons->find in this script
26
27 use Modern::Perl;
28 use CGI qw ( -utf8 );
29 use DateTime;
30 use DateTime::Duration;
31 use Scalar::Util qw( looks_like_number );
32 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
33 use C4::Auth qw( get_session get_template_and_user );
34 use C4::Koha;
35 use C4::Circulation qw( barcodedecode CanBookBeIssued AddIssue );
36 use C4::Utils::DataTables::Members;
37 use C4::Members;
38 use C4::Biblio qw( TransformMarcToKoha );
39 use C4::Search qw( new_record_from_zebra );
40 use C4::Reserves;
41 use Koha::Holds;
42 use C4::Context;
43 use CGI::Session;
44 use Koha::AuthorisedValues;
45 use Koha::CsvProfiles;
46 use Koha::Patrons;
47 use Koha::Patron::Debarments qw( GetDebarments );
48 use Koha::DateUtils qw( dt_from_string output_pref );
49 use Koha::Database;
50 use Koha::BiblioFrameworks;
51 use Koha::Items;
52 use Koha::Patron::Messages;
53 use Koha::SearchEngine;
54 use Koha::SearchEngine::Search;
55 use Koha::Patron::Modifications;
56
57 use List::MoreUtils qw( uniq );
58
59 #
60 # PARAMETERS READING
61 #
62 my $query = CGI->new;
63
64 my $override_high_holds     = $query->param('override_high_holds');
65 my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
66
67 my $sessionID = $query->cookie("CGISESSID") ;
68 my $session = get_session($sessionID);
69
70 my $barcodes = [];
71 my $barcode =  $query->param('barcode');
72 my $findborrower;
73 my $autoswitched;
74 my $borrowernumber = $query->param('borrowernumber');
75
76 if (C4::Context->preference("AutoSwitchPatron") && $barcode) {
77     if (Koha::Patrons->search( { cardnumber => $barcode} )->count() > 0) {
78         $findborrower = $barcode;
79         undef $barcode;
80         undef $borrowernumber;
81         $autoswitched = 1;
82     }
83 }
84 $findborrower ||= $query->param('findborrower') || q{};
85 $findborrower =~ s|,| |g;
86
87 # Barcode given by user could be '0'
88 if ( $barcode || ( defined($barcode) && $barcode eq '0' ) ) {
89     $barcodes = [ $barcode ];
90 } else {
91     my $filefh = $query->upload('uploadfile');
92     if ( $filefh ) {
93         while ( my $content = <$filefh> ) {
94             $content =~ s/[\r\n]*$//g;
95             push @$barcodes, $content if $content;
96         }
97     } elsif ( my $list = $query->param('barcodelist') ) {
98         push @$barcodes, split( /\s\n/, $list );
99         $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
100     } else {
101         @$barcodes = $query->multi_param('barcodes');
102     }
103 }
104
105 $barcodes = [ uniq @$barcodes ];
106
107 my $template_name = q|circ/circulation.tt|;
108 my $patron = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : undef;
109 my $batch = $query->param('batch');
110 my $batch_allowed = 0;
111 if ( $batch && C4::Context->preference('BatchCheckouts') ) {
112     $template_name = q|circ/circulation_batch_checkouts.tt|;
113     my @batch_category_codes = split ',', C4::Context->preference('BatchCheckoutsValidCategories');
114     my $categorycode = $patron->categorycode;
115     if ( $categorycode && grep { $_ eq $categorycode } @batch_category_codes ) {
116         $batch_allowed = 1;
117     } else {
118         $barcodes = [];
119     }
120 }
121
122 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
123     {
124         template_name   => $template_name,
125         query           => $query,
126         type            => "intranet",
127         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
128     }
129 );
130 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
131
132 my $force_allow_issue = $query->param('forceallow') || 0;
133 if (!C4::Auth::haspermission( C4::Context->userenv->{id} , { circulate => 'force_checkout' } )) {
134     $force_allow_issue = 0;
135 }
136 my $onsite_checkout = $query->param('onsite_checkout');
137
138 if (C4::Context->preference("OnSiteCheckoutAutoCheck") && $onsite_checkout eq "on") {
139     $template->param(onsite_checkout => $onsite_checkout);
140 }
141
142 my @failedrenews = $query->multi_param('failedrenew');    # expected to be itemnumbers
143 our %renew_failed = ();
144 for (@failedrenews) { $renew_failed{$_} = 1; }
145
146 my @failedreturns = $query->multi_param('failedreturn');
147 our %return_failed = ();
148 for (@failedreturns) { $return_failed{$_} = 1; }
149
150 my $searchtype = $query->param('searchtype') || q{contain};
151
152 my $branch = C4::Context->userenv->{'branch'};
153
154 if (C4::Context->preference("DisplayClearScreenButton")) {
155     $template->param(DisplayClearScreenButton => 1);
156 }
157
158 for my $barcode ( @$barcodes ) {
159     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
160     $barcode = barcodedecode($barcode)
161         if( $barcode && C4::Context->preference('itemBarcodeInputFilter'));
162 }
163
164 my $stickyduedate  = $query->param('stickyduedate') || $session->param('stickyduedate');
165 my $duedatespec    = $query->param('duedatespec')   || $session->param('stickyduedate');
166 $duedatespec = eval { output_pref( { dt => dt_from_string( $duedatespec ), dateformat => 'iso' }); }
167     if ( $duedatespec );
168 my $restoreduedatespec  = $query->param('restoreduedatespec') || $duedatespec || $session->param('stickyduedate');
169 if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) {
170     undef $restoreduedatespec;
171 }
172 my $issueconfirmed = $query->param('issueconfirmed');
173 my $cancelreserve  = $query->param('cancelreserve');
174 my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
175 my $charges        = $query->param('charges') || q{};
176
177 # Check if stickyduedate is turned off
178 if ( @$barcodes ) {
179     # was stickyduedate loaded from session?
180     if ( $stickyduedate && ! $query->param("stickyduedate") ) {
181         $session->clear( 'stickyduedate' );
182         $stickyduedate  = $query->param('stickyduedate');
183         $duedatespec    = $query->param('duedatespec');
184     }
185     $session->param('auto_renew', scalar $query->param('auto_renew'));
186 }
187 else {
188     $session->clear('auto_renew');
189 }
190
191 $template->param( auto_renew => $session->param('auto_renew') );
192
193 my ($datedue,$invalidduedate);
194
195 my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
196 if( $onsite_checkout && !$duedatespec_allow ) {
197     $datedue = output_pref({ dt => dt_from_string, dateonly => 1, dateformat => 'iso' });
198     $datedue .= ' 23:59:00';
199 } elsif( $duedatespec_allow ) {
200     if ( $duedatespec ) {
201         $datedue = eval { dt_from_string( $duedatespec ) };
202         if (! $datedue ) {
203             $invalidduedate = 1;
204             $template->param( IMPOSSIBLE=>1, INVALID_DATE=>$duedatespec );
205         }
206     }
207 }
208
209 my $inprocess = (@$barcodes == 0) ? '' : $query->param('inprocess');
210 if ( @$barcodes == 0 && $charges eq 'yes' ) {
211     $template->param(
212         PAYCHARGES     => 'yes',
213         borrowernumber => $borrowernumber
214     );
215 }
216
217 #
218 # STEP 2 : FIND BORROWER
219 # if there is a list of find borrowers....
220 #
221 my $message;
222 if ($findborrower) {
223     my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
224     if ( $patron ) {
225         $borrowernumber = $patron->borrowernumber;
226     } else {
227         my $dt_params = { iDisplayLength => -1 };
228         my $results = C4::Utils::DataTables::Members::search(
229             {
230                 searchmember => $findborrower,
231                 searchtype   => $searchtype,
232                 dt_params    => $dt_params,
233             }
234         );
235         my $borrowers = $results->{patrons};
236         if ( scalar @$borrowers == 1 ) {
237             $borrowernumber = $borrowers->[0]->{borrowernumber};
238             $query->param( 'borrowernumber', $borrowernumber );
239             $query->param( 'barcode',           '' );
240         } elsif ( @$borrowers ) {
241             $template->param( borrowers => $borrowers );
242         } else {
243             $query->param( 'findborrower', '' );
244             $message = "'$findborrower'";
245         }
246     }
247 }
248
249 # get the borrower information.....
250 my $balance = 0;
251 $patron ||= Koha::Patrons->find( $borrowernumber ) if $borrowernumber;
252 if ($patron) {
253
254     $template->param( borrowernumber => $patron->borrowernumber );
255     output_and_exit_if_error( $query, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
256
257     my $overdues = $patron->get_overdues;
258     my $issues = $patron->checkouts;
259     $balance = $patron->account->balance;
260
261
262     # if the expiry date is before today ie they have expired
263     if ( $patron->is_expired ) {
264         #borrowercard expired, no issues
265         $template->param(
266             noissues => ($force_allow_issue) ? 0 : "1",
267             forceallow => $force_allow_issue,
268             expired => "1",
269         );
270     }
271     # check for NotifyBorrowerDeparture
272     elsif ( $patron->is_going_to_expire ) {
273         # borrower card soon to expire warn librarian
274         $template->param( "warndeparture" => $patron->dateexpiry ,
275                         );
276         if (C4::Context->preference('ReturnBeforeExpiry')){
277             $template->param("returnbeforeexpiry" => 1);
278         }
279     }
280     $template->param(
281         overduecount => $overdues->count,
282         issuecount   => $issues->count,
283         finetotal    => $balance,
284     );
285
286     if ( $patron and $patron->is_debarred ) {
287         $template->param(
288             'userdebarred'    => $patron->debarred,
289             'debarredcomment' => $patron->debarredcomment,
290         );
291
292         if ( $patron->debarred ne "9999-12-31" ) {
293             $template->param( 'userdebarreddate' => $patron->debarred );
294         }
295     }
296
297     # Calculate and display patron's age
298     if ( !$patron->is_valid_age ) {
299         $template->param( age_limitations => 1 );
300         $template->param( age_low => $patron->category->dateofbirthrequired );
301         $template->param( age_high => $patron->category->upperagelimit );
302     }
303
304 }
305
306 #
307 # STEP 3 : ISSUING
308 #
309 #
310 if (@$barcodes) {
311   my $checkout_infos;
312   for my $barcode ( @$barcodes ) {
313
314     my $template_params = {
315         barcode         => $barcode,
316         onsite_checkout => $onsite_checkout,
317     };
318
319     # always check for blockers on issuing
320     my ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
321         $patron,
322         $barcode, $datedue,
323         $inprocess,
324         undef,
325         {
326             onsite_checkout     => $onsite_checkout,
327             override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
328         }
329     );
330
331     my $blocker = $invalidduedate ? 1 : 0;
332
333     $template_params->{alert} = $alerts;
334     $template_params->{messages} = $messages;
335
336     my $item = Koha::Items->find({ barcode => $barcode });
337
338     my $biblio;
339     if ( $item ) {
340         $biblio = $item->biblio;
341     }
342
343     # Fix for bug 7494: optional checkout-time fallback search for a book
344
345     if ( $error->{'UNKNOWN_BARCODE'}
346         && C4::Context->preference("itemBarcodeFallbackSearch")
347         && not $batch
348     )
349     {
350      $template_params->{FALLBACK} = 1;
351
352         my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
353         my $query = "kw=" . $barcode;
354         my ( $searcherror, $results, $total_hits ) = $searcher->simple_search_compat($query, 0, 10);
355
356         # if multiple hits, offer options to librarian
357         if ( $total_hits > 0 ) {
358             my @barcodes;
359             foreach my $hit ( @{$results} ) {
360                 my $chosen = # Maybe easier to retrieve the itemnumber from $hit?
361                   TransformMarcToKoha( C4::Search::new_record_from_zebra('biblioserver',$hit) );
362
363                 # offer all barcodes individually
364                 if ( $chosen->{barcode} ) {
365                     push @barcodes, sort split(/\s*\|\s*/, $chosen->{barcode});
366                 }
367             }
368             my $items = Koha::Items->search({ barcode => {-in => \@barcodes}});
369             $template_params->{options} = $items;
370         }
371     }
372
373     if ( $error->{DEBT_GUARANTORS} ) {
374         $template_params->{DEBT_GUARANTORS} = $error->{DEBT_GUARANTORS};
375         $template_params->{IMPOSSIBLE} = 1;
376         $blocker = 1;
377     }
378
379     if ( $error->{UNKNOWN_BARCODE} or not $onsite_checkout or not C4::Context->preference("OnSiteCheckoutsForce") ) {
380         delete $question->{'DEBT'} if ($debt_confirmed);
381         foreach my $impossible ( keys %$error ) {
382             $template_params->{$impossible} = $$error{$impossible};
383             $template_params->{IMPOSSIBLE} = 1;
384             $blocker = 1;
385         }
386     }
387
388     if( $item and ( !$blocker or $force_allow_issue ) ){
389         my $confirm_required = 0;
390         unless($issueconfirmed){
391             #  Get the item title for more information
392             my $materials = $item->materials;
393             my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.materials', authorised_value => $materials });
394             $materials = $descriptions->{lib} // $materials;
395             $template_params->{ADDITIONAL_MATERIALS} = $materials;
396             $template_params->{itemhomebranch} = $item->homebranch;
397
398             # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
399             foreach my $needsconfirmation ( keys %$question ) {
400                 $template_params->{$needsconfirmation} = $$question{$needsconfirmation};
401                 $template_params->{getTitleMessageIteminfo} = $biblio->title;
402                 $template_params->{getBarcodeMessageIteminfo} = $item->barcode;
403                 $template_params->{NEEDSCONFIRMATION} = 1;
404                 $confirm_required = 1;
405             }
406         }
407         unless($confirm_required) {
408             my $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED};
409             my $issue = AddIssue( $patron->unblessed, $barcode, $datedue, $cancelreserve, undef, undef, { onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew'), switch_onsite_checkout => $switch_onsite_checkout, } );
410             $template_params->{issue} = $issue;
411             $session->clear('auto_renew');
412             $inprocess = 1;
413         }
414     }
415
416     if ($question->{RESERVE_WAITING} or $question->{RESERVED} or $question->{TRANSFERRED} or $question->{PROCESSING}){
417         $template->param(
418             reserveborrowernumber => $question->{'resborrowernumber'},
419             reserve_id => $question->{reserve_id},
420         );
421     }
422
423
424     # FIXME If the issue is confirmed, we launch another time checkouts->count, now display the issue count after issue
425     $patron = Koha::Patrons->find( $borrowernumber );
426     $template_params->{issuecount} = $patron->checkouts->count;
427
428     if ( $item ) {
429         $template_params->{item} = $item;
430         $template_params->{biblio} = $biblio;
431         $template_params->{itembiblionumber} = $biblio->biblionumber;
432     }
433     push @$checkout_infos, $template_params;
434   }
435   unless ( $batch ) {
436     $template->param( %{$checkout_infos->[0]} );
437     $template->param( barcode => $barcodes->[0] );
438   } else {
439     my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
440     $template->param(
441         checkout_infos => $checkout_infos,
442         confirmation_needed => $confirmation_needed,
443     );
444   }
445 }
446
447 ##################################################################################
448 # BUILD HTML
449 # show all reserves of this borrower, and the position of the reservation ....
450 if ($patron) {
451     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } ); # FIXME must be Koha::Patron->holds
452     my $waiting_holds = $holds->waiting;
453     $template->param(
454         holds_count  => $holds->count(),
455         WaitingHolds => $waiting_holds,
456     );
457 }
458
459 if ( $patron ) {
460     my $noissues;
461     if ( $patron->gonenoaddress ) {
462         $template->param( gonenoaddress => 1 );
463         $noissues = 1;
464     }
465     if ( $patron->lost ) {
466         $template->param( lost=> 1 );
467         $noissues = 1;
468     }
469     if ( $patron->is_debarred ) {
470         $template->param( is_debarred=> 1 );
471         $noissues = 1;
472     }
473     my $account = $patron->account;
474     if( ( my $owing = $account->non_issues_charges ) > 0 ) {
475         my $noissuescharge = C4::Context->preference("noissuescharge") || 5; # FIXME If noissuescharge == 0 then 5, why??
476         $noissues ||= ( not C4::Context->preference("AllowFineOverride") and ( $owing > $noissuescharge ) );
477         $template->param(
478             charges => 1,
479             chargesamount => $owing,
480         )
481     } elsif ( $balance < 0 ) {
482         $template->param(
483             credits => 1,
484             creditsamount => -$balance,
485         );
486     }
487
488     # Check the debt of this patrons guarantors *and* the guarantees of those guarantors
489     my $no_issues_charge_guarantors = C4::Context->preference("NoIssuesChargeGuarantorsWithGuarantees");
490     if ( $no_issues_charge_guarantors ) {
491         my $guarantors_non_issues_charges += $patron->relationships_debt({ include_guarantors => 1, only_this_guarantor => 0, include_this_patron => 1 });
492
493         if ( $guarantors_non_issues_charges > $no_issues_charge_guarantors ) {
494             $template->param(
495                 charges_guarantors_guarantees => $guarantors_non_issues_charges
496             );
497             $noissues = 1 unless C4::Context->preference("allowfineoverride");
498         }
499     }
500
501     my $no_issues_charge_guarantees = C4::Context->preference("NoIssuesChargeGuarantees");
502     $no_issues_charge_guarantees = undef unless looks_like_number( $no_issues_charge_guarantees );
503     if ( defined $no_issues_charge_guarantees ) {
504         my $guarantees_non_issues_charges = 0;
505         my $guarantees = $patron->guarantee_relationships->guarantees;
506         while ( my $g = $guarantees->next ) {
507             $guarantees_non_issues_charges += $g->account->non_issues_charges;
508         }
509         if ( $guarantees_non_issues_charges > $no_issues_charge_guarantees ) {
510             $template->param(
511                 charges_guarantees    => 1,
512                 chargesamount_guarantees => $guarantees_non_issues_charges,
513             );
514             $noissues = 1 unless C4::Context->preference("allowfineoverride");
515         }
516     }
517
518     if ( $patron->has_overdues ) {
519         $template->param( odues => 1 );
520     }
521
522     if ( $patron->borrowernotes ) {
523         my $borrowernotes = $patron->borrowernotes;
524         $borrowernotes =~ s#\n#<br />#g;
525         $template->param(
526             notes =>1,
527             notesmsg => $borrowernotes,
528         )
529     }
530
531     if ( $noissues ) {
532         $template->param(
533             noissues => ($force_allow_issue) ? 0 : 'true',
534             forceallow => $force_allow_issue,
535         );
536     }
537 }
538
539 my $patron_messages = Koha::Patron::Messages->search(
540     {
541         'me.borrowernumber' => $borrowernumber,
542     },
543     {
544        join => 'manager',
545        '+select' => ['manager.surname', 'manager.firstname' ],
546        '+as' => ['manager_surname', 'manager_firstname'],
547     }
548 );
549
550 my $fast_cataloging = 0;
551 if ( Koha::BiblioFrameworks->find('FA') ) {
552     $fast_cataloging = 1 
553 }
554
555 my $view = $batch
556     ?'batch_checkout_view'
557     : 'circview';
558
559 my @relatives;
560 if ( $patron ) {
561     if ( my @guarantors = $patron->guarantor_relationships()->guarantors() ) {
562         push( @relatives, $_->id ) for @guarantors;
563         push( @relatives, $_->id ) for $patron->siblings();
564     } else {
565         push( @relatives, $_->id ) for $patron->guarantee_relationships()->guarantees();
566     }
567 }
568 my $relatives_issues_count =
569   Koha::Database->new()->schema()->resultset('Issue')
570   ->count( { borrowernumber => \@relatives } );
571
572 if ( $patron ) {
573     my $av = Koha::AuthorisedValues->search({ category => 'ROADTYPE', authorised_value => $patron->streettype });
574     my $roadtype = $av->count ? $av->next->lib : '';
575     $template->param(
576         roadtype          => $roadtype,
577         patron            => $patron,
578         categoryname      => $patron->category->description,
579         expiry            => $patron->dateexpiry,
580     );
581 }
582
583 # Restore date if changed by holds and/or save stickyduedate to session
584 if ($restoreduedatespec || $stickyduedate) {
585     $duedatespec = $restoreduedatespec || $duedatespec;
586
587     if ($stickyduedate) {
588         $session->param( 'stickyduedate', $duedatespec );
589     }
590 } elsif (defined($duedatespec) && !defined($restoreduedatespec)) {
591     undef $duedatespec;
592 }
593
594 $template->param(
595     patron_messages           => $patron_messages,
596     borrowernumber    => $borrowernumber,
597     branch            => $branch,
598     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
599     barcodes          => $barcodes,
600     stickyduedate     => $stickyduedate,
601     duedatespec       => $duedatespec,
602     restoreduedatespec => $restoreduedatespec,
603     message           => $message,
604     totaldue          => sprintf('%.2f', $balance), # FIXME not used in template?
605     inprocess         => $inprocess,
606     $view             => 1,
607     batch_allowed     => $batch_allowed,
608     batch             => $batch,
609     AudioAlerts           => C4::Context->preference("AudioAlerts"),
610     fast_cataloging   => $fast_cataloging,
611     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
612     RoutingSerials => C4::Context->preference('RoutingSerials'),
613     relatives_issues_count => $relatives_issues_count,
614     relatives_borrowernumbers => \@relatives,
615 );
616
617
618 if ( C4::Context->preference("ExportCircHistory") ) {
619     $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
620 }
621
622 my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
623 $template->param(
624     debt_confirmed            => $debt_confirmed,
625     SpecifyDueDate            => $duedatespec_allow,
626     PatronAutoComplete      => C4::Context->preference("PatronAutoComplete"),
627     debarments                => scalar GetDebarments({ borrowernumber => $borrowernumber }),
628     todaysdate                => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
629     has_modifications         => $has_modifications,
630     override_high_holds       => $override_high_holds,
631     nopermission              => scalar $query->param('nopermission'),
632     autoswitched              => $autoswitched,
633     logged_in_user            => $logged_in_user,
634 );
635
636 output_html_with_http_headers $query, $cookie, $template->output;