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