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