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