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