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