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