Bug 16154: CGI->multi_param - Force scalar context
[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 use strict;
26 use warnings;
27 use CGI qw ( -utf8 );
28 use DateTime;
29 use DateTime::Duration;
30 use C4::Output;
31 use C4::Print;
32 use C4::Auth qw/:DEFAULT get_session haspermission/;
33 use C4::Branch; # GetBranches
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::Patron;
47 use Koha::Patron::Debarments qw(GetDebarments IsDebarred);
48 use Koha::DateUtils;
49 use Koha::Database;
50 use Koha::Patron::Messages;
51 use Koha::Patron::Images;
52 use Koha::SearchEngine;
53 use Koha::SearchEngine::Search;
54
55 use Date::Calc qw(
56   Today
57   Add_Delta_Days
58   Date_to_Days
59 );
60 use List::MoreUtils qw/uniq/;
61
62 #
63 # PARAMETERS READING
64 #
65 my $query = new CGI;
66
67 my $sessionID = $query->cookie("CGISESSID") ;
68 my $session = get_session($sessionID);
69
70 # branch and printer are now defined by the userenv
71 # but first we have to check if someone has tried to change them
72
73 my $branch = $query->param('branch');
74 if ($branch){
75     # update our session so the userenv is updated
76     $session->param('branch', $branch);
77     $session->param('branchname', GetBranchName($branch));
78 }
79
80 my $printer = $query->param('printer');
81 if ($printer){
82     # update our session so the userenv is updated
83     $session->param('branchprinter', $printer);
84 }
85
86 if (!C4::Context->userenv && !$branch){
87     if ($session->param('branch') eq 'NO_LIBRARY_SET'){
88         # no branch set we can't issue
89         print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
90         exit;
91     }
92 }
93
94 my $barcodes = [];
95 my $barcode =  $query->param('barcode');
96 # Barcode given by user could be '0'
97 if ( $barcode || $barcode eq '0' ) {
98     $barcodes = [ $barcode ];
99 } else {
100     my $filefh = $query->upload('uploadfile');
101     if ( $filefh ) {
102         while ( my $content = <$filefh> ) {
103             $content =~ s/[\r\n]*$//g;
104             push @$barcodes, $content if $content;
105         }
106     } elsif ( my $list = $query->param('barcodelist') ) {
107         push @$barcodes, split( /\s\n/, $list );
108         $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
109     } else {
110         @$barcodes = $query->param('barcodes');
111     }
112 }
113
114 $barcodes = [ uniq @$barcodes ];
115
116 my $template_name = q|circ/circulation.tt|;
117 my $borrowernumber = $query->param('borrowernumber');
118 my $borrower = $borrowernumber ? GetMember( borrowernumber => $borrowernumber ) : undef;
119 my $batch = $query->param('batch');
120 my $batch_allowed = 0;
121 if ( $batch && C4::Context->preference('BatchCheckouts') ) {
122     $template_name = q|circ/circulation_batch_checkouts.tt|;
123     my @batch_category_codes = split '\|', C4::Context->preference('BatchCheckoutsValidCategories');
124     if ( grep {/^$borrower->{categorycode}$/} @batch_category_codes ) {
125         $batch_allowed = 1;
126     } else {
127         $barcodes = [];
128     }
129 }
130
131 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
132     {
133         template_name   => $template_name,
134         query           => $query,
135         type            => "intranet",
136         authnotrequired => 0,
137         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
138     }
139 );
140
141 my $branches = GetBranches();
142
143 my $force_allow_issue = $query->param('forceallow') || 0;
144 if (!C4::Auth::haspermission( C4::Context->userenv->{id} , { circulate => 'force_checkout' } )) {
145     $force_allow_issue = 0;
146 }
147
148 my $onsite_checkout = $query->param('onsite_checkout');
149
150 my @failedrenews = $query->multi_param('failedrenew');    # expected to be itemnumbers
151 our %renew_failed = ();
152 for (@failedrenews) { $renew_failed{$_} = 1; }
153
154 my @failedreturns = $query->multi_param('failedreturn');
155 our %return_failed = ();
156 for (@failedreturns) { $return_failed{$_} = 1; }
157
158 my $findborrower = $query->param('findborrower') || q{};
159 $findborrower =~ s|,| |g;
160
161 $branch  = C4::Context->userenv->{'branch'};  
162 $printer = C4::Context->userenv->{'branchprinter'};
163
164 # If AutoLocation is not activated, we show the Circulation Parameters to chage settings of librarian
165 if (C4::Context->preference("AutoLocation") != 1) {
166     $template->param(ManualLocation => 1);
167 }
168
169 if (C4::Context->preference("DisplayClearScreenButton")) {
170     $template->param(DisplayClearScreenButton => 1);
171 }
172
173 for my $barcode ( @$barcodes ) {
174     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
175     $barcode = barcodedecode($barcode)
176         if( $barcode && C4::Context->preference('itemBarcodeInputFilter'));
177 }
178
179 my $stickyduedate  = $query->param('stickyduedate') || $session->param('stickyduedate');
180 my $duedatespec    = $query->param('duedatespec')   || $session->param('stickyduedate');
181 $duedatespec = eval { output_pref( { dt => dt_from_string( $duedatespec ), dateformat => 'iso' }); }
182     if ( $duedatespec );
183 my $restoreduedatespec  = $query->param('restoreduedatespec') || $session->param('stickyduedate') || $duedatespec;
184 if ($restoreduedatespec eq "highholds_empty") {
185     undef $restoreduedatespec;
186 }
187 my $issueconfirmed = $query->param('issueconfirmed');
188 my $cancelreserve  = $query->param('cancelreserve');
189 my $print          = $query->param('print') || q{};
190 my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
191 my $charges        = $query->param('charges') || q{};
192
193 # Check if stickyduedate is turned off
194 if ( @$barcodes ) {
195     # was stickyduedate loaded from session?
196     if ( $stickyduedate && ! $query->param("stickyduedate") ) {
197         $session->clear( 'stickyduedate' );
198         $stickyduedate  = $query->param('stickyduedate');
199         $duedatespec    = $query->param('duedatespec');
200     }
201     $session->param('auto_renew', $query->param('auto_renew'));
202 }
203 else {
204     $session->clear('auto_renew');
205 }
206
207 my ($datedue,$invalidduedate);
208
209 my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
210 if( $onsite_checkout && !$duedatespec_allow ) {
211     $datedue = output_pref({ dt => dt_from_string, dateonly => 1, dateformat => 'iso' });
212     $datedue .= ' 23:59:00';
213 } elsif( $duedatespec_allow ) {
214     if ( $duedatespec ) {
215         $datedue = eval { dt_from_string( $duedatespec ) };
216         if (! $datedue ) {
217             $invalidduedate = 1;
218             $template->param( IMPOSSIBLE=>1, INVALID_DATE=>$duedatespec );
219         }
220     }
221 }
222
223 # check and see if we should print
224 if ( @$barcodes == 0 && $print eq 'maybe' ) {
225     $print = 'yes';
226 }
227
228 my $inprocess = (@$barcodes == 0) ? '' : $query->param('inprocess');
229 if ( @$barcodes == 0 && $charges eq 'yes' ) {
230     $template->param(
231         PAYCHARGES     => 'yes',
232         borrowernumber => $borrowernumber
233     );
234 }
235
236 if ( $print eq 'yes' && $borrowernumber ne '' ) {
237     if ( C4::Context->boolean_preference('printcirculationslips') ) {
238         my $letter = IssueSlip($branch, $borrowernumber, "QUICK");
239         NetworkPrint($letter->{content});
240     }
241     $query->param( 'borrowernumber', '' );
242     $borrowernumber = '';
243 }
244
245 #
246 # STEP 2 : FIND BORROWER
247 # if there is a list of find borrowers....
248 #
249 my $message;
250 if ($findborrower) {
251     my $borrower = C4::Members::GetMember( cardnumber => $findborrower );
252     if ( $borrower ) {
253         $borrowernumber = $borrower->{borrowernumber};
254     } else {
255         my $dt_params = { iDisplayLength => -1 };
256         my $results = C4::Utils::DataTables::Members::search(
257             {
258                 searchmember => $findborrower,
259                 searchtype => 'contain',
260                 dt_params => $dt_params,
261             }
262         );
263         my $borrowers = $results->{patrons};
264         if ( scalar @$borrowers == 1 ) {
265             $borrowernumber = $borrowers->[0]->{borrowernumber};
266             $query->param( 'borrowernumber', $borrowernumber );
267             $query->param( 'barcode',           '' );
268         } elsif ( @$borrowers ) {
269             $template->param( borrowers => $borrowers );
270         } else {
271             $query->param( 'findborrower', '' );
272             $message = "'$findborrower'";
273         }
274     }
275 }
276
277 # get the borrower information.....
278 if ($borrowernumber) {
279     $borrower = GetMemberDetails( $borrowernumber, 0 );
280     my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
281
282     # Warningdate is the date that the warning starts appearing
283     my (  $today_year,   $today_month,   $today_day) = Today();
284     my ($warning_year, $warning_month, $warning_day) = split /-/, $borrower->{'dateexpiry'};
285     my (  $enrol_year,   $enrol_month,   $enrol_day) = split /-/, $borrower->{'dateenrolled'};
286     # if the expiry date is before today ie they have expired
287     if ( !$borrower->{'dateexpiry'} || $warning_year*$warning_month*$warning_day==0
288         || Date_to_Days($today_year,     $today_month, $today_day  ) 
289          > Date_to_Days($warning_year, $warning_month, $warning_day) )
290     {
291         #borrowercard expired, no issues
292         $template->param(
293             noissues => ($force_allow_issue) ? 0 : "1",
294             forceallow => $force_allow_issue,
295             expired => "1",
296         );
297     }
298     # check for NotifyBorrowerDeparture
299     elsif ( C4::Context->preference('NotifyBorrowerDeparture') &&
300             Date_to_Days(Add_Delta_Days($warning_year,$warning_month,$warning_day,- C4::Context->preference('NotifyBorrowerDeparture'))) <
301             Date_to_Days( $today_year, $today_month, $today_day ) ) 
302     {
303         # borrower card soon to expire warn librarian
304         $template->param( "warndeparture" => $borrower->{dateexpiry} ,
305                         );
306         if (C4::Context->preference('ReturnBeforeExpiry')){
307             $template->param("returnbeforeexpiry" => 1);
308         }
309     }
310     $template->param(
311         overduecount => $od,
312         issuecount   => $issue,
313         finetotal    => $fines
314     );
315
316     if ( IsDebarred($borrowernumber) ) {
317         $template->param(
318             'userdebarred'    => $borrower->{debarred},
319             'debarredcomment' => $borrower->{debarredcomment},
320         );
321
322         if ( $borrower->{debarred} ne "9999-12-31" ) {
323             $template->param( 'userdebarreddate' => $borrower->{debarred} );
324         }
325     }
326
327 }
328
329 #
330 # STEP 3 : ISSUING
331 #
332 #
333 if (@$barcodes) {
334   my $checkout_infos;
335   for my $barcode ( @$barcodes ) {
336     my $template_params = { barcode => $barcode };
337     # always check for blockers on issuing
338     my ( $error, $question, $alerts ) =
339     CanBookBeIssued( $borrower, $barcode, $datedue , $inprocess, undef, { onsite_checkout => $onsite_checkout } );
340     my $blocker = $invalidduedate ? 1 : 0;
341
342     $template_params->{alert} = $alerts;
343
344     #  Get the item title for more information
345     my $getmessageiteminfo = GetBiblioFromItemNumber(undef,$barcode);
346     $template_params->{authvalcode_notforloan} =
347         C4::Koha::GetAuthValCode('items.notforloan', $getmessageiteminfo->{'frameworkcode'});
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 @options = ();
365             foreach my $hit ( @{$results} ) {
366                 my $chosen =
367                   TransformMarcToKoha( C4::Search::new_record_from_zebra('biblioserver',$hit) );
368
369                 # offer all barcodes individually
370                 if ( $chosen->{barcode} ) {
371                     foreach my $barcode ( sort split(/\s*\|\s*/, $chosen->{barcode}) ) {
372                         my %chosen_single = %{$chosen};
373                         $chosen_single{barcode} = $barcode;
374                         push( @options, \%chosen_single );
375                     }
376                 }
377             }
378             $template_params->{options} = \@options;
379         }
380     }
381
382     unless( $onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce") ) {
383         delete $question->{'DEBT'} if ($debt_confirmed);
384         foreach my $impossible ( keys %$error ) {
385             $template_params->{$impossible} = $$error{$impossible};
386             $template_params->{IMPOSSIBLE} = 1;
387             $blocker = 1;
388         }
389     }
390     my $iteminfo = GetBiblioFromItemNumber(undef, $barcode);
391     if( !$blocker || $force_allow_issue ){
392         my $confirm_required = 0;
393         unless($issueconfirmed){
394             #  Get the item title for more information
395             my $materials = $iteminfo->{'materials'};
396             my $avcode = GetAuthValCode('items.materials');
397             if ($avcode) {
398                 $materials = GetKohaAuthorisedValueLib($avcode, $materials);
399             }
400             $template_params->{additional_materials} = $materials;
401             $template_params->{itemhomebranch} = $iteminfo->{'homebranch'};
402
403             # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
404             foreach my $needsconfirmation ( keys %$question ) {
405                 $template_params->{$needsconfirmation} = $$question{$needsconfirmation};
406                 $template_params->{getTitleMessageIteminfo} = $iteminfo->{'title'};
407                 $template_params->{getBarcodeMessageIteminfo} = $iteminfo->{'barcode'};
408                 $template_params->{NEEDSCONFIRMATION} = 1;
409                 $template_params->{onsite_checkout} = $onsite_checkout;
410                 $confirm_required = 1;
411             }
412         }
413         unless($confirm_required) {
414             my $issue = AddIssue( $borrower, $barcode, $datedue, $cancelreserve, undef, undef, { onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew') } );
415             $template->param( issue => $issue );
416             $session->clear('auto_renew');
417             $inprocess = 1;
418         }
419     }
420
421     # FIXME If the issue is confirmed, we launch another time GetMemberIssuesAndFines, now display the issue count after issue
422     my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber);
423
424     if ($question->{RESERVE_WAITING} or $question->{RESERVED}){
425         $template->param(
426             reserveborrowernumber => $question->{'resborrowernumber'}
427         );
428     }
429
430     $template->param(
431         itembiblionumber => $getmessageiteminfo->{'biblionumber'}
432     );
433
434
435
436     $template_params->{issuecount} = $issue;
437
438     if ( $iteminfo ) {
439         $iteminfo->{subtitle} = GetRecordValue('subtitle', GetMarcBiblio($iteminfo->{biblionumber}), GetFrameworkCode($iteminfo->{biblionumber}));
440         $template_params->{item} = $iteminfo;
441     }
442     push @$checkout_infos, $template_params;
443   }
444   unless ( $batch ) {
445     $template->param( %{$checkout_infos->[0]} );
446     $template->param( barcode => $barcodes->[0] );
447   } else {
448     my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
449     $template->param(
450         checkout_infos => $checkout_infos,
451         confirmation_needed => $confirmation_needed,
452     );
453   }
454 }
455
456 # reload the borrower info for the sake of reseting the flags.....
457 if ($borrowernumber) {
458     $borrower = GetMemberDetails( $borrowernumber, 0 );
459 }
460
461 ##################################################################################
462 # BUILD HTML
463 # show all reserves of this borrower, and the position of the reservation ....
464 if ($borrowernumber) {
465     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } );
466     my $waiting_holds = $holds->waiting;
467     $template->param(
468         holds_count  => $holds->count(),
469         WaitingHolds => $waiting_holds,
470     );
471
472     $template->param( adultborrower => 1 ) if ( $borrower->{category_type} eq 'A' || $borrower->{category_type} eq 'I' );
473 }
474
475 #title
476 my $flags = $borrower->{'flags'};
477 foreach my $flag ( sort keys %$flags ) {
478     $flags->{$flag}->{'message'} =~ s#\n#<br />#g;
479     if ( $flags->{$flag}->{'noissues'} ) {
480         $template->param(
481             noissues => ($force_allow_issue) ? 0 : 'true',
482             forceallow => $force_allow_issue,
483         );
484         if ( $flag eq 'GNA' ) {
485             $template->param( gna => 'true' );
486         }
487         elsif ( $flag eq 'LOST' ) {
488             $template->param( lost => 'true' );
489         }
490         elsif ( $flag eq 'DBARRED' ) {
491             $template->param( dbarred => 'true' );
492         }
493         elsif ( $flag eq 'CHARGES' ) {
494             $template->param(
495                 charges    => 'true',
496                 chargesmsg => $flags->{'CHARGES'}->{'message'},
497                 chargesamount => $flags->{'CHARGES'}->{'amount'},
498                 charges_is_blocker => 1
499             );
500         }
501         elsif ( $flag eq 'CREDITS' ) {
502             $template->param(
503                 credits    => 'true',
504                 creditsmsg => $flags->{'CREDITS'}->{'message'},
505                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
506             );
507         }
508     }
509     else {
510         if ( $flag eq 'CHARGES' ) {
511             $template->param(
512                 charges    => 'true',
513                 chargesmsg => $flags->{'CHARGES'}->{'message'},
514                 chargesamount => $flags->{'CHARGES'}->{'amount'},
515             );
516         }
517         elsif ( $flag eq 'CREDITS' ) {
518             $template->param(
519                 credits    => 'true',
520                 creditsmsg => $flags->{'CREDITS'}->{'message'},
521                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
522             );
523         }
524         elsif ( $flag eq 'ODUES' ) {
525             $template->param(
526                 odues    => 'true',
527                 oduesmsg => $flags->{'ODUES'}->{'message'}
528             );
529
530             my $items = $flags->{$flag}->{'itemlist'};
531             if ( ! $query->param('module') || $query->param('module') ne 'returns' ) {
532                 $template->param( nonreturns => 'true' );
533             }
534         }
535         elsif ( $flag eq 'NOTES' ) {
536             $template->param(
537                 notes    => 'true',
538                 notesmsg => $flags->{'NOTES'}->{'message'}
539             );
540         }
541     }
542 }
543
544 my $amountold = $borrower->{flags} ? $borrower->{flags}->{'CHARGES'}->{'message'} || 0 : 0;
545 $amountold =~ s/^.*\$//;    # remove upto the $, if any
546
547 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
548
549 if ( $borrowernumber && $borrower->{'category_type'} eq 'C') {
550     my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
551     my $cnt = scalar(@$catcodes);
552     $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
553     $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
554 }
555
556 my $librarian_messages = Koha::Patron::Messages->search(
557     {
558         borrowernumber => $borrowernumber,
559         message_type => 'L',
560     }
561 );
562
563 my $patron_messages = Koha::Patron::Messages->search(
564     {
565         borrowernumber => $borrowernumber,
566         message_type => 'B',
567     }
568 );
569
570 my $fast_cataloging = 0;
571 if (defined getframeworkinfo('FA')) {
572     $fast_cataloging = 1 
573 }
574
575 if (C4::Context->preference('ExtendedPatronAttributes')) {
576     my $attributes = GetBorrowerAttributes($borrowernumber);
577     $template->param(
578         ExtendedPatronAttributes => 1,
579         extendedattributes => $attributes
580     );
581 }
582 my $view = $batch
583     ?'batch_checkout_view'
584     : 'circview';
585
586 my @relatives;
587 if ( $borrowernumber ) {
588     if ( my $patron = Koha::Patrons->find( $borrower->{borrowernumber} ) ) {
589         if ( my $guarantor = $patron->guarantor ) {
590             push @relatives, $guarantor->borrowernumber;
591             push @relatives, $_->borrowernumber for $patron->siblings;
592         } else {
593             push @relatives, $_->borrowernumber for $patron->guarantees;
594         }
595     }
596 }
597 my $relatives_issues_count =
598   Koha::Database->new()->schema()->resultset('Issue')
599   ->count( { borrowernumber => \@relatives } );
600
601 my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $borrower->{streettype} );
602
603 $template->param(%$borrower);
604
605 # Restore date if changed by holds and/or save stickyduedate to session
606 if ($restoreduedatespec || $stickyduedate) {
607     $duedatespec = $restoreduedatespec || $duedatespec;
608
609     if ($stickyduedate) {
610         $session->param( 'stickyduedate', $duedatespec );
611     }
612 } elsif (defined($duedatespec) && !defined($restoreduedatespec)) {
613     undef $duedatespec;
614 }
615
616 $template->param(
617     librarian_messages => $librarian_messages,
618     patron_messages   => $patron_messages,
619     findborrower      => $findborrower,
620     borrower          => $borrower,
621     borrowernumber    => $borrowernumber,
622     categoryname      => $borrower->{'description'},
623     branch            => $branch,
624     branchname        => GetBranchName($borrower->{'branchcode'}),
625     printer           => $printer,
626     printername       => $printer,
627     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
628     expiry            => $borrower->{'dateexpiry'},
629     roadtype          => $roadtype,
630     amountold         => $amountold,
631     barcodes          => $barcodes,
632     stickyduedate     => $stickyduedate,
633     duedatespec       => $duedatespec,
634     restoreduedatespec => $restoreduedatespec,
635     message           => $message,
636     totaldue          => sprintf('%.2f', $total),
637     inprocess         => $inprocess,
638     is_child          => ($borrowernumber && $borrower->{'category_type'} eq 'C'),
639     $view             => 1,
640     batch_allowed     => $batch_allowed,
641     AudioAlerts           => C4::Context->preference("AudioAlerts"),
642     fast_cataloging   => $fast_cataloging,
643     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
644     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
645     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
646     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
647     RoutingSerials => C4::Context->preference('RoutingSerials'),
648     relatives_issues_count => $relatives_issues_count,
649     relatives_borrowernumbers => \@relatives,
650 );
651
652 my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber});
653 $template->param( picture => 1 ) if $patron_image;
654
655 # get authorised values with type of BOR_NOTES
656
657 my $canned_notes = GetAuthorisedValues("BOR_NOTES");
658
659 $template->param(
660     debt_confirmed            => $debt_confirmed,
661     SpecifyDueDate            => $duedatespec_allow,
662     CircAutocompl             => C4::Context->preference("CircAutocompl"),
663     canned_bor_notes_loop     => $canned_notes,
664     debarments                => GetDebarments({ borrowernumber => $borrowernumber }),
665     todaysdate                => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
666 );
667
668 output_html_with_http_headers $query, $cookie, $template->output;