Bug 16272: Automatically switch an on-site checkout to a regular checkout when checke...
[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::Koha;   # GetPrinter
34 use C4::Circulation;
35 use C4::Utils::DataTables::Members;
36 use C4::Members;
37 use C4::Biblio;
38 use C4::Search;
39 use MARC::Record;
40 use C4::Reserves;
41 use Koha::Holds;
42 use C4::Context;
43 use CGI::Session;
44 use C4::Members::Attributes qw(GetBorrowerAttributes);
45 use Koha::Patron;
46 use Koha::Patron::Debarments qw(GetDebarments);
47 use Koha::DateUtils;
48 use Koha::Database;
49 use Koha::Patron::Messages;
50 use Koha::Patron::Images;
51 use Koha::SearchEngine;
52 use Koha::SearchEngine::Search;
53 use Koha::Patron::Modifications;
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 $override_high_holds     = $query->param('override_high_holds');
68 my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
69
70 my $sessionID = $query->cookie("CGISESSID") ;
71 my $session = get_session($sessionID);
72 if (!C4::Context->userenv){
73     if ($session->param('branch') eq 'NO_LIBRARY_SET'){
74         # no branch set we can't issue
75         print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
76         exit;
77     }
78 }
79
80 my $barcodes = [];
81 my $barcode =  $query->param('barcode');
82 # Barcode given by user could be '0'
83 if ( $barcode || ( defined($barcode) && $barcode eq '0' ) ) {
84     $barcodes = [ $barcode ];
85 } else {
86     my $filefh = $query->upload('uploadfile');
87     if ( $filefh ) {
88         while ( my $content = <$filefh> ) {
89             $content =~ s/[\r\n]*$//g;
90             push @$barcodes, $content if $content;
91         }
92     } elsif ( my $list = $query->param('barcodelist') ) {
93         push @$barcodes, split( /\s\n/, $list );
94         $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
95     } else {
96         @$barcodes = $query->multi_param('barcodes');
97     }
98 }
99
100 $barcodes = [ uniq @$barcodes ];
101
102 my $template_name = q|circ/circulation.tt|;
103 my $borrowernumber = $query->param('borrowernumber');
104 my $borrower = $borrowernumber ? GetMember( borrowernumber => $borrowernumber ) : undef;
105 my $batch = $query->param('batch');
106 my $batch_allowed = 0;
107 if ( $batch && C4::Context->preference('BatchCheckouts') ) {
108     $template_name = q|circ/circulation_batch_checkouts.tt|;
109     my @batch_category_codes = split '\|', C4::Context->preference('BatchCheckoutsValidCategories');
110     if ( grep {/^$borrower->{categorycode}$/} @batch_category_codes ) {
111         $batch_allowed = 1;
112     } else {
113         $barcodes = [];
114     }
115 }
116
117 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
118     {
119         template_name   => $template_name,
120         query           => $query,
121         type            => "intranet",
122         authnotrequired => 0,
123         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
124     }
125 );
126
127 my $force_allow_issue = $query->param('forceallow') || 0;
128 if (!C4::Auth::haspermission( C4::Context->userenv->{id} , { circulate => 'force_checkout' } )) {
129     $force_allow_issue = 0;
130 }
131
132 my $onsite_checkout = $query->param('onsite_checkout');
133
134 my @failedrenews = $query->multi_param('failedrenew');    # expected to be itemnumbers
135 our %renew_failed = ();
136 for (@failedrenews) { $renew_failed{$_} = 1; }
137
138 my @failedreturns = $query->multi_param('failedreturn');
139 our %return_failed = ();
140 for (@failedreturns) { $return_failed{$_} = 1; }
141
142 my $findborrower = $query->param('findborrower') || q{};
143 $findborrower =~ s|,| |g;
144
145 my $branch = C4::Context->userenv->{'branch'};
146
147 # If AutoLocation is not activated, we show the Circulation Parameters to chage settings of librarian
148 if (C4::Context->preference("AutoLocation") != 1) {
149     $template->param(ManualLocation => 1);
150 }
151
152 if (C4::Context->preference("DisplayClearScreenButton")) {
153     $template->param(DisplayClearScreenButton => 1);
154 }
155
156 for my $barcode ( @$barcodes ) {
157     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
158     $barcode = barcodedecode($barcode)
159         if( $barcode && C4::Context->preference('itemBarcodeInputFilter'));
160 }
161
162 my $stickyduedate  = $query->param('stickyduedate') || $session->param('stickyduedate');
163 my $duedatespec    = $query->param('duedatespec')   || $session->param('stickyduedate');
164 $duedatespec = eval { output_pref( { dt => dt_from_string( $duedatespec ), dateformat => 'iso', timeformat => '24hr' }); }
165     if ( $duedatespec );
166 my $restoreduedatespec  = $query->param('restoreduedatespec') || $duedatespec || $session->param('stickyduedate');
167 if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) {
168     undef $restoreduedatespec;
169 }
170 my $issueconfirmed = $query->param('issueconfirmed');
171 my $cancelreserve  = $query->param('cancelreserve');
172 my $print          = $query->param('print') || q{};
173 my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
174 my $charges        = $query->param('charges') || q{};
175
176 # Check if stickyduedate is turned off
177 if ( @$barcodes ) {
178     # was stickyduedate loaded from session?
179     if ( $stickyduedate && ! $query->param("stickyduedate") ) {
180         $session->clear( 'stickyduedate' );
181         $stickyduedate  = $query->param('stickyduedate');
182         $duedatespec    = $query->param('duedatespec');
183     }
184     $session->param('auto_renew', scalar $query->param('auto_renew'));
185 }
186 else {
187     $session->clear('auto_renew');
188 }
189
190 my ($datedue,$invalidduedate);
191
192 my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
193 if( $onsite_checkout && !$duedatespec_allow ) {
194     $datedue = output_pref({ dt => dt_from_string, dateonly => 1, dateformat => 'iso' });
195     $datedue .= ' 23:59:00';
196 } elsif( $duedatespec_allow ) {
197     if ( $duedatespec ) {
198         $datedue = eval { dt_from_string( $duedatespec ) };
199         if (! $datedue ) {
200             $invalidduedate = 1;
201             $template->param( IMPOSSIBLE=>1, INVALID_DATE=>$duedatespec );
202         }
203     }
204 }
205
206 # check and see if we should print
207 if ( @$barcodes == 0 && $print eq 'maybe' ) {
208     $print = 'yes';
209 }
210
211 my $inprocess = (@$barcodes == 0) ? '' : $query->param('inprocess');
212 if ( @$barcodes == 0 && $charges eq 'yes' ) {
213     $template->param(
214         PAYCHARGES     => 'yes',
215         borrowernumber => $borrowernumber
216     );
217 }
218
219 if ( $print eq 'yes' && $borrowernumber ne '' ) {
220     if ( C4::Context->boolean_preference('printcirculationslips') ) {
221         my $letter = IssueSlip($branch, $borrowernumber, "QUICK");
222         NetworkPrint($letter->{content});
223     }
224     $query->param( 'borrowernumber', '' );
225     $borrowernumber = '';
226 }
227
228 #
229 # STEP 2 : FIND BORROWER
230 # if there is a list of find borrowers....
231 #
232 my $message;
233 if ($findborrower) {
234     my $borrower = C4::Members::GetMember( cardnumber => $findborrower );
235     if ( $borrower ) {
236         $borrowernumber = $borrower->{borrowernumber};
237     } else {
238         my $dt_params = { iDisplayLength => -1 };
239         my $results = C4::Utils::DataTables::Members::search(
240             {
241                 searchmember => $findborrower,
242                 searchtype => 'contain',
243                 dt_params => $dt_params,
244             }
245         );
246         my $borrowers = $results->{patrons};
247         if ( scalar @$borrowers == 1 ) {
248             $borrowernumber = $borrowers->[0]->{borrowernumber};
249             $query->param( 'borrowernumber', $borrowernumber );
250             $query->param( 'barcode',           '' );
251         } elsif ( @$borrowers ) {
252             $template->param( borrowers => $borrowers );
253         } else {
254             $query->param( 'findborrower', '' );
255             $message = "'$findborrower'";
256         }
257     }
258 }
259
260 # get the borrower information.....
261 if ($borrowernumber) {
262     $borrower = GetMemberDetails( $borrowernumber, 0 );
263     my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
264
265     # Warningdate is the date that the warning starts appearing
266     my (  $today_year,   $today_month,   $today_day) = Today();
267     my ($warning_year, $warning_month, $warning_day) = split /-/, $borrower->{'dateexpiry'};
268     my (  $enrol_year,   $enrol_month,   $enrol_day) = split /-/, $borrower->{'dateenrolled'};
269     # if the expiry date is before today ie they have expired
270     if ( !$borrower->{'dateexpiry'} || $warning_year*$warning_month*$warning_day==0
271         || Date_to_Days($today_year,     $today_month, $today_day  ) 
272          > Date_to_Days($warning_year, $warning_month, $warning_day) )
273     {
274         #borrowercard expired, no issues
275         $template->param(
276             noissues => ($force_allow_issue) ? 0 : "1",
277             forceallow => $force_allow_issue,
278             expired => "1",
279         );
280     }
281     # check for NotifyBorrowerDeparture
282     elsif ( C4::Context->preference('NotifyBorrowerDeparture') &&
283             Date_to_Days(Add_Delta_Days($warning_year,$warning_month,$warning_day,- C4::Context->preference('NotifyBorrowerDeparture'))) <
284             Date_to_Days( $today_year, $today_month, $today_day ) ) 
285     {
286         # borrower card soon to expire warn librarian
287         $template->param( "warndeparture" => $borrower->{dateexpiry} ,
288                         );
289         if (C4::Context->preference('ReturnBeforeExpiry')){
290             $template->param("returnbeforeexpiry" => 1);
291         }
292     }
293     $template->param(
294         overduecount => $od,
295         issuecount   => $issue,
296         finetotal    => $fines
297     );
298
299     my $patron = Koha::Patrons->find( $borrowernumber );
300     if ( $patron and $patron->is_debarred ) {
301         $template->param(
302             'userdebarred'    => $borrower->{debarred},
303             'debarredcomment' => $borrower->{debarredcomment},
304         );
305
306         if ( $borrower->{debarred} ne "9999-12-31" ) {
307             $template->param( 'userdebarreddate' => $borrower->{debarred} );
308         }
309     }
310
311 }
312
313 #
314 # STEP 3 : ISSUING
315 #
316 #
317 if (@$barcodes) {
318   my $checkout_infos;
319   for my $barcode ( @$barcodes ) {
320     my $template_params = { barcode => $barcode };
321     # always check for blockers on issuing
322     my ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
323         $borrower,
324         $barcode, $datedue,
325         $inprocess,
326         undef,
327         {
328             onsite_checkout     => $onsite_checkout,
329             override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
330         }
331     );
332
333     my $blocker = $invalidduedate ? 1 : 0;
334
335     $template_params->{alert} = $alerts;
336     $template_params->{messages} = $messages;
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 $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED};
409             my $issue = AddIssue( $borrower, $barcode, $datedue, $cancelreserve, undef, undef, { onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew'), switch_onsite_checkout => $switch_onsite_checkout, } );
410             $template_params->{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 $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
561     $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
562     $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 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     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
633     expiry            => $borrower->{'dateexpiry'},
634     roadtype          => $roadtype,
635     amountold         => $amountold,
636     barcodes          => $barcodes,
637     stickyduedate     => $stickyduedate,
638     duedatespec       => $duedatespec,
639     restoreduedatespec => $restoreduedatespec,
640     message           => $message,
641     totaldue          => sprintf('%.2f', $total),
642     inprocess         => $inprocess,
643     is_child          => ($borrowernumber && $borrower->{'category_type'} eq 'C'),
644     $view             => 1,
645     batch_allowed     => $batch_allowed,
646     batch             => $batch,
647     AudioAlerts           => C4::Context->preference("AudioAlerts"),
648     fast_cataloging   => $fast_cataloging,
649     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
650     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
651     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
652     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
653     RoutingSerials => C4::Context->preference('RoutingSerials'),
654     relatives_issues_count => $relatives_issues_count,
655     relatives_borrowernumbers => \@relatives,
656 );
657
658 my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber});
659 $template->param( picture => 1 ) if $patron_image;
660
661 my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
662 $template->param(
663     debt_confirmed            => $debt_confirmed,
664     SpecifyDueDate            => $duedatespec_allow,
665     CircAutocompl             => C4::Context->preference("CircAutocompl"),
666     debarments                => GetDebarments({ borrowernumber => $borrowernumber }),
667     todaysdate                => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
668     has_modifications         => $has_modifications,
669     override_high_holds       => $override_high_holds,
670     nopermission              => scalar $query->param('nopermission'),
671 );
672
673 output_html_with_http_headers $query, $cookie, $template->output;