Bug 37000: (follow-up) Add foreign key last
[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 && C4::Context->preference('ClaimReturnedLostValue') ) {
442         my $autoClaimReturnCheckout = C4::Context->preference('AutoClaimReturnStatusOnCheckout');
443
444         my $claims = Koha::Checkouts::ReturnClaims->search(
445             {
446                 itemnumber => $item->id,
447             }
448         );
449         if ( $claims->count ) {
450             if ($autoClaimReturnCheckout) {
451                 my $claim = $claims->next;
452
453                 my $patron_id  = $logged_in_user->borrowernumber;
454                 my $resolution = $autoClaimReturnCheckout;
455
456                 $claim->resolve(
457                     {
458                         resolution  => $resolution,
459                         resolved_by => $patron_id,
460                     }
461                 );
462                 $template_params->{CLAIM_RESOLUTION} = $claim;
463             }
464         }
465     }
466
467     if( $item and ( !$blocker or $force_allow_issue ) ){
468         my $confirm_required = 0;
469         unless($issueconfirmed){
470             #  Get the item title for more information
471             my $materials = $item->materials;
472             my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.materials', authorised_value => $materials });
473             $materials = $descriptions->{lib} // $materials;
474             $template_params->{ADDITIONAL_MATERIALS} = $materials;
475             $template_params->{itemhomebranch} = $item->homebranch;
476
477             # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
478             foreach my $needsconfirmation_key ( keys %$needsconfirmation ) {
479                 $template_params->{$needsconfirmation_key} = $needsconfirmation->{$needsconfirmation_key};
480                 $template_params->{getTitleMessageIteminfo} = $biblio->title;
481                 $template_params->{getBarcodeMessageIteminfo} = $item->barcode;
482                 $template_params->{NEEDSCONFIRMATION} = 1;
483                 $confirm_required = 1;
484                 if ( $needsconfirmation_key eq 'BOOKED_TO_ANOTHER' ) {
485                     my $reduceddue =
486                         dt_from_string( $$needsconfirmation{$needsconfirmation_key}->start_date )->subtract( days => 1 );
487                     $template_params->{reduceddue} = $reduceddue;
488                 }
489             }
490         }
491         unless ($confirm_required) {
492             my $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED};
493             if ( C4::Context->preference('UseRecalls') && !$recall_id ) {
494                 my $recall = Koha::Recalls->find(
495                     {
496                         biblio_id => $item->biblionumber,
497                         item_id   => [ undef,       $item->itemnumber ],
498                         status    => [ 'requested', 'waiting' ],
499                         completed => 0,
500                         patron_id => $patron->borrowernumber,
501                     }
502                 );
503                 $recall_id = ( $recall and $recall->id ) ? $recall->id : undef;
504             }
505
506             # If booked (alerts or confirmation) update datedue to end of booking
507             if ( my $booked = $needsconfirmation->{BOOKED_EARLY} // $alerts->{BOOKED} ) {
508                 $datedue = $booked->end_date;
509             }
510             my $issue = AddIssue(
511                 $patron, $barcode, $datedue,
512                 $cancelreserve,
513                 undef, undef,
514                 {
515                     onsite_checkout        => $onsite_checkout,        auto_renew    => $session->param('auto_renew'),
516                     switch_onsite_checkout => $switch_onsite_checkout, cancel_recall => $cancel_recall,
517                     recall_id              => $recall_id,
518                 }
519             );
520             $template_params->{issue} = $issue;
521             $session->clear('auto_renew');
522             $inprocess = 1;
523         }
524     }
525
526     if ($needsconfirmation->{RESERVE_WAITING} or $needsconfirmation->{RESERVED} or $needsconfirmation->{TRANSFERRED} or $needsconfirmation->{PROCESSING}){
527         $template->param(
528             reserveborrowernumber => $needsconfirmation->{'resborrowernumber'},
529             reserve_id => $needsconfirmation->{reserve_id},
530         );
531     }
532
533
534     # FIXME If the issue is confirmed, we launch another time checkouts->count, now display the issue count after issue
535     $patron = Koha::Patrons->find( $borrowernumber );
536     $template_params->{issuecount} = $patron->checkouts->count;
537
538     if ( $item ) {
539         $template_params->{item} = $item;
540         $template_params->{biblio} = $biblio;
541         $template_params->{itembiblionumber} = $biblio->biblionumber;
542     }
543     push @$checkout_infos, $template_params;
544   }
545   unless ( $batch ) {
546     $template->param( %{$checkout_infos->[0]} );
547     $template->param( barcode => $barcodes->[0] );
548   } else {
549     my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
550     $template->param(
551         checkout_infos      => $checkout_infos,
552         onsite_checkout     => $onsite_checkout,
553         confirmation_needed => $confirmation_needed,
554     );
555   }
556 }
557
558 ##################################################################################
559 # BUILD HTML
560 # show all reserves of this borrower, and the position of the reservation ....
561 if ($patron) {
562     my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } ); # FIXME must be Koha::Patron->holds
563     my $waiting_holds = $holds->waiting;
564     $template->param(
565         holds_count  => $holds->count(),
566         WaitingHolds => $waiting_holds,
567     );
568
569     if ( C4::Context->preference('UseRecalls') ) {
570         my $waiting_recalls = $patron->recalls->search({ status => 'waiting' });
571         $template->param(
572             recalls => $patron->recalls->filter_by_current->search({},{ order_by => { -asc => 'created_date' } }),
573             specific_patron => 1,
574             waiting_recalls => $waiting_recalls,
575         );
576     }
577 }
578
579 if ( $patron ) {
580     my $noissues;
581     if ( $patron->gonenoaddress ) {
582         $template->param( gonenoaddress => 1 );
583         $noissues = 1;
584     }
585     if ( $patron->lost ) {
586         $template->param( lost=> 1 );
587         $noissues = 1;
588     }
589     if ( $patron->is_debarred ) {
590         $template->param( is_debarred=> 1 );
591         $noissues = 1;
592     }
593     if ( $patron->borrowernumber eq C4::Context->preference("AnonymousPatron") ) {
594         $template->param( is_anonymous => 1 );
595         $noissues = 1;
596     }
597     my $account = $patron->account;
598     if( ( my $owing = $account->non_issues_charges ) > 0 ) {
599         my $noissuescharge = C4::Context->preference("noissuescharge") || 5; # FIXME If noissuescharge == 0 then 5, why??
600         $noissues ||= ( not C4::Context->preference("AllowFineOverride") and ( $owing > $noissuescharge ) );
601         $template->param(
602             charges => 1,
603             chargesamount => $owing,
604         )
605     } elsif ( $balance < 0 ) {
606         $template->param(
607             credits => 1,
608             creditsamount => -$balance,
609         );
610     }
611
612     # Check the debt of this patrons guarantors *and* the guarantees of those guarantors
613     my $no_issues_charge_guarantors = C4::Context->preference("NoIssuesChargeGuarantorsWithGuarantees");
614     if ( $no_issues_charge_guarantors ) {
615         my $guarantors_non_issues_charges = $patron->relationships_debt({ include_guarantors => 1, only_this_guarantor => 0, include_this_patron => 1 });
616
617         if ( $guarantors_non_issues_charges > $no_issues_charge_guarantors ) {
618             $template->param(
619                 charges_guarantors_guarantees => $guarantors_non_issues_charges
620             );
621             $noissues = 1 unless C4::Context->preference("allowfineoverride");
622         }
623     }
624
625     my $no_issues_charge_guarantees = C4::Context->preference("NoIssuesChargeGuarantees");
626     $no_issues_charge_guarantees = undef unless looks_like_number( $no_issues_charge_guarantees );
627     if ( defined $no_issues_charge_guarantees ) {
628         my $guarantees_non_issues_charges = 0;
629         my $guarantees = $patron->guarantee_relationships->guarantees;
630         while ( my $g = $guarantees->next ) {
631             $guarantees_non_issues_charges += $g->account->non_issues_charges;
632         }
633         if ( $guarantees_non_issues_charges > $no_issues_charge_guarantees ) {
634             $template->param(
635                 charges_guarantees    => 1,
636                 chargesamount_guarantees => $guarantees_non_issues_charges,
637             );
638             $noissues = 1 unless C4::Context->preference("allowfineoverride");
639         }
640     }
641
642     if ( $patron->has_overdues ) {
643         $template->param( odues => 1 );
644     }
645
646     if ( $patron->borrowernotes ) {
647         my $borrowernotes = $patron->borrowernotes;
648         $borrowernotes =~ s#\n#<br />#g;
649         $template->param(
650             notes =>1,
651             notesmsg => $borrowernotes,
652         )
653     }
654
655     if ( $noissues ) {
656         $template->param(
657             noissues => ($force_allow_issue) ? 0 : 'true',
658             forceallow => $force_allow_issue,
659         );
660     }
661
662     my $patron_messages = $patron->messages->search(
663         {},
664         {
665            join => 'manager',
666            '+select' => ['manager.surname', 'manager.firstname' ],
667            '+as' => ['manager_surname', 'manager_firstname'],
668         }
669     );
670     $template->param( patron_messages => $patron_messages );
671
672     if ( C4::Context->preference("WaitingNotifyAtCheckout") ) {
673         my $waiting_holds = $patron->holds->search( { found => 'W', branchcode => $branch } );
674         $template->param( waiting_holds => $waiting_holds );
675     }
676 }
677
678 my $fast_cataloging = 0;
679 if ( Koha::BiblioFrameworks->find('FA') ) {
680     $fast_cataloging = 1 
681 }
682
683 my $view = $batch
684     ?'batch_checkout_view'
685     : 'circview';
686
687 my @relatives;
688 if ( $patron ) {
689     if ( my @guarantors = $patron->guarantor_relationships()->guarantors->as_list ) {
690         push( @relatives, $_->id ) for @guarantors;
691         push( @relatives, $_->id ) for $patron->siblings->as_list;
692     } else {
693         push( @relatives, $_->id ) for $patron->guarantee_relationships()->guarantees->as_list;
694     }
695 }
696 my $relatives_issues_count =
697   Koha::Database->new()->schema()->resultset('Issue')
698   ->count( { borrowernumber => \@relatives } );
699
700 if ( $patron ) {
701     my $av = Koha::AuthorisedValues->search({ category => 'ROADTYPE', authorised_value => $patron->streettype });
702     my $roadtype = $av->count ? $av->next->lib : '';
703     $template->param(
704         roadtype          => $roadtype,
705         patron            => $patron,
706         categoryname      => $patron->category->description,
707         expiry            => $patron->dateexpiry,
708     );
709 }
710
711 # Restore date if changed by holds and/or save stickyduedate to session
712 if ($restoreduedatespec || $stickyduedate) {
713     $duedatespec = $restoreduedatespec || $duedatespec;
714
715     if ($stickyduedate) {
716         $session->param( 'stickyduedate', $duedatespec );
717     }
718 } elsif (defined($duedatespec) && !defined($restoreduedatespec)) {
719     undef $duedatespec;
720 }
721
722 $template->param(
723     borrowernumber    => $borrowernumber,
724     branch            => $branch,
725     was_renewed       => scalar $query->param('was_renewed') ? 1 : 0,
726     barcodes          => $barcodes,
727     stickyduedate     => $stickyduedate,
728     duedatespec       => $duedatespec,
729     restoreduedatespec => $restoreduedatespec,
730     message           => $message,
731     totaldue          => sprintf('%.2f', $balance), # FIXME not used in template?
732     inprocess         => $inprocess,
733     $view             => 1,
734     batch_allowed     => $batch_allowed,
735     batch             => $batch,
736     AudioAlerts           => C4::Context->preference("AudioAlerts"),
737     fast_cataloging   => $fast_cataloging,
738     CircAutoPrintQuickSlip   => C4::Context->preference("CircAutoPrintQuickSlip"),
739     RoutingSerials => C4::Context->preference('RoutingSerials'),
740     relatives_issues_count => $relatives_issues_count,
741     relatives_borrowernumbers => \@relatives,
742 );
743
744
745 if ( C4::Context->preference("ExportCircHistory") ) {
746     $template->param(csv_profiles => Koha::CsvProfiles->search({ type => 'marc' }));
747 }
748
749 my ( $has_modifications, $patron_lists_count);
750 if ( $patron ) {
751     $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
752     $patron_lists_count = $patron->get_lists_with_patron->count();
753 }
754 $template->param(
755     debt_confirmed            => $debt_confirmed,
756     SpecifyDueDate            => $duedatespec_allow,
757     PatronAutoComplete        => C4::Context->preference("PatronAutoComplete"),
758     today_due_date_and_time   => dt_from_string()->set(hour => 23)->set(minute => 59),
759     restriction_types         => scalar Koha::Patron::Restriction::Types->search(),
760     has_modifications         => $has_modifications,
761     patron_lists_count        => $patron_lists_count,
762     override_high_holds       => $override_high_holds,
763     nopermission              => scalar $query->param('nopermission'),
764     autoswitched              => $autoswitched,
765     logged_in_user            => $logged_in_user,
766 );
767
768 output_html_with_http_headers $query, $cookie, $template->output;