Bug 19997: use Modern::Perl in Circulation perl scripts
[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 C4::Output;
32 use C4::Print;
33 use C4::Auth qw/:DEFAULT get_session haspermission/;
34 use C4::Koha;   # GetPrinter
35 use C4::Circulation;
36 use C4::Utils::DataTables::Members;
37 use C4::Members;
38 use C4::Biblio;
39 use C4::Search;
40 use MARC::Record;
41 use C4::Reserves;
42 use Koha::Holds;
43 use C4::Context;
44 use CGI::Session;
45 use C4::Members::Attributes qw(GetBorrowerAttributes);
46 use Koha::AuthorisedValues;
47 use Koha::CsvProfiles;
48 use Koha::Patrons;
49 use Koha::Patron::Debarments qw(GetDebarments);
50 use Koha::DateUtils;
51 use Koha::Database;
52 use Koha::BiblioFrameworks;
53 use Koha::Items;
54 use Koha::Patron::Messages;
55 use Koha::SearchEngine;
56 use Koha::SearchEngine::Search;
57 use Koha::Patron::Modifications;
58
59 use Date::Calc qw(
60   Today
61   Add_Delta_Days
62   Date_to_Days
63 );
64 use List::MoreUtils qw/uniq/;
65
66 #
67 # PARAMETERS READING
68 #
69 my $query = new CGI;
70
71 my $override_high_holds     = $query->param('override_high_holds');
72 my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
73
74 my $sessionID = $query->cookie("CGISESSID") ;
75 my $session = get_session($sessionID);
76 if (!C4::Context->userenv){
77     if ($session->param('branch') eq 'NO_LIBRARY_SET'){
78         # no branch set we can't issue
79         print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
80         exit;
81     }
82 }
83
84 my $barcodes = [];
85 my $barcode =  $query->param('barcode');
86 # Barcode given by user could be '0'
87 if ( $barcode || ( defined($barcode) && $barcode eq '0' ) ) {
88     $barcodes = [ $barcode ];
89 } else {
90     my $filefh = $query->upload('uploadfile');
91     if ( $filefh ) {
92         while ( my $content = <$filefh> ) {
93             $content =~ s/[\r\n]*$//g;
94             push @$barcodes, $content if $content;
95         }
96     } elsif ( my $list = $query->param('barcodelist') ) {
97         push @$barcodes, split( /\s\n/, $list );
98         $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
99     } else {
100         @$barcodes = $query->multi_param('barcodes');
101     }
102 }
103
104 $barcodes = [ uniq @$barcodes ];
105
106 my $template_name = q|circ/circulation.tt|;
107 my $borrowernumber = $query->param('borrowernumber');
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 {/^$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         authnotrequired => 0,
128         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
129     }
130 );
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
137 my $onsite_checkout = $query->param('onsite_checkout');
138
139 my @failedrenews = $query->multi_param('failedrenew');    # expected to be itemnumbers
140 our %renew_failed = ();
141 for (@failedrenews) { $renew_failed{$_} = 1; }
142
143 my @failedreturns = $query->multi_param('failedreturn');
144 our %return_failed = ();
145 for (@failedreturns) { $return_failed{$_} = 1; }
146
147 my $searchtype = $query->param('searchtype') || q{contain};
148
149 my $findborrower = $query->param('findborrower') || q{};
150 $findborrower =~ s|,| |g;
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', timeformat => '24hr' }); }
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 $print          = $query->param('print') || q{};
175 my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
176 my $charges        = $query->param('charges') || q{};
177
178 # Check if stickyduedate is turned off
179 if ( @$barcodes ) {
180     # was stickyduedate loaded from session?
181     if ( $stickyduedate && ! $query->param("stickyduedate") ) {
182         $session->clear( 'stickyduedate' );
183         $stickyduedate  = $query->param('stickyduedate');
184         $duedatespec    = $query->param('duedatespec');
185     }
186     $session->param('auto_renew', scalar $query->param('auto_renew'));
187 }
188 else {
189     $session->clear('auto_renew');
190 }
191
192 my ($datedue,$invalidduedate);
193
194 my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
195 if( $onsite_checkout && !$duedatespec_allow ) {
196     $datedue = output_pref({ dt => dt_from_string, dateonly => 1, dateformat => 'iso' });
197     $datedue .= ' 23:59:00';
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 # check and see if we should print
209 if ( @$barcodes == 0 && $print eq 'maybe' ) {
210     $print = 'yes';
211 }
212
213 my $inprocess = (@$barcodes == 0) ? '' : $query->param('inprocess');
214 if ( @$barcodes == 0 && $charges eq 'yes' ) {
215     $template->param(
216         PAYCHARGES     => 'yes',
217         borrowernumber => $borrowernumber
218     );
219 }
220
221 if ( $print eq 'yes' && $borrowernumber ne '' ) {
222     if ( C4::Context->boolean_preference('printcirculationslips') ) {
223         my $letter = IssueSlip($branch, $borrowernumber, "QUICK");
224         NetworkPrint($letter->{content});
225     }
226     $query->param( 'borrowernumber', '' );
227     $borrowernumber = '';
228 }
229
230 #
231 # STEP 2 : FIND BORROWER
232 # if there is a list of find borrowers....
233 #
234 my $message;
235 if ($findborrower) {
236     my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
237     if ( $patron ) {
238         $borrowernumber = $patron->borrowernumber;
239     } else {
240         my $dt_params = { iDisplayLength => -1 };
241         my $results = C4::Utils::DataTables::Members::search(
242             {
243                 searchmember => $findborrower,
244                 searchtype   => $searchtype,
245                 dt_params    => $dt_params,
246             }
247         );
248         my $borrowers = $results->{patrons};
249         if ( scalar @$borrowers == 1 ) {
250             $borrowernumber = $borrowers->[0]->{borrowernumber};
251             $query->param( 'borrowernumber', $borrowernumber );
252             $query->param( 'barcode',           '' );
253         } elsif ( @$borrowers ) {
254             $template->param( borrowers => $borrowers );
255         } else {
256             $query->param( 'findborrower', '' );
257             $message = "'$findborrower'";
258         }
259     }
260 }
261
262 # get the borrower information.....
263 $patron ||= Koha::Patrons->find( $borrowernumber ) if $borrowernumber;
264 if ($patron) {
265     my $overdues = $patron->get_overdues;
266     my $issues = $patron->checkouts;
267     my $balance = $patron->account->balance;
268
269
270     # if the expiry date is before today ie they have expired
271     if ( $patron->is_expired ) {
272         #borrowercard expired, no issues
273         $template->param(
274             noissues => ($force_allow_issue) ? 0 : "1",
275             forceallow => $force_allow_issue,
276             expired => "1",
277         );
278     }
279     # check for NotifyBorrowerDeparture
280     elsif ( $patron->is_going_to_expire ) {
281         # borrower card soon to expire warn librarian
282         $template->param( "warndeparture" => $patron->dateexpiry ,
283                         );
284         if (C4::Context->preference('ReturnBeforeExpiry')){
285             $template->param("returnbeforeexpiry" => 1);
286         }
287     }
288     $template->param(
289         overduecount => $overdues->count,
290         issuecount   => $issues->count,
291         finetotal    => $balance,
292     );
293
294     if ( $patron and $patron->is_debarred ) {
295         $template->param(
296             'userdebarred'    => $patron->debarred,
297             'debarredcomment' => $patron->debarredcomment,
298         );
299
300         if ( $patron->debarred ne "9999-12-31" ) {
301             $template->param( 'userdebarreddate' => $patron->debarred );
302         }
303     }
304
305 }
306
307 #
308 # STEP 3 : ISSUING
309 #
310 #
311 if (@$barcodes) {
312   my $checkout_infos;
313   for my $barcode ( @$barcodes ) {
314     my $template_params = { barcode => $barcode };
315     # always check for blockers on issuing
316     my ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
317         $patron,
318         $barcode, $datedue,
319         $inprocess,
320         undef,
321         {
322             onsite_checkout     => $onsite_checkout,
323             override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
324         }
325     );
326
327     my $blocker = $invalidduedate ? 1 : 0;
328
329     $template_params->{alert} = $alerts;
330     $template_params->{messages} = $messages;
331
332     my $item = Koha::Items->find({ barcode => $barcode });
333     my ( $biblio, $mss );
334
335     if ( $item ) {
336         $biblio = $item->biblio;
337         my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.notforloan', authorised_value => { not => undef } });
338         $template_params->{authvalcode_notforloan} = $mss->count ? $mss->next->authorised_value : undef;
339     }
340
341     # Fix for bug 7494: optional checkout-time fallback search for a book
342
343     if ( $error->{'UNKNOWN_BARCODE'}
344         && C4::Context->preference("itemBarcodeFallbackSearch")
345         && not $batch
346     )
347     {
348      $template_params->{FALLBACK} = 1;
349
350         my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
351         my $query = "kw=" . $barcode;
352         my ( $searcherror, $results, $total_hits ) = $searcher->simple_search_compat($query, 0, 10);
353
354         # if multiple hits, offer options to librarian
355         if ( $total_hits > 0 ) {
356             my @options = ();
357             foreach my $hit ( @{$results} ) {
358                 my $chosen =
359                   TransformMarcToKoha( C4::Search::new_record_from_zebra('biblioserver',$hit) );
360
361                 # offer all barcodes individually
362                 if ( $chosen->{barcode} ) {
363                     foreach my $barcode ( sort split(/\s*\|\s*/, $chosen->{barcode}) ) {
364                         my %chosen_single = %{$chosen};
365                         $chosen_single{barcode} = $barcode;
366                         push( @options, \%chosen_single );
367                     }
368                 }
369             }
370             $template_params->{options} = \@options;
371         }
372     }
373
374     if ( $error->{UNKNOWN_BARCODE} or not $onsite_checkout or not C4::Context->preference("OnSiteCheckoutsForce") ) {
375         delete $question->{'DEBT'} if ($debt_confirmed);
376         foreach my $impossible ( keys %$error ) {
377             $template_params->{$impossible} = $$error{$impossible};
378             $template_params->{IMPOSSIBLE} = 1;
379             $blocker = 1;
380         }
381     }
382
383     if( $item and ( !$blocker or $force_allow_issue ) ){
384         my $confirm_required = 0;
385         unless($issueconfirmed){
386             #  Get the item title for more information
387             my $materials = $item->materials;
388             my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.materials', authorised_value => $materials });
389             $materials = $descriptions->{lib} // $materials;
390             $template_params->{additional_materials} = $materials;
391             $template_params->{itemhomebranch} = $item->homebranch;
392
393             # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
394             foreach my $needsconfirmation ( keys %$question ) {
395                 $template_params->{$needsconfirmation} = $$question{$needsconfirmation};
396                 $template_params->{getTitleMessageIteminfo} = $biblio->title;
397                 $template_params->{getBarcodeMessageIteminfo} = $item->barcode;
398                 $template_params->{NEEDSCONFIRMATION} = 1;
399                 $template_params->{onsite_checkout} = $onsite_checkout;
400                 $template_params->{auto_renew} = $session->param('auto_renew');
401                 $confirm_required = 1;
402             }
403         }
404         unless($confirm_required) {
405             my $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED};
406             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, } );
407             $template_params->{issue} = $issue;
408             $session->clear('auto_renew');
409             $inprocess = 1;
410         }
411     }
412
413     if ($question->{RESERVE_WAITING} or $question->{RESERVED}){
414         $template->param(
415             reserveborrowernumber => $question->{'resborrowernumber'}
416         );
417     }
418
419
420     # FIXME If the issue is confirmed, we launch another time checkouts->count, now display the issue count after issue
421     $patron = Koha::Patrons->find( $borrowernumber );
422     $template_params->{issuecount} = $patron->checkouts->count;
423
424     if ( $item ) {
425         $template_params->{item} = $item;
426         $template_params->{biblio} = $biblio;
427         $template_params->{itembiblionumber} = $biblio->biblionumber;
428     }
429     push @$checkout_infos, $template_params;
430   }
431   unless ( $batch ) {
432     $template->param( %{$checkout_infos->[0]} );
433     $template->param( barcode => $barcodes->[0] );
434   } else {
435     my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
436     $template->param(
437         checkout_infos => $checkout_infos,
438         confirmation_needed => $confirmation_needed,
439     );
440   }
441 }
442
443 ##################################################################################
444 # BUILD HTML
445 # show all reserves of this borrower, and the position of the reservation ....
446 if ($patron) {
447     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } ); # FIXME must be Koha::Patron->holds
448     my $waiting_holds = $holds->waiting;
449     $template->param(
450         holds_count  => $holds->count(),
451         WaitingHolds => $waiting_holds,
452     );
453
454     my $category_type = $patron->category->category_type;
455     $template->param( adultborrower => 1 ) if ( $category_type eq 'A' || $category_type eq 'I' );
456 }
457
458 #title
459 my $flags = $patron ? C4::Members::patronflags( $patron->unblessed ) : {};
460 foreach my $flag ( sort keys %$flags ) {
461     $flags->{$flag}->{'message'} =~ s#\n#<br />#g;
462     if ( $flags->{$flag}->{'noissues'} ) {
463         $template->param(
464             noissues => ($force_allow_issue) ? 0 : 'true',
465             forceallow => $force_allow_issue,
466         );
467         if ( $flag eq 'GNA' ) {
468             $template->param( gna => 'true' );
469         }
470         elsif ( $flag eq 'LOST' ) {
471             $template->param( lost => 'true' );
472         }
473         elsif ( $flag eq 'DBARRED' ) {
474             $template->param( dbarred => 'true' );
475         }
476         elsif ( $flag eq 'CHARGES' ) {
477             $template->param(
478                 charges    => 'true',
479                 chargesmsg => $flags->{'CHARGES'}->{'message'},
480                 chargesamount => $flags->{'CHARGES'}->{'amount'},
481                 charges_is_blocker => 1
482             );
483         }
484         elsif ( $flag eq 'CHARGES_GUARANTEES' ) {
485             $template->param(
486                 charges_guarantees    => 'true',
487                 chargesmsg_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'message'},
488                 chargesamount_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'amount'},
489                 charges_guarantees_is_blocker => 1
490             );
491         }
492         elsif ( $flag eq 'CREDITS' ) {
493             $template->param(
494                 credits    => 'true',
495                 creditsmsg => $flags->{'CREDITS'}->{'message'},
496                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
497             );
498         }
499     }
500     else {
501         if ( $flag eq 'CHARGES' ) {
502             $template->param(
503                 charges    => 'true',
504                 chargesmsg => $flags->{'CHARGES'}->{'message'},
505                 chargesamount => $flags->{'CHARGES'}->{'amount'},
506             );
507         }
508         elsif ( $flag eq 'CHARGES_GUARANTEES' ) {
509             $template->param(
510                 charges_guarantees    => 'true',
511                 chargesmsg_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'message'},
512                 chargesamount_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'amount'},
513             );
514         }
515         elsif ( $flag eq 'CREDITS' ) {
516             $template->param(
517                 credits    => 'true',
518                 creditsmsg => $flags->{'CREDITS'}->{'message'},
519                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
520             );
521         }
522         elsif ( $flag eq 'ODUES' ) {
523             $template->param(
524                 odues    => 'true',
525                 oduesmsg => $flags->{'ODUES'}->{'message'}
526             );
527
528             my $items = $flags->{$flag}->{'itemlist'};
529             if ( ! $query->param('module') || $query->param('module') ne 'returns' ) {
530                 $template->param( nonreturns => 'true' );
531             }
532         }
533         elsif ( $flag eq 'NOTES' ) {
534             $template->param(
535                 notes    => 'true',
536                 notesmsg => $flags->{'NOTES'}->{'message'}
537             );
538         }
539     }
540 }
541
542 my $amountold = $flags ? $flags->{'CHARGES'}->{'message'} || 0 : 0;
543 $amountold =~ s/^.*\$//;    # remove upto the $, if any
544
545 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
546
547 if ( $patron && $patron->category->category_type eq 'C') {
548     my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
549     $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
550     $template->param( 'catcode' => $patron_categories->next->categorycode )  if $patron_categories->count == 1;
551 }
552
553 my $messages = Koha::Patron::Messages->search(
554     {
555         'me.borrowernumber' => $borrowernumber,
556     },
557     {
558        join => 'manager',
559        '+select' => ['manager.surname', 'manager.firstname' ],
560        '+as' => ['manager_surname', 'manager_firstname'],
561     }
562 );
563
564 my $fast_cataloging = 0;
565 if ( Koha::BiblioFrameworks->find('FA') ) {
566     $fast_cataloging = 1 
567 }
568
569 if (C4::Context->preference('ExtendedPatronAttributes')) {
570     my $attributes = GetBorrowerAttributes($borrowernumber);
571     $template->param(
572         ExtendedPatronAttributes => 1,
573         extendedattributes => $attributes
574     );
575 }
576 my $view = $batch
577     ?'batch_checkout_view'
578     : 'circview';
579
580 my @relatives;
581 if ( $borrowernumber ) {
582     if ( $patron ) {
583         if ( my $guarantor = $patron->guarantor ) {
584             push @relatives, $guarantor->borrowernumber;
585             push @relatives, $_->borrowernumber for $patron->siblings;
586         } else {
587             push @relatives, $_->borrowernumber for $patron->guarantees;
588         }
589     }
590 }
591 my $relatives_issues_count =
592   Koha::Database->new()->schema()->resultset('Issue')
593   ->count( { borrowernumber => \@relatives } );
594
595 if ( $patron ) {
596     my $av = Koha::AuthorisedValues->search({ category => 'ROADTYPE', authorised_value => $patron->streettype });
597     my $roadtype = $av->count ? $av->next->lib : '';
598     $template->param(
599         %{ $patron->unblessed },
600         borrower => $patron->unblessed,
601         roadtype          => $roadtype,
602         patron            => $patron,
603         categoryname      => $patron->category->description,
604         expiry            => $patron->dateexpiry,
605         is_child          => ( $patron->category->category_type eq 'C' ),
606         picture           => ( $patron->image ? 1 : 0 ),
607     );
608 }
609
610 # Restore date if changed by holds and/or save stickyduedate to session
611 if ($restoreduedatespec || $stickyduedate) {
612     $duedatespec = $restoreduedatespec || $duedatespec;
613
614     if ($stickyduedate) {
615         $session->param( 'stickyduedate', $duedatespec );
616     }
617 } elsif (defined($duedatespec) && !defined($restoreduedatespec)) {
618     undef $duedatespec;
619 }
620
621 $template->param(
622     messages           => $messages,
623     borrowernumber    => $borrowernumber,
624     branch            => $branch,
625     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
626     amountold         => $amountold,
627     barcodes          => $barcodes,
628     stickyduedate     => $stickyduedate,
629     duedatespec       => $duedatespec,
630     restoreduedatespec => $restoreduedatespec,
631     message           => $message,
632     totaldue          => sprintf('%.2f', $total),
633     inprocess         => $inprocess,
634     $view             => 1,
635     batch_allowed     => $batch_allowed,
636     batch             => $batch,
637     AudioAlerts           => C4::Context->preference("AudioAlerts"),
638     fast_cataloging   => $fast_cataloging,
639     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
640     RoutingSerials => C4::Context->preference('RoutingSerials'),
641     relatives_issues_count => $relatives_issues_count,
642     relatives_borrowernumbers => \@relatives,
643 );
644
645
646 if ( C4::Context->preference("ExportCircHistory") ) {
647     $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
648 }
649
650 my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
651 $template->param(
652     debt_confirmed            => $debt_confirmed,
653     SpecifyDueDate            => $duedatespec_allow,
654     CircAutocompl             => C4::Context->preference("CircAutocompl"),
655     debarments                => scalar GetDebarments({ borrowernumber => $borrowernumber }),
656     todaysdate                => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
657     has_modifications         => $has_modifications,
658     override_high_holds       => $override_high_holds,
659     nopermission              => scalar $query->param('nopermission'),
660 );
661
662 output_html_with_http_headers $query, $cookie, $template->output;