Bug 16429 - Fix root problem
[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 use Koha::Patron::Modifications;
55
56 use Date::Calc qw(
57   Today
58   Add_Delta_Days
59   Date_to_Days
60 );
61 use List::MoreUtils qw/uniq/;
62
63 #
64 # PARAMETERS READING
65 #
66 my $query = new CGI;
67
68 my $override_high_holds     = $query->param('override_high_holds');
69 my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
70
71 my $sessionID = $query->cookie("CGISESSID") ;
72 my $session = get_session($sessionID);
73 if (!C4::Context->userenv){
74     if ($session->param('branch') eq 'NO_LIBRARY_SET'){
75         # no branch set we can't issue
76         print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
77         exit;
78     }
79 }
80
81 my $barcodes = [];
82 my $barcode =  $query->param('barcode');
83 # Barcode given by user could be '0'
84 if ( $barcode || $barcode eq '0' ) {
85     $barcodes = [ $barcode ];
86 } else {
87     my $filefh = $query->upload('uploadfile');
88     if ( $filefh ) {
89         while ( my $content = <$filefh> ) {
90             $content =~ s/[\r\n]*$//g;
91             push @$barcodes, $content if $content;
92         }
93     } elsif ( my $list = $query->param('barcodelist') ) {
94         push @$barcodes, split( /\s\n/, $list );
95         $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
96     } else {
97         @$barcodes = $query->multi_param('barcodes');
98     }
99 }
100
101 $barcodes = [ uniq @$barcodes ];
102
103 my $template_name = q|circ/circulation.tt|;
104 my $borrowernumber = $query->param('borrowernumber');
105 my $borrower = $borrowernumber ? GetMember( borrowernumber => $borrowernumber ) : undef;
106 my $batch = $query->param('batch');
107 my $batch_allowed = 0;
108 if ( $batch && C4::Context->preference('BatchCheckouts') ) {
109     $template_name = q|circ/circulation_batch_checkouts.tt|;
110     my @batch_category_codes = split '\|', C4::Context->preference('BatchCheckoutsValidCategories');
111     if ( grep {/^$borrower->{categorycode}$/} @batch_category_codes ) {
112         $batch_allowed = 1;
113     } else {
114         $barcodes = [];
115     }
116 }
117
118 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
119     {
120         template_name   => $template_name,
121         query           => $query,
122         type            => "intranet",
123         authnotrequired => 0,
124         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
125     }
126 );
127
128 my $branches = GetBranches();
129
130 my $force_allow_issue = $query->param('forceallow') || 0;
131 if (!C4::Auth::haspermission( C4::Context->userenv->{id} , { circulate => 'force_checkout' } )) {
132     $force_allow_issue = 0;
133 }
134
135 my $onsite_checkout = $query->param('onsite_checkout');
136
137 my @failedrenews = $query->multi_param('failedrenew');    # expected to be itemnumbers
138 our %renew_failed = ();
139 for (@failedrenews) { $renew_failed{$_} = 1; }
140
141 my @failedreturns = $query->multi_param('failedreturn');
142 our %return_failed = ();
143 for (@failedreturns) { $return_failed{$_} = 1; }
144
145 my $findborrower = $query->param('findborrower') || q{};
146 $findborrower =~ s|,| |g;
147
148 my $branch = C4::Context->userenv->{'branch'};
149
150 # If AutoLocation is not activated, we show the Circulation Parameters to chage settings of librarian
151 if (C4::Context->preference("AutoLocation") != 1) {
152     $template->param(ManualLocation => 1);
153 }
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' }); }
168     if ( $duedatespec );
169 my $restoreduedatespec  = $query->param('restoreduedatespec') || $session->param('stickyduedate') || $duedatespec;
170 if ($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', $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 $borrower = C4::Members::GetMember( cardnumber => $findborrower );
238     if ( $borrower ) {
239         $borrowernumber = $borrower->{borrowernumber};
240     } else {
241         my $dt_params = { iDisplayLength => -1 };
242         my $results = C4::Utils::DataTables::Members::search(
243             {
244                 searchmember => $findborrower,
245                 searchtype => 'contain',
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     $borrower = GetMemberDetails( $borrowernumber, 0 );
266     my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
267
268     # Warningdate is the date that the warning starts appearing
269     my (  $today_year,   $today_month,   $today_day) = Today();
270     my ($warning_year, $warning_month, $warning_day) = split /-/, $borrower->{'dateexpiry'};
271     my (  $enrol_year,   $enrol_month,   $enrol_day) = split /-/, $borrower->{'dateenrolled'};
272     # if the expiry date is before today ie they have expired
273     if ( !$borrower->{'dateexpiry'} || $warning_year*$warning_month*$warning_day==0
274         || Date_to_Days($today_year,     $today_month, $today_day  ) 
275          > Date_to_Days($warning_year, $warning_month, $warning_day) )
276     {
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 ( C4::Context->preference('NotifyBorrowerDeparture') &&
286             Date_to_Days(Add_Delta_Days($warning_year,$warning_month,$warning_day,- C4::Context->preference('NotifyBorrowerDeparture'))) <
287             Date_to_Days( $today_year, $today_month, $today_day ) ) 
288     {
289         # borrower card soon to expire warn librarian
290         $template->param( "warndeparture" => $borrower->{dateexpiry} ,
291                         );
292         if (C4::Context->preference('ReturnBeforeExpiry')){
293             $template->param("returnbeforeexpiry" => 1);
294         }
295     }
296     $template->param(
297         overduecount => $od,
298         issuecount   => $issue,
299         finetotal    => $fines
300     );
301
302     if ( IsDebarred($borrowernumber) ) {
303         $template->param(
304             'userdebarred'    => $borrower->{debarred},
305             'debarredcomment' => $borrower->{debarredcomment},
306         );
307
308         if ( $borrower->{debarred} ne "9999-12-31" ) {
309             $template->param( 'userdebarreddate' => $borrower->{debarred} );
310         }
311     }
312
313 }
314
315 #
316 # STEP 3 : ISSUING
317 #
318 #
319 if (@$barcodes) {
320   my $checkout_infos;
321   for my $barcode ( @$barcodes ) {
322     my $template_params = { barcode => $barcode };
323     # always check for blockers on issuing
324     my ( $error, $question, $alerts ) = CanBookBeIssued(
325         $borrower,
326         $barcode, $datedue,
327         $inprocess,
328         undef,
329         {
330             onsite_checkout     => $onsite_checkout,
331             override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
332         }
333     );
334
335     my $blocker = $invalidduedate ? 1 : 0;
336
337     $template_params->{alert} = $alerts;
338
339     #  Get the item title for more information
340     my $getmessageiteminfo = GetBiblioFromItemNumber(undef,$barcode);
341     $template_params->{authvalcode_notforloan} =
342         C4::Koha::GetAuthValCode('items.notforloan', $getmessageiteminfo->{'frameworkcode'});
343
344     # Fix for bug 7494: optional checkout-time fallback search for a book
345
346     if ( $error->{'UNKNOWN_BARCODE'}
347         && C4::Context->preference("itemBarcodeFallbackSearch")
348         && not $batch
349     )
350     {
351      $template_params->{FALLBACK} = 1;
352
353         my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
354         my $query = "kw=" . $barcode;
355         my ( $searcherror, $results, $total_hits ) = $searcher->simple_search_compat($query, 0, 10);
356
357         # if multiple hits, offer options to librarian
358         if ( $total_hits > 0 ) {
359             my @options = ();
360             foreach my $hit ( @{$results} ) {
361                 my $chosen =
362                   TransformMarcToKoha( C4::Search::new_record_from_zebra('biblioserver',$hit) );
363
364                 # offer all barcodes individually
365                 if ( $chosen->{barcode} ) {
366                     foreach my $barcode ( sort split(/\s*\|\s*/, $chosen->{barcode}) ) {
367                         my %chosen_single = %{$chosen};
368                         $chosen_single{barcode} = $barcode;
369                         push( @options, \%chosen_single );
370                     }
371                 }
372             }
373             $template_params->{options} = \@options;
374         }
375     }
376
377     unless( $onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce") ) {
378         delete $question->{'DEBT'} if ($debt_confirmed);
379         foreach my $impossible ( keys %$error ) {
380             $template_params->{$impossible} = $$error{$impossible};
381             $template_params->{IMPOSSIBLE} = 1;
382             $blocker = 1;
383         }
384     }
385     my $iteminfo = GetBiblioFromItemNumber(undef, $barcode);
386     if( !$blocker || $force_allow_issue ){
387         my $confirm_required = 0;
388         unless($issueconfirmed){
389             #  Get the item title for more information
390             my $materials = $iteminfo->{'materials'};
391             my $avcode = GetAuthValCode('items.materials');
392             if ($avcode) {
393                 $materials = GetKohaAuthorisedValueLib($avcode, $materials);
394             }
395             $template_params->{additional_materials} = $materials;
396             $template_params->{itemhomebranch} = $iteminfo->{'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} = $iteminfo->{'title'};
402                 $template_params->{getBarcodeMessageIteminfo} = $iteminfo->{'barcode'};
403                 $template_params->{NEEDSCONFIRMATION} = 1;
404                 $template_params->{onsite_checkout} = $onsite_checkout;
405                 $confirm_required = 1;
406             }
407         }
408         unless($confirm_required) {
409             my $issue = AddIssue( $borrower, $barcode, $datedue, $cancelreserve, undef, undef, { onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew') } );
410             $template->param( issue => $issue );
411             $session->clear('auto_renew');
412             $inprocess = 1;
413         }
414     }
415
416     # FIXME If the issue is confirmed, we launch another time GetMemberIssuesAndFines, now display the issue count after issue
417     my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber);
418
419     if ($question->{RESERVE_WAITING} or $question->{RESERVED}){
420         $template->param(
421             reserveborrowernumber => $question->{'resborrowernumber'}
422         );
423     }
424
425     $template->param(
426         itembiblionumber => $getmessageiteminfo->{'biblionumber'}
427     );
428
429
430
431     $template_params->{issuecount} = $issue;
432
433     if ( $iteminfo ) {
434         $iteminfo->{subtitle} = GetRecordValue('subtitle', GetMarcBiblio($iteminfo->{biblionumber}), GetFrameworkCode($iteminfo->{biblionumber}));
435         $template_params->{item} = $iteminfo;
436     }
437     push @$checkout_infos, $template_params;
438   }
439   unless ( $batch ) {
440     $template->param( %{$checkout_infos->[0]} );
441     $template->param( barcode => $barcodes->[0] );
442   } else {
443     my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
444     $template->param(
445         checkout_infos => $checkout_infos,
446         confirmation_needed => $confirmation_needed,
447     );
448   }
449 }
450
451 # reload the borrower info for the sake of reseting the flags.....
452 if ($borrowernumber) {
453     $borrower = GetMemberDetails( $borrowernumber, 0 );
454 }
455
456 ##################################################################################
457 # BUILD HTML
458 # show all reserves of this borrower, and the position of the reservation ....
459 if ($borrowernumber) {
460     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } );
461     my $waiting_holds = $holds->waiting;
462     $template->param(
463         holds_count  => $holds->count(),
464         WaitingHolds => $waiting_holds,
465     );
466
467     $template->param( adultborrower => 1 ) if ( $borrower->{category_type} eq 'A' || $borrower->{category_type} eq 'I' );
468 }
469
470 #title
471 my $flags = $borrower->{'flags'};
472 foreach my $flag ( sort keys %$flags ) {
473     $flags->{$flag}->{'message'} =~ s#\n#<br />#g;
474     if ( $flags->{$flag}->{'noissues'} ) {
475         $template->param(
476             noissues => ($force_allow_issue) ? 0 : 'true',
477             forceallow => $force_allow_issue,
478         );
479         if ( $flag eq 'GNA' ) {
480             $template->param( gna => 'true' );
481         }
482         elsif ( $flag eq 'LOST' ) {
483             $template->param( lost => 'true' );
484         }
485         elsif ( $flag eq 'DBARRED' ) {
486             $template->param( dbarred => 'true' );
487         }
488         elsif ( $flag eq 'CHARGES' ) {
489             $template->param(
490                 charges    => 'true',
491                 chargesmsg => $flags->{'CHARGES'}->{'message'},
492                 chargesamount => $flags->{'CHARGES'}->{'amount'},
493                 charges_is_blocker => 1
494             );
495         }
496         elsif ( $flag eq 'CHARGES_GUARANTEES' ) {
497             $template->param(
498                 charges_guarantees    => 'true',
499                 chargesmsg_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'message'},
500                 chargesamount_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'amount'},
501                 charges_guarantees_is_blocker => 1
502             );
503         }
504         elsif ( $flag eq 'CREDITS' ) {
505             $template->param(
506                 credits    => 'true',
507                 creditsmsg => $flags->{'CREDITS'}->{'message'},
508                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
509             );
510         }
511     }
512     else {
513         if ( $flag eq 'CHARGES' ) {
514             $template->param(
515                 charges    => 'true',
516                 chargesmsg => $flags->{'CHARGES'}->{'message'},
517                 chargesamount => $flags->{'CHARGES'}->{'amount'},
518             );
519         }
520         elsif ( $flag eq 'CHARGES_GUARANTEES' ) {
521             $template->param(
522                 charges_guarantees    => 'true',
523                 chargesmsg_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'message'},
524                 chargesamount_guarantees => $flags->{'CHARGES_GUARANTEES'}->{'amount'},
525             );
526         }
527         elsif ( $flag eq 'CREDITS' ) {
528             $template->param(
529                 credits    => 'true',
530                 creditsmsg => $flags->{'CREDITS'}->{'message'},
531                 creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
532             );
533         }
534         elsif ( $flag eq 'ODUES' ) {
535             $template->param(
536                 odues    => 'true',
537                 oduesmsg => $flags->{'ODUES'}->{'message'}
538             );
539
540             my $items = $flags->{$flag}->{'itemlist'};
541             if ( ! $query->param('module') || $query->param('module') ne 'returns' ) {
542                 $template->param( nonreturns => 'true' );
543             }
544         }
545         elsif ( $flag eq 'NOTES' ) {
546             $template->param(
547                 notes    => 'true',
548                 notesmsg => $flags->{'NOTES'}->{'message'}
549             );
550         }
551     }
552 }
553
554 my $amountold = $borrower->{flags} ? $borrower->{flags}->{'CHARGES'}->{'message'} || 0 : 0;
555 $amountold =~ s/^.*\$//;    # remove upto the $, if any
556
557 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
558
559 if ( $borrowernumber && $borrower->{'category_type'} eq 'C') {
560     my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
561     my $cnt = scalar(@$catcodes);
562     $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
563     $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
564 }
565
566 my $librarian_messages = Koha::Patron::Messages->search(
567     {
568         borrowernumber => $borrowernumber,
569         message_type => 'L',
570     }
571 );
572
573 my $patron_messages = Koha::Patron::Messages->search(
574     {
575         borrowernumber => $borrowernumber,
576         message_type => 'B',
577     }
578 );
579
580 my $fast_cataloging = 0;
581 if (defined getframeworkinfo('FA')) {
582     $fast_cataloging = 1 
583 }
584
585 if (C4::Context->preference('ExtendedPatronAttributes')) {
586     my $attributes = GetBorrowerAttributes($borrowernumber);
587     $template->param(
588         ExtendedPatronAttributes => 1,
589         extendedattributes => $attributes
590     );
591 }
592 my $view = $batch
593     ?'batch_checkout_view'
594     : 'circview';
595
596 my @relatives;
597 if ( $borrowernumber ) {
598     if ( my $patron = Koha::Patrons->find( $borrower->{borrowernumber} ) ) {
599         if ( my $guarantor = $patron->guarantor ) {
600             push @relatives, $guarantor->borrowernumber;
601             push @relatives, $_->borrowernumber for $patron->siblings;
602         } else {
603             push @relatives, $_->borrowernumber for $patron->guarantees;
604         }
605     }
606 }
607 my $relatives_issues_count =
608   Koha::Database->new()->schema()->resultset('Issue')
609   ->count( { borrowernumber => \@relatives } );
610
611 my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $borrower->{streettype} );
612
613 $template->param(%$borrower);
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     librarian_messages => $librarian_messages,
628     patron_messages   => $patron_messages,
629     findborrower      => $findborrower,
630     borrower          => $borrower,
631     borrowernumber    => $borrowernumber,
632     categoryname      => $borrower->{'description'},
633     branch            => $branch,
634     branchname        => GetBranchName($borrower->{'branchcode'}),
635     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
636     expiry            => $borrower->{'dateexpiry'},
637     roadtype          => $roadtype,
638     amountold         => $amountold,
639     barcodes          => $barcodes,
640     stickyduedate     => $stickyduedate,
641     duedatespec       => $duedatespec,
642     restoreduedatespec => $restoreduedatespec,
643     message           => $message,
644     totaldue          => sprintf('%.2f', $total),
645     inprocess         => $inprocess,
646     is_child          => ($borrowernumber && $borrower->{'category_type'} eq 'C'),
647     $view             => 1,
648     batch_allowed     => $batch_allowed,
649     AudioAlerts           => C4::Context->preference("AudioAlerts"),
650     fast_cataloging   => $fast_cataloging,
651     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
652     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
653     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
654     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
655     RoutingSerials => C4::Context->preference('RoutingSerials'),
656     relatives_issues_count => $relatives_issues_count,
657     relatives_borrowernumbers => \@relatives,
658 );
659
660 my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber});
661 $template->param( picture => 1 ) if $patron_image;
662
663 # get authorised values with type of BOR_NOTES
664
665 my $canned_notes = GetAuthorisedValues("BOR_NOTES");
666
667 $template->param(
668     debt_confirmed            => $debt_confirmed,
669     SpecifyDueDate            => $duedatespec_allow,
670     CircAutocompl             => C4::Context->preference("CircAutocompl"),
671     canned_bor_notes_loop     => $canned_notes,
672     debarments                => GetDebarments({ borrowernumber => $borrowernumber }),
673     todaysdate                => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
674     modifications             => Koha::Patron::Modifications->GetModifications({ borrowernumber => $borrowernumber }),
675     override_high_holds       => $override_high_holds,
676 );
677
678 output_html_with_http_headers $query, $cookie, $template->output;