Bug 18403: output_and_exit_if_error for circulation.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 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 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
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 $patron ||= Koha::Patrons->find( $borrowernumber ) if $borrowernumber;
265 if ($patron) {
266
267     $template->param( borrowernumber => $patron->borrowernumber );
268     output_and_exit_if_error( $query, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
269
270     my $overdues = $patron->get_overdues;
271     my $issues = $patron->checkouts;
272     my $balance = $patron->account->balance;
273
274
275     # if the expiry date is before today ie they have expired
276     if ( $patron->is_expired ) {
277         #borrowercard expired, no issues
278         $template->param(
279             noissues => ($force_allow_issue) ? 0 : "1",
280             forceallow => $force_allow_issue,
281             expired => "1",
282         );
283     }
284     # check for NotifyBorrowerDeparture
285     elsif ( $patron->is_going_to_expire ) {
286         # borrower card soon to expire warn librarian
287         $template->param( "warndeparture" => $patron->dateexpiry ,
288                         );
289         if (C4::Context->preference('ReturnBeforeExpiry')){
290             $template->param("returnbeforeexpiry" => 1);
291         }
292     }
293     $template->param(
294         overduecount => $overdues->count,
295         issuecount   => $issues->count,
296         finetotal    => $balance,
297     );
298
299     if ( $patron and $patron->is_debarred ) {
300         $template->param(
301             'userdebarred'    => $patron->debarred,
302             'debarredcomment' => $patron->debarredcomment,
303         );
304
305         if ( $patron->debarred ne "9999-12-31" ) {
306             $template->param( 'userdebarreddate' => $patron->debarred );
307         }
308     }
309
310 }
311
312 #
313 # STEP 3 : ISSUING
314 #
315 #
316 if (@$barcodes) {
317   my $checkout_infos;
318   for my $barcode ( @$barcodes ) {
319     my $template_params = { barcode => $barcode };
320     # always check for blockers on issuing
321     my ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
322         $patron,
323         $barcode, $datedue,
324         $inprocess,
325         undef,
326         {
327             onsite_checkout     => $onsite_checkout,
328             override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
329         }
330     );
331
332     my $blocker = $invalidduedate ? 1 : 0;
333
334     $template_params->{alert} = $alerts;
335     $template_params->{messages} = $messages;
336
337     my $item = Koha::Items->find({ barcode => $barcode });
338     my ( $biblio, $mss );
339
340     if ( $item ) {
341         $biblio = $item->biblio;
342         my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.notforloan', authorised_value => { not => undef } });
343         $template_params->{authvalcode_notforloan} = $mss->count ? $mss->next->authorised_value : undef;
344     }
345
346     # Fix for bug 7494: optional checkout-time fallback search for a book
347
348     if ( $error->{'UNKNOWN_BARCODE'}
349         && C4::Context->preference("itemBarcodeFallbackSearch")
350         && not $batch
351     )
352     {
353      $template_params->{FALLBACK} = 1;
354
355         my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
356         my $query = "kw=" . $barcode;
357         my ( $searcherror, $results, $total_hits ) = $searcher->simple_search_compat($query, 0, 10);
358
359         # if multiple hits, offer options to librarian
360         if ( $total_hits > 0 ) {
361             my @options = ();
362             foreach my $hit ( @{$results} ) {
363                 my $chosen =
364                   TransformMarcToKoha( C4::Search::new_record_from_zebra('biblioserver',$hit) );
365
366                 # offer all barcodes individually
367                 if ( $chosen->{barcode} ) {
368                     foreach my $barcode ( sort split(/\s*\|\s*/, $chosen->{barcode}) ) {
369                         my %chosen_single = %{$chosen};
370                         $chosen_single{barcode} = $barcode;
371                         push( @options, \%chosen_single );
372                     }
373                 }
374             }
375             $template_params->{options} = \@options;
376         }
377     }
378
379     if ( $error->{UNKNOWN_BARCODE} or not $onsite_checkout or not C4::Context->preference("OnSiteCheckoutsForce") ) {
380         delete $question->{'DEBT'} if ($debt_confirmed);
381         foreach my $impossible ( keys %$error ) {
382             $template_params->{$impossible} = $$error{$impossible};
383             $template_params->{IMPOSSIBLE} = 1;
384             $blocker = 1;
385         }
386     }
387
388     if( $item and ( !$blocker or $force_allow_issue ) ){
389         my $confirm_required = 0;
390         unless($issueconfirmed){
391             #  Get the item title for more information
392             my $materials = $item->materials;
393             my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.materials', authorised_value => $materials });
394             $materials = $descriptions->{lib} // $materials;
395             $template_params->{additional_materials} = $materials;
396             $template_params->{itemhomebranch} = $item->homebranch;
397
398             # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
399             foreach my $needsconfirmation ( keys %$question ) {
400                 $template_params->{$needsconfirmation} = $$question{$needsconfirmation};
401                 $template_params->{getTitleMessageIteminfo} = $biblio->title;
402                 $template_params->{getBarcodeMessageIteminfo} = $item->barcode;
403                 $template_params->{NEEDSCONFIRMATION} = 1;
404                 $template_params->{onsite_checkout} = $onsite_checkout;
405                 $template_params->{auto_renew} = $session->param('auto_renew');
406                 $confirm_required = 1;
407             }
408         }
409         unless($confirm_required) {
410             my $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED};
411             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, } );
412             $template_params->{issue} = $issue;
413             $session->clear('auto_renew');
414             $inprocess = 1;
415         }
416     }
417
418     if ($question->{RESERVE_WAITING} or $question->{RESERVED}){
419         $template->param(
420             reserveborrowernumber => $question->{'resborrowernumber'}
421         );
422     }
423
424
425     # FIXME If the issue is confirmed, we launch another time checkouts->count, now display the issue count after issue
426     $patron = Koha::Patrons->find( $borrowernumber );
427     $template_params->{issuecount} = $patron->checkouts->count;
428
429     if ( $item ) {
430         $template_params->{item} = $item;
431         $template_params->{biblio} = $biblio;
432         $template_params->{itembiblionumber} = $biblio->biblionumber;
433     }
434     push @$checkout_infos, $template_params;
435   }
436   unless ( $batch ) {
437     $template->param( %{$checkout_infos->[0]} );
438     $template->param( barcode => $barcodes->[0] );
439   } else {
440     my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
441     $template->param(
442         checkout_infos => $checkout_infos,
443         confirmation_needed => $confirmation_needed,
444     );
445   }
446 }
447
448 ##################################################################################
449 # BUILD HTML
450 # show all reserves of this borrower, and the position of the reservation ....
451 if ($patron) {
452     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } ); # FIXME must be Koha::Patron->holds
453     my $waiting_holds = $holds->waiting;
454     $template->param(
455         holds_count  => $holds->count(),
456         WaitingHolds => $waiting_holds,
457     );
458
459     my $category_type = $patron->category->category_type;
460     $template->param( adultborrower => 1 ) if ( $category_type eq 'A' || $category_type eq 'I' );
461 }
462
463 #title
464 my $flags = $patron ? C4::Members::patronflags( $patron->unblessed ) : {};
465 foreach my $flag ( sort keys %$flags ) {
466     $flags->{$flag}->{'message'} =~ s#\n#<br />#g;
467     if ( $flags->{$flag}->{'noissues'} ) {
468         $template->param(
469             noissues => ($force_allow_issue) ? 0 : 'true',
470             forceallow => $force_allow_issue,
471         );
472         if ( $flag eq 'GNA' ) {
473             $template->param( gna => 'true' );
474         }
475         elsif ( $flag eq 'LOST' ) {
476             $template->param( lost => 'true' );
477         }
478         elsif ( $flag eq 'DBARRED' ) {
479             $template->param( dbarred => 'true' );
480         }
481         elsif ( $flag eq 'CHARGES' ) {
482             $template->param(
483                 charges    => 'true',
484                 chargesmsg => $flags->{'CHARGES'}->{'message'},
485                 chargesamount => $flags->{'CHARGES'}->{'amount'},
486                 charges_is_blocker => 1
487             );
488         }
489         elsif ( $flag eq 'CHARGES_GUARANTEES' ) {
490             $template->param(
491                 charges_guarantees    => 'true',
492                 chargesmsg_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'message'},
493                 chargesamount_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'amount'},
494                 charges_guarantees_is_blocker => 1
495             );
496         }
497         elsif ( $flag eq 'CREDITS' ) {
498             $template->param(
499                 credits    => 'true',
500                 creditsmsg => $flags->{'CREDITS'}->{'message'},
501                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
502             );
503         }
504     }
505     else {
506         if ( $flag eq 'CHARGES' ) {
507             $template->param(
508                 charges    => 'true',
509                 chargesmsg => $flags->{'CHARGES'}->{'message'},
510                 chargesamount => $flags->{'CHARGES'}->{'amount'},
511             );
512         }
513         elsif ( $flag eq 'CHARGES_GUARANTEES' ) {
514             $template->param(
515                 charges_guarantees    => 'true',
516                 chargesmsg_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'message'},
517                 chargesamount_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'amount'},
518             );
519         }
520         elsif ( $flag eq 'CREDITS' ) {
521             $template->param(
522                 credits    => 'true',
523                 creditsmsg => $flags->{'CREDITS'}->{'message'},
524                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
525             );
526         }
527         elsif ( $flag eq 'ODUES' ) {
528             $template->param(
529                 odues    => 'true',
530                 oduesmsg => $flags->{'ODUES'}->{'message'}
531             );
532
533             my $items = $flags->{$flag}->{'itemlist'};
534             if ( ! $query->param('module') || $query->param('module') ne 'returns' ) {
535                 $template->param( nonreturns => 'true' );
536             }
537         }
538         elsif ( $flag eq 'NOTES' ) {
539             $template->param(
540                 notes    => 'true',
541                 notesmsg => $flags->{'NOTES'}->{'message'}
542             );
543         }
544     }
545 }
546
547 my $amountold = $flags ? $flags->{'CHARGES'}->{'message'} || 0 : 0;
548 $amountold =~ s/^.*\$//;    # remove upto the $, if any
549
550 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
551
552 if ( $patron && $patron->category->category_type eq 'C') {
553     my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
554     $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
555     $template->param( 'catcode' => $patron_categories->next->categorycode )  if $patron_categories->count == 1;
556 }
557
558 my $messages = Koha::Patron::Messages->search(
559     {
560         'me.borrowernumber' => $borrowernumber,
561     },
562     {
563        join => 'manager',
564        '+select' => ['manager.surname', 'manager.firstname' ],
565        '+as' => ['manager_surname', 'manager_firstname'],
566     }
567 );
568
569 my $fast_cataloging = 0;
570 if ( Koha::BiblioFrameworks->find('FA') ) {
571     $fast_cataloging = 1 
572 }
573
574 if (C4::Context->preference('ExtendedPatronAttributes')) {
575     my $attributes = GetBorrowerAttributes($borrowernumber);
576     $template->param(
577         ExtendedPatronAttributes => 1,
578         extendedattributes => $attributes
579     );
580 }
581 my $view = $batch
582     ?'batch_checkout_view'
583     : 'circview';
584
585 my @relatives;
586 if ( $borrowernumber ) {
587     if ( $patron ) {
588         if ( my $guarantor = $patron->guarantor ) {
589             push @relatives, $guarantor->borrowernumber;
590             push @relatives, $_->borrowernumber for $patron->siblings;
591         } else {
592             push @relatives, $_->borrowernumber for $patron->guarantees;
593         }
594     }
595 }
596 my $relatives_issues_count =
597   Koha::Database->new()->schema()->resultset('Issue')
598   ->count( { borrowernumber => \@relatives } );
599
600 if ( $patron ) {
601     my $av = Koha::AuthorisedValues->search({ category => 'ROADTYPE', authorised_value => $patron->streettype });
602     my $roadtype = $av->count ? $av->next->lib : '';
603     $template->param(
604         %{ $patron->unblessed },
605         borrower => $patron->unblessed,
606         roadtype          => $roadtype,
607         patron            => $patron,
608         categoryname      => $patron->category->description,
609         expiry            => $patron->dateexpiry,
610         is_child          => ( $patron->category->category_type eq 'C' ),
611         picture           => ( $patron->image ? 1 : 0 ),
612     );
613 }
614
615 # Restore date if changed by holds and/or save stickyduedate to session
616 if ($restoreduedatespec || $stickyduedate) {
617     $duedatespec = $restoreduedatespec || $duedatespec;
618
619     if ($stickyduedate) {
620         $session->param( 'stickyduedate', $duedatespec );
621     }
622 } elsif (defined($duedatespec) && !defined($restoreduedatespec)) {
623     undef $duedatespec;
624 }
625
626 $template->param(
627     messages           => $messages,
628     borrowernumber    => $borrowernumber,
629     branch            => $branch,
630     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
631     amountold         => $amountold,
632     barcodes          => $barcodes,
633     stickyduedate     => $stickyduedate,
634     duedatespec       => $duedatespec,
635     restoreduedatespec => $restoreduedatespec,
636     message           => $message,
637     totaldue          => sprintf('%.2f', $total),
638     inprocess         => $inprocess,
639     $view             => 1,
640     batch_allowed     => $batch_allowed,
641     batch             => $batch,
642     AudioAlerts           => C4::Context->preference("AudioAlerts"),
643     fast_cataloging   => $fast_cataloging,
644     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
645     RoutingSerials => C4::Context->preference('RoutingSerials'),
646     relatives_issues_count => $relatives_issues_count,
647     relatives_borrowernumbers => \@relatives,
648 );
649
650
651 if ( C4::Context->preference("ExportCircHistory") ) {
652     $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
653 }
654
655 my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
656 $template->param(
657     debt_confirmed            => $debt_confirmed,
658     SpecifyDueDate            => $duedatespec_allow,
659     CircAutocompl             => C4::Context->preference("CircAutocompl"),
660     debarments                => scalar GetDebarments({ borrowernumber => $borrowernumber }),
661     todaysdate                => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
662     has_modifications         => $has_modifications,
663     override_high_holds       => $override_high_holds,
664     nopermission              => scalar $query->param('nopermission'),
665 );
666
667 output_html_with_http_headers $query, $cookie, $template->output;