Bug 16122: Increment items.localuse
[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 # FIXME There are too many calls to Koha::Patrons->find in this script
26
27 use Modern::Perl;
28 use CGI qw ( -utf8 );
29 use URI::Escape qw( uri_escape_utf8 );
30 use DateTime;
31 use DateTime::Duration;
32 use Scalar::Util qw( blessed looks_like_number );
33 use Try::Tiny;
34 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
35 use C4::Auth qw( get_session get_template_and_user );
36 use C4::Koha;
37 use C4::Circulation qw( barcodedecode CanBookBeIssued AddIssue AddReturn );
38 use C4::Members;
39 use C4::Biblio qw( TransformMarcToKoha );
40 use C4::Search qw( new_record_from_zebra );
41 use C4::Reserves qw( ModReserveAffect );
42 use Koha::Holds;
43 use C4::Context;
44 use CGI::Session;
45 use Koha::AuthorisedValues;
46 use Koha::CsvProfiles;
47 use Koha::Patrons;
48 use Koha::DateUtils qw( dt_from_string );
49 use Koha::Patron::Restriction::Types;
50 use Koha::Plugins;
51 use Koha::Database;
52 use Koha::BiblioFrameworks;
53 use Koha::Items;
54 use Koha::SearchEngine;
55 use Koha::SearchEngine::Search;
56 use Koha::Patron::Modifications;
57 use Koha::Token;
58
59 use List::MoreUtils qw( uniq );
60
61 #
62 # PARAMETERS READING
63 #
64 my $query = CGI->new;
65
66 my $borrowernumber = $query->param('borrowernumber');
67 my $barcodes       = [];
68 my $barcode        = $query->param('barcode');
69
70
71 # Barcode given by user could be '0'
72 if ( $barcode || ( defined($barcode) && $barcode eq '0' ) ) {
73     $barcodes = [ $barcode ];
74 } else {
75     my $filefh = $query->upload('uploadfile');
76     if ( $filefh ) {
77         while ( my $content = <$filefh> ) {
78             $content =~ s/[\r\n]*$//g;
79             push @$barcodes, $content if $content;
80         }
81     } elsif ( my $list = $query->param('barcodelist') ) {
82         push @$barcodes, split( /\s\n/, $list );
83         $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
84     } else {
85         @$barcodes = $query->multi_param('barcodes');
86     }
87 }
88 $barcodes = [ uniq @$barcodes ];
89
90 my $template_name = q|circ/circulation.tt|;
91 my $patron = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : undef;
92 my $batch = $query->param('batch');
93 my $batch_allowed = 0;
94 if ( $batch && C4::Context->preference('BatchCheckouts') ) {
95     $template_name = q|circ/circulation_batch_checkouts.tt|;
96     my @batch_category_codes = split ',', C4::Context->preference('BatchCheckoutsValidCategories');
97     my $categorycode = $patron->categorycode;
98     if ( $categorycode && grep { $_ eq $categorycode } @batch_category_codes ) {
99         $batch_allowed = 1;
100     } else {
101         $barcodes = [];
102     }
103 }
104
105 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
106     {
107         template_name   => $template_name,
108         query           => $query,
109         type            => "intranet",
110         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
111     }
112 );
113
114 my $op                      = $query->param('op');
115 my $override_high_holds     = $query->param('override_high_holds');
116 my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
117
118 my $sessionID = $query->cookie("CGISESSID");
119 my $session   = get_session($sessionID);
120
121 my $userenv = C4::Context->userenv;
122 my $branch  = $userenv->{'branch'} // '';
123 my $desk_id = $userenv->{"desk_id"} || '';
124
125 my $findborrower;
126 my $autoswitched;
127
128 if ( C4::Context->preference("AutoSwitchPatron") && $barcode ) {
129     my $new_barcode = $barcode;
130     Koha::Plugins->call( 'patron_barcode_transform', \$new_barcode );
131     if ( Koha::Patrons->search( { cardnumber => $new_barcode } )->count() > 0 ) {
132         $findborrower = $barcode;
133         undef $barcode;
134         undef $borrowernumber;
135         undef $patron;
136         $barcodes = [];
137         $autoswitched = 1;
138     }
139 }
140 $findborrower ||= $query->param('findborrower') || q{};
141 $findborrower =~ s|,| |g;
142
143 if ( $op eq 'cud-confirm_hold' && $query->param('confirm_hold') ) {
144     my $reserve_id          = $query->param('confirm_hold');
145     my $hold_branch         = $query->param('hold_branch');
146     my $hold_itemnumber     = $query->param('hold_itemnumber');
147     my $hold_borrowernumber = $query->param('hold_borrowernumber');
148     my $diffBranchSend      = ( $branch ne $hold_branch );
149
150     # diffBranchSend tells ModReserveAffect whether document is expected in this library or not,
151     # i.e., whether to apply waiting status
152     ModReserveAffect( $hold_itemnumber, $hold_borrowernumber, $diffBranchSend, $reserve_id, $desk_id );
153 }
154
155
156 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
157
158 my $force_allow_issue = $query->param('forceallow') || 0;
159 if (!C4::Auth::haspermission( $userenv->{id} , { circulate => 'force_checkout' } )) {
160     $force_allow_issue = 0;
161 }
162 my $onsite_checkout = $query->param('onsite_checkout');
163
164 if (C4::Context->preference("OnSiteCheckoutAutoCheck") && $onsite_checkout eq "on") {
165     $template->param(onsite_checkout => $onsite_checkout);
166 }
167
168 my @failedrenews = $query->multi_param('failedrenew');    # expected to be itemnumbers
169 our %renew_failed = ();
170 for (@failedrenews) { $renew_failed{$_} = 1; }
171
172 my @failedreturns = $query->multi_param('failedreturn');
173 our %return_failed = ();
174 for (@failedreturns) { $return_failed{$_} = 1; }
175
176 for my $barcode ( @$barcodes ) {
177     $barcode = barcodedecode( $barcode ) if $barcode;
178 }
179
180 my $stickyduedate  = $query->param('stickyduedate') || $session->param('stickyduedate');
181 my $duedatespec    = $query->param('duedatespec')   || $session->param('stickyduedate');
182 my $restoreduedatespec  = $query->param('restoreduedatespec') || $duedatespec || $session->param('stickyduedate');
183 if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) {
184     undef $restoreduedatespec;
185 }
186 my $issueconfirmed = $query->param('issueconfirmed');
187 my $cancelreserve  = $query->param('cancelreserve');
188 my $cancel_recall  = $query->param('cancel_recall');
189 my $recall_id      = $query->param('recall_id');
190 my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
191 my $charges        = $query->param('charges') || q{};
192
193 # Check if stickyduedate is turned off
194 if ( @$barcodes ) {
195     # was stickyduedate loaded from session?
196     if ( $stickyduedate && ! $query->param("stickyduedate") ) {
197         $session->clear( 'stickyduedate' );
198         $stickyduedate  = $query->param('stickyduedate');
199         $duedatespec    = $query->param('duedatespec');
200     }
201     $session->param('auto_renew', scalar $query->param('auto_renew'));
202 }
203 else {
204     $session->clear('auto_renew');
205 }
206
207 $template->param( auto_renew => $session->param('auto_renew') );
208
209 my ($datedue,$invalidduedate);
210
211 my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
212 if( $onsite_checkout && !$duedatespec_allow ) {
213     $datedue = dt_from_string()->truncate(to => 'day');
214     $datedue->set_hour(23);
215     $datedue->set_minute(59);
216 } elsif( $duedatespec_allow ) {
217     if ( $duedatespec ) {
218         $datedue = eval { dt_from_string( $duedatespec ) };
219         if (! $datedue ) {
220             $invalidduedate = 1;
221             $template->param( IMPOSSIBLE=>1, INVALID_DATE=>$duedatespec );
222         }
223     }
224 }
225 my $reduced_datedue = $query->param('reduceddue');
226 if ( $reduced_datedue ) {
227     $datedue = dt_from_string( $reduced_datedue );
228 }
229
230 my $inprocess = (@$barcodes == 0) ? '' : $query->param('inprocess');
231 if ( @$barcodes == 0 && $charges eq 'yes' ) {
232     $template->param(
233         PAYCHARGES     => 'yes',
234         borrowernumber => $borrowernumber
235     );
236 }
237
238 #
239 # STEP 2 : FIND BORROWER
240 # if there is a list of find borrowers....
241 #
242 my $message;
243 if ($findborrower) {
244     Koha::Plugins->call( 'patron_barcode_transform', \$findborrower );
245     my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
246     if ( $patron ) {
247         $borrowernumber = $patron->borrowernumber;
248     } else {
249         print $query->redirect( "/cgi-bin/koha/members/member.pl?quicksearch=1&circsearch=1&searchmember=" . uri_escape_utf8($findborrower) );
250         exit;
251     }
252 }
253
254 # get the borrower information.....
255 my $balance = 0;
256 $patron ||= Koha::Patrons->find( $borrowernumber ) if $borrowernumber;
257 if ($patron) {
258
259     $template->param( borrowernumber => $patron->borrowernumber );
260     output_and_exit_if_error( $query, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
261
262     my $overdues = $patron->overdues;
263     my $issues = $patron->checkouts;
264     $balance = $patron->account->balance;
265
266
267     # if the expiry date is before today ie they have expired
268     if ( $patron->is_expired ) {
269         #borrowercard expired, no issues
270         $template->param(
271             noissues => ($force_allow_issue) ? 0 : "1",
272             forceallow => $force_allow_issue,
273             expired => "1",
274         );
275     }
276     # check for NotifyBorrowerDeparture
277     elsif ( $patron->is_going_to_expire ) {
278         # borrower card soon to expire warn librarian
279         $template->param( "warndeparture" => $patron->dateexpiry ,
280                         );
281         if (C4::Context->preference('ReturnBeforeExpiry')){
282             $template->param("returnbeforeexpiry" => 1);
283         }
284     }
285     $template->param(
286         overduecount => $overdues->count,
287         issuecount   => $issues->count,
288         finetotal    => $balance,
289     );
290
291     if ( $patron and $patron->is_debarred ) {
292         $template->param(
293             'userdebarred'    => $patron->debarred,
294             'debarredcomment' => $patron->debarredcomment,
295             'debarredsince'   => $patron->restrictions->search()->single->created,
296         );
297
298         if ( $patron->debarred ne "9999-12-31" ) {
299             $template->param( 'userdebarreddate' => $patron->debarred );
300         }
301     }
302
303     # Calculate and display patron's age
304     if ( !$patron->is_valid_age ) {
305         $template->param( age_limitations => 1 );
306         $template->param( age_low => $patron->category->dateofbirthrequired );
307         $template->param( age_high => $patron->category->upperagelimit );
308     }
309
310     unless (
311         Koha::Patron::Categories->search_with_library_limits( { 'me.categorycode' => $patron->categorycode } )->count )
312     {
313         $template->param( limited_category => 1 );
314     }
315 }
316
317 #
318 # STEP 3 : ISSUING
319 #
320 #
321 if (@$barcodes && $op eq 'cud-checkout') {
322     my $checkout_infos;
323     for my $barcode ( @$barcodes ) {
324
325         my $template_params = {
326             barcode         => $barcode,
327             onsite_checkout => $onsite_checkout,
328         };
329
330         # always check for blockers on issuing
331         my ( $issuingimpossible, $needsconfirmation, $alerts, $messages );
332         try {
333             ( $issuingimpossible, $needsconfirmation, $alerts, $messages ) = CanBookBeIssued(
334                 $patron,
335                 $barcode, $datedue,
336                 $inprocess,
337                 undef,
338                 {
339                     onsite_checkout     => $onsite_checkout,
340                     override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
341                 }
342             );
343         } catch {
344             die $_ unless blessed $_ && $_->can('rethrow');
345
346             if ( $_->isa('Koha::Exceptions::Calendar::NoOpenDays') ) {
347                 $issuingimpossible = { NO_OPEN_DAYS => 1 };
348             } else {
349                 $_->rethrow;
350             }
351         };
352
353     my $blocker = $invalidduedate ? 1 : 0;
354
355     $template_params->{alert} = $alerts;
356     $template_params->{messages} = $messages;
357
358     my $item = Koha::Items->find({ barcode => $barcode });
359
360     my $biblio;
361     if ( $item ) {
362         $biblio = $item->biblio;
363     }
364
365     if ( $issuingimpossible->{'STATS'} ) {
366         $template->param( STATS => 1 );
367
368         if ( $item->onloan ) {
369             my ( $stats_return, $stats_messages, $stats_iteminformation, $stats_borrower ) =
370                 AddReturn( $item->barcode, C4::Context->userenv->{'branch'}, undef, undef, 1 );
371
372             $template->param(
373                 CHECKEDIN => $stats_return,
374                 MESSAGES  => $stats_messages,
375                 ITEM      => $stats_iteminformation,
376                 BORROWER  => $stats_borrower,
377             );
378         }
379
380         #increment items.localuse
381         my $localuse_count = $item->localuse;
382         $localuse_count++;
383         $item->localuse( $localuse_count )->store;
384     }
385     # Fix for bug 7494: optional checkout-time fallback search for a book
386
387     if ( $issuingimpossible->{'UNKNOWN_BARCODE'}
388         && C4::Context->preference("itemBarcodeFallbackSearch")
389         && not $batch
390     )
391     {
392      $template_params->{FALLBACK} = 1;
393
394         my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
395         my $query = "kw=" . $barcode;
396         my ( $searcherror, $results, $total_hits ) = $searcher->simple_search_compat($query, 0, 10);
397
398         # if multiple hits, offer options to librarian
399         if ( $total_hits > 0 ) {
400             my @barcodes;
401             foreach my $hit ( @{$results} ) {
402                 my $chosen = # Maybe easier to retrieve the itemnumber from $hit?
403                   TransformMarcToKoha({ record => C4::Search::new_record_from_zebra('biblioserver',$hit) });
404
405                 # offer all barcodes individually
406                 if ( $chosen->{barcode} ) {
407                     push @barcodes, sort split(/\s*\|\s*/, $chosen->{barcode});
408                 }
409             }
410             my $items = Koha::Items->search({ barcode => {-in => \@barcodes}});
411             $template_params->{options} = $items;
412         }
413     }
414
415     # Only some errors will block when performing forced onsite checkout,
416     # for other cases all errors will block
417     my @blocking_error_codes =
418         ( $onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce") )
419         ? qw( UNKNOWN_BARCODE NO_OPEN_DAYS )
420         : ( keys %$issuingimpossible );
421
422     if ( $issuingimpossible->{BOOKED_TO_ANOTHER} ) {
423         $template_params->{BOOKED_TO_ANOTHER} = $issuingimpossible->{BOOKED_TO_ANOTHER};
424         $template_params->{IMPOSSIBLE}        = 1;
425         $blocker                              = 1;
426     }
427
428     foreach my $code ( @blocking_error_codes ) {
429         if ($issuingimpossible->{$code}) {
430             $template_params->{$code} = $issuingimpossible->{$code};
431
432             $template_params->{IMPOSSIBLE} = 1;
433             $blocker = 1;
434         }
435     }
436
437     delete $needsconfirmation->{'DEBT'} if ($debt_confirmed);
438
439     if( $item and ( !$blocker or $force_allow_issue ) ){
440         my $confirm_required = 0;
441         unless($issueconfirmed){
442             #  Get the item title for more information
443             my $materials = $item->materials;
444             my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.materials', authorised_value => $materials });
445             $materials = $descriptions->{lib} // $materials;
446             $template_params->{ADDITIONAL_MATERIALS} = $materials;
447             $template_params->{itemhomebranch} = $item->homebranch;
448
449             # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
450             foreach my $needsconfirmation_key ( keys %$needsconfirmation ) {
451                 $template_params->{$needsconfirmation_key} = $needsconfirmation->{$needsconfirmation_key};
452                 $template_params->{getTitleMessageIteminfo} = $biblio->title;
453                 $template_params->{getBarcodeMessageIteminfo} = $item->barcode;
454                 $template_params->{NEEDSCONFIRMATION} = 1;
455                 $confirm_required = 1;
456                 if ( $needsconfirmation_key eq 'BOOKED_TO_ANOTHER' ) {
457                     my $reduceddue =
458                         dt_from_string( $$needsconfirmation{$needsconfirmation_key}->start_date )->subtract( days => 1 );
459                     $template_params->{reduceddue} = $reduceddue;
460                 }
461             }
462         }
463         unless ($confirm_required) {
464             my $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED};
465             if ( C4::Context->preference('UseRecalls') && !$recall_id ) {
466                 my $recall = Koha::Recalls->find(
467                     {
468                         biblio_id => $item->biblionumber,
469                         item_id   => [ undef,       $item->itemnumber ],
470                         status    => [ 'requested', 'waiting' ],
471                         completed => 0,
472                         patron_id => $patron->borrowernumber,
473                     }
474                 );
475                 $recall_id = ( $recall and $recall->id ) ? $recall->id : undef;
476             }
477
478             # If booked (alerts or confirmation) update datedue to end of booking
479             if ( my $booked = $needsconfirmation->{BOOKED_EARLY} // $alerts->{BOOKED} ) {
480                 $datedue = $booked->end_date;
481             }
482             my $issue = AddIssue(
483                 $patron, $barcode, $datedue,
484                 $cancelreserve,
485                 undef, undef,
486                 {
487                     onsite_checkout        => $onsite_checkout,        auto_renew    => $session->param('auto_renew'),
488                     switch_onsite_checkout => $switch_onsite_checkout, cancel_recall => $cancel_recall,
489                     recall_id              => $recall_id,
490                 }
491             );
492             $template_params->{issue} = $issue;
493             $session->clear('auto_renew');
494             $inprocess = 1;
495         }
496     }
497
498     if ($needsconfirmation->{RESERVE_WAITING} or $needsconfirmation->{RESERVED} or $needsconfirmation->{TRANSFERRED} or $needsconfirmation->{PROCESSING}){
499         $template->param(
500             reserveborrowernumber => $needsconfirmation->{'resborrowernumber'},
501             reserve_id => $needsconfirmation->{reserve_id},
502         );
503     }
504
505
506     # FIXME If the issue is confirmed, we launch another time checkouts->count, now display the issue count after issue
507     $patron = Koha::Patrons->find( $borrowernumber );
508     $template_params->{issuecount} = $patron->checkouts->count;
509
510     if ( $item ) {
511         $template_params->{item} = $item;
512         $template_params->{biblio} = $biblio;
513         $template_params->{itembiblionumber} = $biblio->biblionumber;
514     }
515     push @$checkout_infos, $template_params;
516   }
517   unless ( $batch ) {
518     $template->param( %{$checkout_infos->[0]} );
519     $template->param( barcode => $barcodes->[0] );
520   } else {
521     my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
522     $template->param(
523         checkout_infos      => $checkout_infos,
524         onsite_checkout     => $onsite_checkout,
525         confirmation_needed => $confirmation_needed,
526     );
527   }
528 }
529
530 ##################################################################################
531 # BUILD HTML
532 # show all reserves of this borrower, and the position of the reservation ....
533 if ($patron) {
534     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } ); # FIXME must be Koha::Patron->holds
535     my $waiting_holds = $holds->waiting;
536     $template->param(
537         holds_count  => $holds->count(),
538         WaitingHolds => $waiting_holds,
539     );
540
541     if ( C4::Context->preference('UseRecalls') ) {
542         my $waiting_recalls = $patron->recalls->search({ status => 'waiting' });
543         $template->param(
544             recalls => $patron->recalls->filter_by_current->search({},{ order_by => { -asc => 'created_date' } }),
545             specific_patron => 1,
546             waiting_recalls => $waiting_recalls,
547         );
548     }
549 }
550
551 if ( $patron ) {
552     my $noissues;
553     if ( $patron->gonenoaddress ) {
554         $template->param( gonenoaddress => 1 );
555         $noissues = 1;
556     }
557     if ( $patron->lost ) {
558         $template->param( lost=> 1 );
559         $noissues = 1;
560     }
561     if ( $patron->is_debarred ) {
562         $template->param( is_debarred=> 1 );
563         $noissues = 1;
564     }
565     if ( $patron->borrowernumber eq C4::Context->preference("AnonymousPatron") ) {
566         $template->param( is_anonymous => 1 );
567         $noissues = 1;
568     }
569     my $account = $patron->account;
570     if( ( my $owing = $account->non_issues_charges ) > 0 ) {
571         my $noissuescharge = C4::Context->preference("noissuescharge") || 5; # FIXME If noissuescharge == 0 then 5, why??
572         $noissues ||= ( not C4::Context->preference("AllowFineOverride") and ( $owing > $noissuescharge ) );
573         $template->param(
574             charges => 1,
575             chargesamount => $owing,
576         )
577     } elsif ( $balance < 0 ) {
578         $template->param(
579             credits => 1,
580             creditsamount => -$balance,
581         );
582     }
583
584     # Check the debt of this patrons guarantors *and* the guarantees of those guarantors
585     my $no_issues_charge_guarantors = C4::Context->preference("NoIssuesChargeGuarantorsWithGuarantees");
586     if ( $no_issues_charge_guarantors ) {
587         my $guarantors_non_issues_charges = $patron->relationships_debt({ include_guarantors => 1, only_this_guarantor => 0, include_this_patron => 1 });
588
589         if ( $guarantors_non_issues_charges > $no_issues_charge_guarantors ) {
590             $template->param(
591                 charges_guarantors_guarantees => $guarantors_non_issues_charges
592             );
593             $noissues = 1 unless C4::Context->preference("allowfineoverride");
594         }
595     }
596
597     my $no_issues_charge_guarantees = C4::Context->preference("NoIssuesChargeGuarantees");
598     $no_issues_charge_guarantees = undef unless looks_like_number( $no_issues_charge_guarantees );
599     if ( defined $no_issues_charge_guarantees ) {
600         my $guarantees_non_issues_charges = 0;
601         my $guarantees = $patron->guarantee_relationships->guarantees;
602         while ( my $g = $guarantees->next ) {
603             $guarantees_non_issues_charges += $g->account->non_issues_charges;
604         }
605         if ( $guarantees_non_issues_charges > $no_issues_charge_guarantees ) {
606             $template->param(
607                 charges_guarantees    => 1,
608                 chargesamount_guarantees => $guarantees_non_issues_charges,
609             );
610             $noissues = 1 unless C4::Context->preference("allowfineoverride");
611         }
612     }
613
614     if ( $patron->has_overdues ) {
615         $template->param( odues => 1 );
616     }
617
618     if ( $patron->borrowernotes ) {
619         my $borrowernotes = $patron->borrowernotes;
620         $borrowernotes =~ s#\n#<br />#g;
621         $template->param(
622             notes =>1,
623             notesmsg => $borrowernotes,
624         )
625     }
626
627     if ( $noissues ) {
628         $template->param(
629             noissues => ($force_allow_issue) ? 0 : 'true',
630             forceallow => $force_allow_issue,
631         );
632     }
633
634     my $patron_messages = $patron->messages->search(
635         {},
636         {
637            join => 'manager',
638            '+select' => ['manager.surname', 'manager.firstname' ],
639            '+as' => ['manager_surname', 'manager_firstname'],
640         }
641     );
642     $template->param( patron_messages => $patron_messages );
643
644     if ( C4::Context->preference("WaitingNotifyAtCheckout") ) {
645         my $waiting_holds = $patron->holds->search( { found => 'W', branchcode => $branch } );
646         $template->param( waiting_holds => $waiting_holds );
647     }
648 }
649
650 my $fast_cataloging = 0;
651 if ( Koha::BiblioFrameworks->find('FA') ) {
652     $fast_cataloging = 1 
653 }
654
655 my $view = $batch
656     ?'batch_checkout_view'
657     : 'circview';
658
659 my @relatives;
660 if ( $patron ) {
661     if ( my @guarantors = $patron->guarantor_relationships()->guarantors->as_list ) {
662         push( @relatives, $_->id ) for @guarantors;
663         push( @relatives, $_->id ) for $patron->siblings->as_list;
664     } else {
665         push( @relatives, $_->id ) for $patron->guarantee_relationships()->guarantees->as_list;
666     }
667 }
668 my $relatives_issues_count =
669   Koha::Database->new()->schema()->resultset('Issue')
670   ->count( { borrowernumber => \@relatives } );
671
672 if ( $patron ) {
673     my $av = Koha::AuthorisedValues->search({ category => 'ROADTYPE', authorised_value => $patron->streettype });
674     my $roadtype = $av->count ? $av->next->lib : '';
675     $template->param(
676         roadtype          => $roadtype,
677         patron            => $patron,
678         categoryname      => $patron->category->description,
679         expiry            => $patron->dateexpiry,
680     );
681 }
682
683 # Restore date if changed by holds and/or save stickyduedate to session
684 if ($restoreduedatespec || $stickyduedate) {
685     $duedatespec = $restoreduedatespec || $duedatespec;
686
687     if ($stickyduedate) {
688         $session->param( 'stickyduedate', $duedatespec );
689     }
690 } elsif (defined($duedatespec) && !defined($restoreduedatespec)) {
691     undef $duedatespec;
692 }
693
694 $template->param(
695     borrowernumber    => $borrowernumber,
696     branch            => $branch,
697     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
698     barcodes          => $barcodes,
699     stickyduedate     => $stickyduedate,
700     duedatespec       => $duedatespec,
701     restoreduedatespec => $restoreduedatespec,
702     message           => $message,
703     totaldue          => sprintf('%.2f', $balance), # FIXME not used in template?
704     inprocess         => $inprocess,
705     $view             => 1,
706     batch_allowed     => $batch_allowed,
707     batch             => $batch,
708     AudioAlerts           => C4::Context->preference("AudioAlerts"),
709     fast_cataloging   => $fast_cataloging,
710     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
711     RoutingSerials => C4::Context->preference('RoutingSerials'),
712     relatives_issues_count => $relatives_issues_count,
713     relatives_borrowernumbers => \@relatives,
714 );
715
716
717 if ( C4::Context->preference("ExportCircHistory") ) {
718     $template->param(csv_profiles => Koha::CsvProfiles->search({ type => 'marc' }));
719 }
720
721 my ( $has_modifications, $patron_lists_count);
722 if ( $patron ) {
723     $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
724     $patron_lists_count = $patron->get_lists_with_patron->count();
725 }
726 $template->param(
727     debt_confirmed            => $debt_confirmed,
728     SpecifyDueDate            => $duedatespec_allow,
729     PatronAutoComplete        => C4::Context->preference("PatronAutoComplete"),
730     today_due_date_and_time   => dt_from_string()->set(hour => 23)->set(minute => 59),
731     restriction_types         => scalar Koha::Patron::Restriction::Types->search(),
732     has_modifications         => $has_modifications,
733     patron_lists_count        => $patron_lists_count,
734     override_high_holds       => $override_high_holds,
735     nopermission              => scalar $query->param('nopermission'),
736     autoswitched              => $autoswitched,
737     logged_in_user            => $logged_in_user,
738 );
739
740 output_html_with_http_headers $query, $cookie, $template->output;