Bug 19053: Keep auto_renew flag if a confirmation is needed
[koha-equinox.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 strict;
28 use warnings;
29 use CGI qw ( -utf8 );
30 use DateTime;
31 use DateTime::Duration;
32 use C4::Output;
33 use C4::Print;
34 use C4::Auth qw/:DEFAULT get_session haspermission/;
35 use C4::Koha;   # GetPrinter
36 use C4::Circulation;
37 use C4::Utils::DataTables::Members;
38 use C4::Members;
39 use C4::Biblio;
40 use C4::Search;
41 use MARC::Record;
42 use C4::Reserves;
43 use Koha::Holds;
44 use C4::Context;
45 use CGI::Session;
46 use C4::Members::Attributes qw(GetBorrowerAttributes);
47 use Koha::AuthorisedValues;
48 use Koha::CsvProfiles;
49 use Koha::Patrons;
50 use Koha::Patron::Debarments qw(GetDebarments);
51 use Koha::DateUtils;
52 use Koha::Database;
53 use Koha::BiblioFrameworks;
54 use Koha::Items;
55 use Koha::Patron::Messages;
56 use Koha::SearchEngine;
57 use Koha::SearchEngine::Search;
58 use Koha::Patron::Modifications;
59
60 use Date::Calc qw(
61   Today
62   Add_Delta_Days
63   Date_to_Days
64 );
65 use List::MoreUtils qw/uniq/;
66
67 #
68 # PARAMETERS READING
69 #
70 my $query = new CGI;
71
72 my $override_high_holds     = $query->param('override_high_holds');
73 my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
74
75 my $sessionID = $query->cookie("CGISESSID") ;
76 my $session = get_session($sessionID);
77 if (!C4::Context->userenv){
78     if ($session->param('branch') eq 'NO_LIBRARY_SET'){
79         # no branch set we can't issue
80         print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
81         exit;
82     }
83 }
84
85 my $barcodes = [];
86 my $barcode =  $query->param('barcode');
87 # Barcode given by user could be '0'
88 if ( $barcode || ( defined($barcode) && $barcode eq '0' ) ) {
89     $barcodes = [ $barcode ];
90 } else {
91     my $filefh = $query->upload('uploadfile');
92     if ( $filefh ) {
93         while ( my $content = <$filefh> ) {
94             $content =~ s/[\r\n]*$//g;
95             push @$barcodes, $content if $content;
96         }
97     } elsif ( my $list = $query->param('barcodelist') ) {
98         push @$barcodes, split( /\s\n/, $list );
99         $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
100     } else {
101         @$barcodes = $query->multi_param('barcodes');
102     }
103 }
104
105 $barcodes = [ uniq @$barcodes ];
106
107 my $template_name = q|circ/circulation.tt|;
108 my $borrowernumber = $query->param('borrowernumber');
109 my $patron = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : undef;
110 my $batch = $query->param('batch');
111 my $batch_allowed = 0;
112 if ( $batch && C4::Context->preference('BatchCheckouts') ) {
113     $template_name = q|circ/circulation_batch_checkouts.tt|;
114     my @batch_category_codes = split '\|', C4::Context->preference('BatchCheckoutsValidCategories');
115     my $categorycode = $patron->categorycode;
116     if ( $categorycode && grep {/^$categorycode$/} @batch_category_codes ) {
117         $batch_allowed = 1;
118     } else {
119         $barcodes = [];
120     }
121 }
122
123 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
124     {
125         template_name   => $template_name,
126         query           => $query,
127         type            => "intranet",
128         authnotrequired => 0,
129         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
130     }
131 );
132
133 my $force_allow_issue = $query->param('forceallow') || 0;
134 if (!C4::Auth::haspermission( C4::Context->userenv->{id} , { circulate => 'force_checkout' } )) {
135     $force_allow_issue = 0;
136 }
137
138 my $onsite_checkout = $query->param('onsite_checkout');
139
140 my @failedrenews = $query->multi_param('failedrenew');    # expected to be itemnumbers
141 our %renew_failed = ();
142 for (@failedrenews) { $renew_failed{$_} = 1; }
143
144 my @failedreturns = $query->multi_param('failedreturn');
145 our %return_failed = ();
146 for (@failedreturns) { $return_failed{$_} = 1; }
147
148 my $searchtype = $query->param('searchtype') || q{contain};
149
150 my $findborrower = $query->param('findborrower') || q{};
151 $findborrower =~ s|,| |g;
152
153 my $branch = C4::Context->userenv->{'branch'};
154
155 if (C4::Context->preference("DisplayClearScreenButton")) {
156     $template->param(DisplayClearScreenButton => 1);
157 }
158
159 for my $barcode ( @$barcodes ) {
160     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
161     $barcode = barcodedecode($barcode)
162         if( $barcode && C4::Context->preference('itemBarcodeInputFilter'));
163 }
164
165 my $stickyduedate  = $query->param('stickyduedate') || $session->param('stickyduedate');
166 my $duedatespec    = $query->param('duedatespec')   || $session->param('stickyduedate');
167 $duedatespec = eval { output_pref( { dt => dt_from_string( $duedatespec ), dateformat => 'iso', timeformat => '24hr' }); }
168     if ( $duedatespec );
169 my $restoreduedatespec  = $query->param('restoreduedatespec') || $duedatespec || $session->param('stickyduedate');
170 if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) {
171     undef $restoreduedatespec;
172 }
173 my $issueconfirmed = $query->param('issueconfirmed');
174 my $cancelreserve  = $query->param('cancelreserve');
175 my $print          = $query->param('print') || q{};
176 my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
177 my $charges        = $query->param('charges') || q{};
178
179 # Check if stickyduedate is turned off
180 if ( @$barcodes ) {
181     # was stickyduedate loaded from session?
182     if ( $stickyduedate && ! $query->param("stickyduedate") ) {
183         $session->clear( 'stickyduedate' );
184         $stickyduedate  = $query->param('stickyduedate');
185         $duedatespec    = $query->param('duedatespec');
186     }
187     $session->param('auto_renew', scalar $query->param('auto_renew'));
188 }
189 else {
190     $session->clear('auto_renew');
191 }
192
193 my ($datedue,$invalidduedate);
194
195 my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
196 if( $onsite_checkout && !$duedatespec_allow ) {
197     $datedue = output_pref({ dt => dt_from_string, dateonly => 1, dateformat => 'iso' });
198     $datedue .= ' 23:59:00';
199 } elsif( $duedatespec_allow ) {
200     if ( $duedatespec ) {
201         $datedue = eval { dt_from_string( $duedatespec ) };
202         if (! $datedue ) {
203             $invalidduedate = 1;
204             $template->param( IMPOSSIBLE=>1, INVALID_DATE=>$duedatespec );
205         }
206     }
207 }
208
209 # check and see if we should print
210 if ( @$barcodes == 0 && $print eq 'maybe' ) {
211     $print = 'yes';
212 }
213
214 my $inprocess = (@$barcodes == 0) ? '' : $query->param('inprocess');
215 if ( @$barcodes == 0 && $charges eq 'yes' ) {
216     $template->param(
217         PAYCHARGES     => 'yes',
218         borrowernumber => $borrowernumber
219     );
220 }
221
222 if ( $print eq 'yes' && $borrowernumber ne '' ) {
223     if ( C4::Context->boolean_preference('printcirculationslips') ) {
224         my $letter = IssueSlip($branch, $borrowernumber, "QUICK");
225         NetworkPrint($letter->{content});
226     }
227     $query->param( 'borrowernumber', '' );
228     $borrowernumber = '';
229 }
230
231 #
232 # STEP 2 : FIND BORROWER
233 # if there is a list of find borrowers....
234 #
235 my $message;
236 if ($findborrower) {
237     my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
238     if ( $patron ) {
239         $borrowernumber = $patron->borrowernumber;
240     } else {
241         my $dt_params = { iDisplayLength => -1 };
242         my $results = C4::Utils::DataTables::Members::search(
243             {
244                 searchmember => $findborrower,
245                 searchtype   => $searchtype,
246                 dt_params    => $dt_params,
247             }
248         );
249         my $borrowers = $results->{patrons};
250         if ( scalar @$borrowers == 1 ) {
251             $borrowernumber = $borrowers->[0]->{borrowernumber};
252             $query->param( 'borrowernumber', $borrowernumber );
253             $query->param( 'barcode',           '' );
254         } elsif ( @$borrowers ) {
255             $template->param( borrowers => $borrowers );
256         } else {
257             $query->param( 'findborrower', '' );
258             $message = "'$findborrower'";
259         }
260     }
261 }
262
263 # get the borrower information.....
264 if ($borrowernumber) {
265     $patron = Koha::Patrons->find( $borrowernumber );
266     my $overdues = $patron->get_overdues;
267     my $issues = $patron->checkouts;
268     my $balance = $patron->account->balance;
269
270
271     # if the expiry date is before today ie they have expired
272     if ( $patron->is_expired ) {
273         #borrowercard expired, no issues
274         $template->param(
275             noissues => ($force_allow_issue) ? 0 : "1",
276             forceallow => $force_allow_issue,
277             expired => "1",
278         );
279     }
280     # check for NotifyBorrowerDeparture
281     elsif ( $patron->is_going_to_expire ) {
282         # borrower card soon to expire warn librarian
283         $template->param( "warndeparture" => $patron->dateexpiry ,
284                         );
285         if (C4::Context->preference('ReturnBeforeExpiry')){
286             $template->param("returnbeforeexpiry" => 1);
287         }
288     }
289     $template->param(
290         overduecount => $overdues->count,
291         issuecount   => $issues->count,
292         finetotal    => $balance,
293     );
294
295     if ( $patron and $patron->is_debarred ) {
296         $template->param(
297             'userdebarred'    => $patron->debarred,
298             'debarredcomment' => $patron->debarredcomment,
299         );
300
301         if ( $patron->debarred ne "9999-12-31" ) {
302             $template->param( 'userdebarreddate' => $patron->debarred );
303         }
304     }
305
306 }
307
308 #
309 # STEP 3 : ISSUING
310 #
311 #
312 if (@$barcodes) {
313   my $checkout_infos;
314   for my $barcode ( @$barcodes ) {
315     my $template_params = { barcode => $barcode };
316     # always check for blockers on issuing
317     my ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
318         $patron->unblessed,
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
328     my $blocker = $invalidduedate ? 1 : 0;
329
330     $template_params->{alert} = $alerts;
331     $template_params->{messages} = $messages;
332
333     my $item = Koha::Items->find({ barcode => $barcode });
334     my ( $biblio, $mss );
335
336     if ( $item ) {
337         $biblio = $item->biblio;
338         my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.notforloan', authorised_value => { not => undef } });
339         $template_params->{authvalcode_notforloan} = $mss->count ? $mss->next->authorised_value : undef;
340     }
341
342     # Fix for bug 7494: optional checkout-time fallback search for a book
343
344     if ( $error->{'UNKNOWN_BARCODE'}
345         && C4::Context->preference("itemBarcodeFallbackSearch")
346         && not $batch
347     )
348     {
349      $template_params->{FALLBACK} = 1;
350
351         my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
352         my $query = "kw=" . $barcode;
353         my ( $searcherror, $results, $total_hits ) = $searcher->simple_search_compat($query, 0, 10);
354
355         # if multiple hits, offer options to librarian
356         if ( $total_hits > 0 ) {
357             my @options = ();
358             foreach my $hit ( @{$results} ) {
359                 my $chosen =
360                   TransformMarcToKoha( C4::Search::new_record_from_zebra('biblioserver',$hit) );
361
362                 # offer all barcodes individually
363                 if ( $chosen->{barcode} ) {
364                     foreach my $barcode ( sort split(/\s*\|\s*/, $chosen->{barcode}) ) {
365                         my %chosen_single = %{$chosen};
366                         $chosen_single{barcode} = $barcode;
367                         push( @options, \%chosen_single );
368                     }
369                 }
370             }
371             $template_params->{options} = \@options;
372         }
373     }
374
375     unless( $onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce") ) {
376         delete $question->{'DEBT'} if ($debt_confirmed);
377         foreach my $impossible ( keys %$error ) {
378             $template_params->{$impossible} = $$error{$impossible};
379             $template_params->{IMPOSSIBLE} = 1;
380             $blocker = 1;
381         }
382     }
383     if( !$blocker || $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 ($borrowernumber) {
447     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } );
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 )  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     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
641     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
642     RoutingSerials => C4::Context->preference('RoutingSerials'),
643     relatives_issues_count => $relatives_issues_count,
644     relatives_borrowernumbers => \@relatives,
645 );
646
647
648 if ( C4::Context->preference("ExportCircHistory") ) {
649     $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
650 }
651
652 my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
653 $template->param(
654     debt_confirmed            => $debt_confirmed,
655     SpecifyDueDate            => $duedatespec_allow,
656     CircAutocompl             => C4::Context->preference("CircAutocompl"),
657     debarments                => GetDebarments({ borrowernumber => $borrowernumber }),
658     todaysdate                => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
659     has_modifications         => $has_modifications,
660     override_high_holds       => $override_high_holds,
661     nopermission              => scalar $query->param('nopermission'),
662 );
663
664 output_html_with_http_headers $query, $cookie, $template->output;