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