3 # script to execute issuing of books
5 # Copyright 2000-2002 Katipo Communications
6 # copyright 2010 BibLibre
7 # Copyright 2011 PTFS-Europe Ltd.
8 # Copyright 2012 software.coop and MJ Ray
10 # This file is part of Koha.
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.
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.
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>.
25 # FIXME There are too many calls to Koha::Patrons->find in this script
29 use URI::Escape qw( uri_escape_utf8 );
31 use DateTime::Duration;
32 use Scalar::Util qw( looks_like_number );
33 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
34 use C4::Auth qw( get_session get_template_and_user );
36 use C4::Circulation qw( barcodedecode CanBookBeIssued AddIssue );
38 use C4::Biblio qw( TransformMarcToKoha );
39 use C4::Search qw( new_record_from_zebra );
44 use Koha::AuthorisedValues;
45 use Koha::CsvProfiles;
47 use Koha::Patron::Debarments qw( GetDebarments );
48 use Koha::DateUtils qw( dt_from_string output_pref );
51 use Koha::BiblioFrameworks;
53 use Koha::SearchEngine;
54 use Koha::SearchEngine::Search;
55 use Koha::Patron::Modifications;
57 use List::MoreUtils qw( uniq );
64 my $override_high_holds = $query->param('override_high_holds');
65 my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
67 my $sessionID = $query->cookie("CGISESSID") ;
68 my $session = get_session($sessionID);
71 my $barcode = $query->param('barcode');
74 my $borrowernumber = $query->param('borrowernumber');
76 if (C4::Context->preference("AutoSwitchPatron") && $barcode) {
77 my $new_barcode = $barcode;
78 Koha::Plugins->call( 'patron_barcode_transform', \$new_barcode );
79 if (Koha::Patrons->search( { cardnumber => $new_barcode} )->count() > 0) {
80 $findborrower = $barcode;
82 undef $borrowernumber;
86 $findborrower ||= $query->param('findborrower') || q{};
87 $findborrower =~ s|,| |g;
89 # Barcode given by user could be '0'
90 if ( $barcode || ( defined($barcode) && $barcode eq '0' ) ) {
91 $barcodes = [ $barcode ];
93 my $filefh = $query->upload('uploadfile');
95 while ( my $content = <$filefh> ) {
96 $content =~ s/[\r\n]*$//g;
97 push @$barcodes, $content if $content;
99 } elsif ( my $list = $query->param('barcodelist') ) {
100 push @$barcodes, split( /\s\n/, $list );
101 $barcodes = [ map { $_ =~ /^\s*$/ ? () : $_ } @$barcodes ];
103 @$barcodes = $query->multi_param('barcodes');
107 $barcodes = [ uniq @$barcodes ];
109 my $template_name = q|circ/circulation.tt|;
110 my $patron = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : undef;
111 my $batch = $query->param('batch');
112 my $batch_allowed = 0;
113 if ( $batch && C4::Context->preference('BatchCheckouts') ) {
114 $template_name = q|circ/circulation_batch_checkouts.tt|;
115 my @batch_category_codes = split ',', C4::Context->preference('BatchCheckoutsValidCategories');
116 my $categorycode = $patron->categorycode;
117 if ( $categorycode && grep { $_ eq $categorycode } @batch_category_codes ) {
124 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
126 template_name => $template_name,
129 flagsrequired => { circulate => 'circulate_remaining_permissions' },
132 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
134 my $force_allow_issue = $query->param('forceallow') || 0;
135 if (!C4::Auth::haspermission( C4::Context->userenv->{id} , { circulate => 'force_checkout' } )) {
136 $force_allow_issue = 0;
138 my $onsite_checkout = $query->param('onsite_checkout');
140 if (C4::Context->preference("OnSiteCheckoutAutoCheck") && $onsite_checkout eq "on") {
141 $template->param(onsite_checkout => $onsite_checkout);
144 my @failedrenews = $query->multi_param('failedrenew'); # expected to be itemnumbers
145 our %renew_failed = ();
146 for (@failedrenews) { $renew_failed{$_} = 1; }
148 my @failedreturns = $query->multi_param('failedreturn');
149 our %return_failed = ();
150 for (@failedreturns) { $return_failed{$_} = 1; }
152 my $searchtype = $query->param('searchtype') || q{contain};
154 my $branch = C4::Context->userenv->{'branch'};
156 for my $barcode ( @$barcodes ) {
157 $barcode = barcodedecode( $barcode ) if $barcode;
160 my $stickyduedate = $query->param('stickyduedate') || $session->param('stickyduedate');
161 my $duedatespec = $query->param('duedatespec') || $session->param('stickyduedate');
162 $duedatespec = eval { output_pref( { dt => dt_from_string( $duedatespec ), dateformat => 'iso' }); }
164 my $restoreduedatespec = $query->param('restoreduedatespec') || $duedatespec || $session->param('stickyduedate');
165 if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) {
166 undef $restoreduedatespec;
168 my $issueconfirmed = $query->param('issueconfirmed');
169 my $cancelreserve = $query->param('cancelreserve');
170 my $cancel_recall = $query->param('cancel_recall');
171 my $recall_id = $query->param('recall_id');
172 my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
173 my $charges = $query->param('charges') || q{};
175 # Check if stickyduedate is turned off
177 # was stickyduedate loaded from session?
178 if ( $stickyduedate && ! $query->param("stickyduedate") ) {
179 $session->clear( 'stickyduedate' );
180 $stickyduedate = $query->param('stickyduedate');
181 $duedatespec = $query->param('duedatespec');
183 $session->param('auto_renew', scalar $query->param('auto_renew'));
186 $session->clear('auto_renew');
189 $template->param( auto_renew => $session->param('auto_renew') );
191 my ($datedue,$invalidduedate);
193 my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
194 if( $onsite_checkout && !$duedatespec_allow ) {
195 $datedue = dt_from_string()->truncate(to => 'day');
196 $datedue->set_hour(23);
197 $datedue->set_minute(59);
198 } elsif( $duedatespec_allow ) {
199 if ( $duedatespec ) {
200 $datedue = eval { dt_from_string( $duedatespec ) };
203 $template->param( IMPOSSIBLE=>1, INVALID_DATE=>$duedatespec );
208 my $inprocess = (@$barcodes == 0) ? '' : $query->param('inprocess');
209 if ( @$barcodes == 0 && $charges eq 'yes' ) {
212 borrowernumber => $borrowernumber
217 # STEP 2 : FIND BORROWER
218 # if there is a list of find borrowers....
222 Koha::Plugins->call( 'patron_barcode_transform', \$findborrower );
223 my $patron = Koha::Patrons->find( { cardnumber => $findborrower } );
225 $borrowernumber = $patron->borrowernumber;
227 print $query->redirect( "/cgi-bin/koha/members/member.pl?quicksearch=1&circsearch=1&searchmember=" . uri_escape_utf8($findborrower) );
232 # get the borrower information.....
234 $patron ||= Koha::Patrons->find( $borrowernumber ) if $borrowernumber;
237 $template->param( borrowernumber => $patron->borrowernumber );
238 output_and_exit_if_error( $query, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
240 my $overdues = $patron->overdues;
241 my $issues = $patron->checkouts;
242 $balance = $patron->account->balance;
245 # if the expiry date is before today ie they have expired
246 if ( $patron->is_expired ) {
247 #borrowercard expired, no issues
249 noissues => ($force_allow_issue) ? 0 : "1",
250 forceallow => $force_allow_issue,
254 # check for NotifyBorrowerDeparture
255 elsif ( $patron->is_going_to_expire ) {
256 # borrower card soon to expire warn librarian
257 $template->param( "warndeparture" => $patron->dateexpiry ,
259 if (C4::Context->preference('ReturnBeforeExpiry')){
260 $template->param("returnbeforeexpiry" => 1);
264 overduecount => $overdues->count,
265 issuecount => $issues->count,
266 finetotal => $balance,
269 if ( $patron and $patron->is_debarred ) {
271 'userdebarred' => $patron->debarred,
272 'debarredcomment' => $patron->debarredcomment,
275 if ( $patron->debarred ne "9999-12-31" ) {
276 $template->param( 'userdebarreddate' => $patron->debarred );
280 # Calculate and display patron's age
281 if ( !$patron->is_valid_age ) {
282 $template->param( age_limitations => 1 );
283 $template->param( age_low => $patron->category->dateofbirthrequired );
284 $template->param( age_high => $patron->category->upperagelimit );
295 for my $barcode ( @$barcodes ) {
297 my $template_params = {
299 onsite_checkout => $onsite_checkout,
302 # always check for blockers on issuing
303 my ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
309 onsite_checkout => $onsite_checkout,
310 override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
314 my $blocker = $invalidduedate ? 1 : 0;
316 $template_params->{alert} = $alerts;
317 $template_params->{messages} = $messages;
319 my $item = Koha::Items->find({ barcode => $barcode });
323 $biblio = $item->biblio;
326 # Fix for bug 7494: optional checkout-time fallback search for a book
328 if ( $error->{'UNKNOWN_BARCODE'}
329 && C4::Context->preference("itemBarcodeFallbackSearch")
333 $template_params->{FALLBACK} = 1;
335 my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
336 my $query = "kw=" . $barcode;
337 my ( $searcherror, $results, $total_hits ) = $searcher->simple_search_compat($query, 0, 10);
339 # if multiple hits, offer options to librarian
340 if ( $total_hits > 0 ) {
342 foreach my $hit ( @{$results} ) {
343 my $chosen = # Maybe easier to retrieve the itemnumber from $hit?
344 TransformMarcToKoha({ record => C4::Search::new_record_from_zebra('biblioserver',$hit) });
346 # offer all barcodes individually
347 if ( $chosen->{barcode} ) {
348 push @barcodes, sort split(/\s*\|\s*/, $chosen->{barcode});
351 my $items = Koha::Items->search({ barcode => {-in => \@barcodes}});
352 $template_params->{options} = $items;
356 # Only some errors will block when performing forced onsite checkout,
357 # for other cases all errors will block
358 my @blocking_error_codes = ($onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce")) ?
359 qw( UNKNOWN_BARCODE ) : (keys %$error);
361 foreach my $code ( @blocking_error_codes ) {
362 if ($error->{$code}) {
363 $template_params->{$code} = $error->{$code};
364 $template_params->{IMPOSSIBLE} = 1;
369 delete $question->{'DEBT'} if ($debt_confirmed);
371 if( $item and ( !$blocker or $force_allow_issue ) ){
372 my $confirm_required = 0;
373 unless($issueconfirmed){
374 # Get the item title for more information
375 my $materials = $item->materials;
376 my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $biblio->frameworkcode, kohafield => 'items.materials', authorised_value => $materials });
377 $materials = $descriptions->{lib} // $materials;
378 $template_params->{ADDITIONAL_MATERIALS} = $materials;
379 $template_params->{itemhomebranch} = $item->homebranch;
381 # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
382 foreach my $needsconfirmation ( keys %$question ) {
383 $template_params->{$needsconfirmation} = $$question{$needsconfirmation};
384 $template_params->{getTitleMessageIteminfo} = $biblio->title;
385 $template_params->{getBarcodeMessageIteminfo} = $item->barcode;
386 $template_params->{NEEDSCONFIRMATION} = 1;
387 $confirm_required = 1;
390 unless($confirm_required) {
391 my $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED};
392 if ( C4::Context->preference('UseRecalls') && !$recall_id ) {
393 my $recall = Koha::Recalls->find(
395 biblio_id => $item->biblionumber,
396 item_id => [ undef, $item->itemnumber ],
397 status => [ 'requested', 'waiting' ],
399 patron_id => $patron->borrowernumber,
402 $recall_id = ( $recall and $recall->id ) ? $recall->id : undef;
404 my $issue = AddIssue( $patron->unblessed, $barcode, $datedue, $cancelreserve, undef, undef, { onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew'), switch_onsite_checkout => $switch_onsite_checkout, cancel_recall => $cancel_recall, recall_id => $recall_id, } );
405 $template_params->{issue} = $issue;
406 $session->clear('auto_renew');
411 if ($question->{RESERVE_WAITING} or $question->{RESERVED} or $question->{TRANSFERRED} or $question->{PROCESSING}){
413 reserveborrowernumber => $question->{'resborrowernumber'},
414 reserve_id => $question->{reserve_id},
419 # FIXME If the issue is confirmed, we launch another time checkouts->count, now display the issue count after issue
420 $patron = Koha::Patrons->find( $borrowernumber );
421 $template_params->{issuecount} = $patron->checkouts->count;
424 $template_params->{item} = $item;
425 $template_params->{biblio} = $biblio;
426 $template_params->{itembiblionumber} = $biblio->biblionumber;
428 push @$checkout_infos, $template_params;
431 $template->param( %{$checkout_infos->[0]} );
432 $template->param( barcode => $barcodes->[0] );
434 my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
436 checkout_infos => $checkout_infos,
437 confirmation_needed => $confirmation_needed,
442 ##################################################################################
444 # show all reserves of this borrower, and the position of the reservation ....
446 my $holds = Koha::Holds->search( { borrowernumber => $borrowernumber } ); # FIXME must be Koha::Patron->holds
447 my $waiting_holds = $holds->waiting;
449 holds_count => $holds->count(),
450 WaitingHolds => $waiting_holds,
452 if ( C4::Context->preference('UseRecalls') ) {
454 recalls => $patron->recalls->filter_by_current->search({},{ order_by => { -asc => 'created_date' } }),
455 specific_patron => 1,
462 if ( $patron->gonenoaddress ) {
463 $template->param( gonenoaddress => 1 );
466 if ( $patron->lost ) {
467 $template->param( lost=> 1 );
470 if ( $patron->is_debarred ) {
471 $template->param( is_debarred=> 1 );
474 my $account = $patron->account;
475 if( ( my $owing = $account->non_issues_charges ) > 0 ) {
476 my $noissuescharge = C4::Context->preference("noissuescharge") || 5; # FIXME If noissuescharge == 0 then 5, why??
477 $noissues ||= ( not C4::Context->preference("AllowFineOverride") and ( $owing > $noissuescharge ) );
480 chargesamount => $owing,
482 } elsif ( $balance < 0 ) {
485 creditsamount => -$balance,
489 # Check the debt of this patrons guarantors *and* the guarantees of those guarantors
490 my $no_issues_charge_guarantors = C4::Context->preference("NoIssuesChargeGuarantorsWithGuarantees");
491 if ( $no_issues_charge_guarantors ) {
492 my $guarantors_non_issues_charges = $patron->relationships_debt({ include_guarantors => 1, only_this_guarantor => 0, include_this_patron => 1 });
494 if ( $guarantors_non_issues_charges > $no_issues_charge_guarantors ) {
496 charges_guarantors_guarantees => $guarantors_non_issues_charges
498 $noissues = 1 unless C4::Context->preference("allowfineoverride");
502 my $no_issues_charge_guarantees = C4::Context->preference("NoIssuesChargeGuarantees");
503 $no_issues_charge_guarantees = undef unless looks_like_number( $no_issues_charge_guarantees );
504 if ( defined $no_issues_charge_guarantees ) {
505 my $guarantees_non_issues_charges = 0;
506 my $guarantees = $patron->guarantee_relationships->guarantees;
507 while ( my $g = $guarantees->next ) {
508 $guarantees_non_issues_charges += $g->account->non_issues_charges;
510 if ( $guarantees_non_issues_charges > $no_issues_charge_guarantees ) {
512 charges_guarantees => 1,
513 chargesamount_guarantees => $guarantees_non_issues_charges,
515 $noissues = 1 unless C4::Context->preference("allowfineoverride");
519 if ( $patron->has_overdues ) {
520 $template->param( odues => 1 );
523 if ( $patron->borrowernotes ) {
524 my $borrowernotes = $patron->borrowernotes;
525 $borrowernotes =~ s#\n#<br />#g;
528 notesmsg => $borrowernotes,
534 noissues => ($force_allow_issue) ? 0 : 'true',
535 forceallow => $force_allow_issue,
539 my $patron_messages = $patron->messages->search(
543 '+select' => ['manager.surname', 'manager.firstname' ],
544 '+as' => ['manager_surname', 'manager_firstname'],
547 $template->param( patron_messages => $patron_messages );
551 my $fast_cataloging = 0;
552 if ( Koha::BiblioFrameworks->find('FA') ) {
557 ?'batch_checkout_view'
562 if ( my @guarantors = $patron->guarantor_relationships()->guarantors->as_list ) {
563 push( @relatives, $_->id ) for @guarantors;
564 push( @relatives, $_->id ) for $patron->siblings->as_list;
566 push( @relatives, $_->id ) for $patron->guarantee_relationships()->guarantees->as_list;
569 my $relatives_issues_count =
570 Koha::Database->new()->schema()->resultset('Issue')
571 ->count( { borrowernumber => \@relatives } );
574 my $av = Koha::AuthorisedValues->search({ category => 'ROADTYPE', authorised_value => $patron->streettype });
575 my $roadtype = $av->count ? $av->next->lib : '';
577 roadtype => $roadtype,
579 categoryname => $patron->category->description,
580 expiry => $patron->dateexpiry,
584 # Restore date if changed by holds and/or save stickyduedate to session
585 if ($restoreduedatespec || $stickyduedate) {
586 $duedatespec = $restoreduedatespec || $duedatespec;
588 if ($stickyduedate) {
589 $session->param( 'stickyduedate', $duedatespec );
591 } elsif (defined($duedatespec) && !defined($restoreduedatespec)) {
596 borrowernumber => $borrowernumber,
598 was_renewed => scalar $query->param('was_renewed') ? 1 : 0,
599 barcodes => $barcodes,
600 stickyduedate => $stickyduedate,
601 duedatespec => $duedatespec,
602 restoreduedatespec => $restoreduedatespec,
604 totaldue => sprintf('%.2f', $balance), # FIXME not used in template?
605 inprocess => $inprocess,
607 batch_allowed => $batch_allowed,
609 AudioAlerts => C4::Context->preference("AudioAlerts"),
610 fast_cataloging => $fast_cataloging,
611 CircAutoPrintQuickSlip => C4::Context->preference("CircAutoPrintQuickSlip"),
612 RoutingSerials => C4::Context->preference('RoutingSerials'),
613 relatives_issues_count => $relatives_issues_count,
614 relatives_borrowernumbers => \@relatives,
618 if ( C4::Context->preference("ExportCircHistory") ) {
619 $template->param(csv_profiles => Koha::CsvProfiles->search({ type => 'marc' }));
622 my $has_modifications = Koha::Patron::Modifications->search( { borrowernumber => $borrowernumber } )->count;
624 debt_confirmed => $debt_confirmed,
625 SpecifyDueDate => $duedatespec_allow,
626 PatronAutoComplete => C4::Context->preference("PatronAutoComplete"),
627 debarments => scalar GetDebarments({ borrowernumber => $borrowernumber }),
628 todaysdate => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ),
629 has_modifications => $has_modifications,
630 override_high_holds => $override_high_holds,
631 nopermission => scalar $query->param('nopermission'),
632 autoswitched => $autoswitched,
633 logged_in_user => $logged_in_user,
636 output_html_with_http_headers $query, $cookie, $template->output;