Bug 20491: Updating the MARC subfield desciption of 952q
[koha.git] / C4 / Circulation.pm
blob5581a84f5a4082af48e72afe13177d43e4a37cfd
1 package C4::Circulation;
3 # Copyright 2000-2002 Katipo Communications
4 # copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use strict;
23 #use warnings; FIXME - Bug 2505
24 use DateTime;
25 use POSIX qw( floor );
26 use Koha::DateUtils;
27 use C4::Context;
28 use C4::Stats;
29 use C4::Reserves;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::Members;
33 use C4::Accounts;
34 use C4::ItemCirculationAlertPreference;
35 use C4::Message;
36 use C4::Debug;
37 use C4::Log; # logaction
38 use C4::Overdues qw(CalcFine UpdateFine get_chargeable_units);
39 use C4::RotatingCollections qw(GetCollectionItemBranches);
40 use Algorithm::CheckDigits;
42 use Data::Dumper;
43 use Koha::Account;
44 use Koha::AuthorisedValues;
45 use Koha::Biblioitems;
46 use Koha::DateUtils;
47 use Koha::Calendar;
48 use Koha::Checkouts;
49 use Koha::IssuingRules;
50 use Koha::Items;
51 use Koha::Patrons;
52 use Koha::Patron::Debarments;
53 use Koha::Database;
54 use Koha::Libraries;
55 use Koha::Account::Lines;
56 use Koha::Holds;
57 use Koha::RefundLostItemFeeRule;
58 use Koha::RefundLostItemFeeRules;
59 use Koha::Account::Lines;
60 use Koha::Account::Offsets;
61 use Koha::Config::SysPrefs;
62 use Carp;
63 use List::MoreUtils qw( uniq any );
64 use Scalar::Util qw( looks_like_number );
65 use Date::Calc qw(
66 Today
67 Today_and_Now
68 Add_Delta_YM
69 Add_Delta_DHMS
70 Date_to_Days
71 Day_of_Week
72 Add_Delta_Days
74 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
76 BEGIN {
77 require Exporter;
78 @ISA = qw(Exporter);
80 # FIXME subs that should probably be elsewhere
81 push @EXPORT, qw(
82 &barcodedecode
83 &LostItem
84 &ReturnLostItem
85 &GetPendingOnSiteCheckouts
88 # subs to deal with issuing a book
89 push @EXPORT, qw(
90 &CanBookBeIssued
91 &CanBookBeRenewed
92 &AddIssue
93 &AddRenewal
94 &GetRenewCount
95 &GetSoonestRenewDate
96 &GetLatestAutoRenewDate
97 &GetIssuingCharges
98 &GetBranchBorrowerCircRule
99 &GetBranchItemRule
100 &GetBiblioIssues
101 &GetOpenIssue
102 &CheckIfIssuedToPatron
103 &IsItemIssued
104 GetTopIssues
107 # subs to deal with returns
108 push @EXPORT, qw(
109 &AddReturn
110 &MarkIssueReturned
113 # subs to deal with transfers
114 push @EXPORT, qw(
115 &transferbook
116 &GetTransfers
117 &GetTransfersFromTo
118 &updateWrongTransfer
119 &DeleteTransfer
120 &IsBranchTransferAllowed
121 &CreateBranchTransferLimit
122 &DeleteBranchTransferLimits
123 &TransferSlip
126 # subs to deal with offline circulation
127 push @EXPORT, qw(
128 &GetOfflineOperations
129 &GetOfflineOperation
130 &AddOfflineOperation
131 &DeleteOfflineOperation
132 &ProcessOfflineOperation
136 =head1 NAME
138 C4::Circulation - Koha circulation module
140 =head1 SYNOPSIS
142 use C4::Circulation;
144 =head1 DESCRIPTION
146 The functions in this module deal with circulation, issues, and
147 returns, as well as general information about the library.
148 Also deals with inventory.
150 =head1 FUNCTIONS
152 =head2 barcodedecode
154 $str = &barcodedecode($barcode, [$filter]);
156 Generic filter function for barcode string.
157 Called on every circ if the System Pref itemBarcodeInputFilter is set.
158 Will do some manipulation of the barcode for systems that deliver a barcode
159 to circulation.pl that differs from the barcode stored for the item.
160 For proper functioning of this filter, calling the function on the
161 correct barcode string (items.barcode) should return an unaltered barcode.
163 The optional $filter argument is to allow for testing or explicit
164 behavior that ignores the System Pref. Valid values are the same as the
165 System Pref options.
167 =cut
169 # FIXME -- the &decode fcn below should be wrapped into this one.
170 # FIXME -- these plugins should be moved out of Circulation.pm
172 sub barcodedecode {
173 my ($barcode, $filter) = @_;
174 my $branch = C4::Context::mybranch();
175 $filter = C4::Context->preference('itemBarcodeInputFilter') unless $filter;
176 $filter or return $barcode; # ensure filter is defined, else return untouched barcode
177 if ($filter eq 'whitespace') {
178 $barcode =~ s/\s//g;
179 } elsif ($filter eq 'cuecat') {
180 chomp($barcode);
181 my @fields = split( /\./, $barcode );
182 my @results = map( decode($_), @fields[ 1 .. $#fields ] );
183 ($#results == 2) and return $results[2];
184 } elsif ($filter eq 'T-prefix') {
185 if ($barcode =~ /^[Tt](\d)/) {
186 (defined($1) and $1 eq '0') and return $barcode;
187 $barcode = substr($barcode, 2) + 0; # FIXME: probably should be substr($barcode, 1)
189 return sprintf("T%07d", $barcode);
190 # FIXME: $barcode could be "T1", causing warning: substr outside of string
191 # Why drop the nonzero digit after the T?
192 # Why pass non-digits (or empty string) to "T%07d"?
193 } elsif ($filter eq 'libsuite8') {
194 unless($barcode =~ m/^($branch)-/i){ #if barcode starts with branch code its in Koha style. Skip it.
195 if($barcode =~ m/^(\d)/i){ #Some barcodes even start with 0's & numbers and are assumed to have b as the item type in the libsuite8 software
196 $barcode =~ s/^[0]*(\d+)$/$branch-b-$1/i;
197 }else{
198 $barcode =~ s/^(\D+)[0]*(\d+)$/$branch-$1-$2/i;
201 } elsif ($filter eq 'EAN13') {
202 my $ean = CheckDigits('ean');
203 if ( $ean->is_valid($barcode) ) {
204 #$barcode = sprintf('%013d',$barcode); # this doesn't work on 32-bit systems
205 $barcode = '0' x ( 13 - length($barcode) ) . $barcode;
206 } else {
207 warn "# [$barcode] not valid EAN-13/UPC-A\n";
210 return $barcode; # return barcode, modified or not
213 =head2 decode
215 $str = &decode($chunk);
217 Decodes a segment of a string emitted by a CueCat barcode scanner and
218 returns it.
220 FIXME: Should be replaced with Barcode::Cuecat from CPAN
221 or Javascript based decoding on the client side.
223 =cut
225 sub decode {
226 my ($encoded) = @_;
227 my $seq =
228 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-';
229 my @s = map { index( $seq, $_ ); } split( //, $encoded );
230 my $l = ( $#s + 1 ) % 4;
231 if ($l) {
232 if ( $l == 1 ) {
233 # warn "Error: Cuecat decode parsing failed!";
234 return;
236 $l = 4 - $l;
237 $#s += $l;
239 my $r = '';
240 while ( $#s >= 0 ) {
241 my $n = ( ( $s[0] << 6 | $s[1] ) << 6 | $s[2] ) << 6 | $s[3];
242 $r .=
243 chr( ( $n >> 16 ) ^ 67 )
244 .chr( ( $n >> 8 & 255 ) ^ 67 )
245 .chr( ( $n & 255 ) ^ 67 );
246 @s = @s[ 4 .. $#s ];
248 $r = substr( $r, 0, length($r) - $l );
249 return $r;
252 =head2 transferbook
254 ($dotransfer, $messages, $iteminformation) = &transferbook($newbranch,
255 $barcode, $ignore_reserves);
257 Transfers an item to a new branch. If the item is currently on loan, it is automatically returned before the actual transfer.
259 C<$newbranch> is the code for the branch to which the item should be transferred.
261 C<$barcode> is the barcode of the item to be transferred.
263 If C<$ignore_reserves> is true, C<&transferbook> ignores reserves.
264 Otherwise, if an item is reserved, the transfer fails.
266 Returns three values:
268 =over
270 =item $dotransfer
272 is true if the transfer was successful.
274 =item $messages
276 is a reference-to-hash which may have any of the following keys:
278 =over
280 =item C<BadBarcode>
282 There is no item in the catalog with the given barcode. The value is C<$barcode>.
284 =item C<DestinationEqualsHolding>
286 The item is already at the branch to which it is being transferred. The transfer is nonetheless considered to have failed. The value should be ignored.
288 =item C<WasReturned>
290 The item was on loan, and C<&transferbook> automatically returned it before transferring it. The value is the borrower number of the patron who had the item.
292 =item C<ResFound>
294 The item was reserved. The value is a reference-to-hash whose keys are fields from the reserves table of the Koha database, and C<biblioitemnumber>. It also has the key C<ResFound>, whose value is either C<Waiting> or C<Reserved>.
296 =item C<WasTransferred>
298 The item was eligible to be transferred. Barring problems communicating with the database, the transfer should indeed have succeeded. The value should be ignored.
300 =back
302 =back
304 =cut
306 sub transferbook {
307 my ( $tbr, $barcode, $ignoreRs ) = @_;
308 my $messages;
309 my $dotransfer = 1;
310 my $item = Koha::Items->find( { barcode => $barcode } );
312 # bad barcode..
313 unless ( $item ) {
314 $messages->{'BadBarcode'} = $barcode;
315 $dotransfer = 0;
318 my $itemnumber = $item->itemnumber;
319 my $issue = GetOpenIssue($itemnumber);
320 # get branches of book...
321 my $hbr = $item->homebranch;
322 my $fbr = $item->holdingbranch;
324 # if using Branch Transfer Limits
325 if ( C4::Context->preference("UseBranchTransferLimits") == 1 ) {
326 my $code = C4::Context->preference("BranchTransferLimitsType") eq 'ccode' ? $item->ccode : $item->biblio->biblioitem->itemtype; # BranchTransferLimitsType is 'ccode' or 'itemtype'
327 if ( C4::Context->preference("item-level_itypes") && C4::Context->preference("BranchTransferLimitsType") eq 'itemtype' ) {
328 if ( ! IsBranchTransferAllowed( $tbr, $fbr, $item->itype ) ) {
329 $messages->{'NotAllowed'} = $tbr . "::" . $item->itype;
330 $dotransfer = 0;
332 } elsif ( ! IsBranchTransferAllowed( $tbr, $fbr, $code ) ) {
333 $messages->{'NotAllowed'} = $tbr . "::" . $code;
334 $dotransfer = 0;
338 # can't transfer book if is already there....
339 if ( $fbr eq $tbr ) {
340 $messages->{'DestinationEqualsHolding'} = 1;
341 $dotransfer = 0;
344 # check if it is still issued to someone, return it...
345 if ( $issue ) {
346 AddReturn( $barcode, $fbr );
347 $messages->{'WasReturned'} = $issue->borrowernumber;
350 # find reserves.....
351 # That'll save a database query.
352 my ( $resfound, $resrec, undef ) =
353 CheckReserves( $itemnumber );
354 if ( $resfound and not $ignoreRs ) {
355 $resrec->{'ResFound'} = $resfound;
357 # $messages->{'ResFound'} = $resrec;
358 $dotransfer = 1;
361 #actually do the transfer....
362 if ($dotransfer) {
363 ModItemTransfer( $itemnumber, $fbr, $tbr );
365 # don't need to update MARC anymore, we do it in batch now
366 $messages->{'WasTransfered'} = 1;
369 ModDateLastSeen( $itemnumber );
370 return ( $dotransfer, $messages );
374 sub TooMany {
375 my $borrower = shift;
376 my $biblionumber = shift;
377 my $item = shift;
378 my $params = shift;
379 my $onsite_checkout = $params->{onsite_checkout} || 0;
380 my $switch_onsite_checkout = $params->{switch_onsite_checkout} || 0;
381 my $cat_borrower = $borrower->{'categorycode'};
382 my $dbh = C4::Context->dbh;
383 my $branch;
384 # Get which branchcode we need
385 $branch = _GetCircControlBranch($item,$borrower);
386 my $type = (C4::Context->preference('item-level_itypes'))
387 ? $item->{'itype'} # item-level
388 : $item->{'itemtype'}; # biblio-level
390 # given branch, patron category, and item type, determine
391 # applicable issuing rule
392 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
393 { categorycode => $cat_borrower,
394 itemtype => $type,
395 branchcode => $branch
400 # if a rule is found and has a loan limit set, count
401 # how many loans the patron already has that meet that
402 # rule
403 if (defined($issuing_rule) and defined($issuing_rule->maxissueqty)) {
404 my @bind_params;
405 my $count_query = q|
406 SELECT COUNT(*) AS total, COALESCE(SUM(onsite_checkout), 0) AS onsite_checkouts
407 FROM issues
408 JOIN items USING (itemnumber)
411 my $rule_itemtype = $issuing_rule->itemtype;
412 if ($rule_itemtype eq "*") {
413 # matching rule has the default item type, so count only
414 # those existing loans that don't fall under a more
415 # specific rule
416 if (C4::Context->preference('item-level_itypes')) {
417 $count_query .= " WHERE items.itype NOT IN (
418 SELECT itemtype FROM issuingrules
419 WHERE branchcode = ?
420 AND (categorycode = ? OR categorycode = ?)
421 AND itemtype <> '*'
422 ) ";
423 } else {
424 $count_query .= " JOIN biblioitems USING (biblionumber)
425 WHERE biblioitems.itemtype NOT IN (
426 SELECT itemtype FROM issuingrules
427 WHERE branchcode = ?
428 AND (categorycode = ? OR categorycode = ?)
429 AND itemtype <> '*'
430 ) ";
432 push @bind_params, $issuing_rule->branchcode;
433 push @bind_params, $issuing_rule->categorycode;
434 push @bind_params, $cat_borrower;
435 } else {
436 # rule has specific item type, so count loans of that
437 # specific item type
438 if (C4::Context->preference('item-level_itypes')) {
439 $count_query .= " WHERE items.itype = ? ";
440 } else {
441 $count_query .= " JOIN biblioitems USING (biblionumber)
442 WHERE biblioitems.itemtype= ? ";
444 push @bind_params, $type;
447 $count_query .= " AND borrowernumber = ? ";
448 push @bind_params, $borrower->{'borrowernumber'};
449 my $rule_branch = $issuing_rule->branchcode;
450 if ($rule_branch ne "*") {
451 if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
452 $count_query .= " AND issues.branchcode = ? ";
453 push @bind_params, $branch;
454 } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
455 ; # if branch is the patron's home branch, then count all loans by patron
456 } else {
457 $count_query .= " AND items.homebranch = ? ";
458 push @bind_params, $branch;
462 my ( $checkout_count, $onsite_checkout_count ) = $dbh->selectrow_array( $count_query, {}, @bind_params );
464 my $max_checkouts_allowed = $issuing_rule->maxissueqty;
465 my $max_onsite_checkouts_allowed = $issuing_rule->maxonsiteissueqty;
467 if ( $onsite_checkout and defined $max_onsite_checkouts_allowed ) {
468 if ( $onsite_checkout_count >= $max_onsite_checkouts_allowed ) {
469 return {
470 reason => 'TOO_MANY_ONSITE_CHECKOUTS',
471 count => $onsite_checkout_count,
472 max_allowed => $max_onsite_checkouts_allowed,
476 if ( C4::Context->preference('ConsiderOnSiteCheckoutsAsNormalCheckouts') ) {
477 my $delta = $switch_onsite_checkout ? 1 : 0;
478 if ( $checkout_count >= $max_checkouts_allowed + $delta ) {
479 return {
480 reason => 'TOO_MANY_CHECKOUTS',
481 count => $checkout_count,
482 max_allowed => $max_checkouts_allowed,
485 } elsif ( not $onsite_checkout ) {
486 if ( $checkout_count - $onsite_checkout_count >= $max_checkouts_allowed ) {
487 return {
488 reason => 'TOO_MANY_CHECKOUTS',
489 count => $checkout_count - $onsite_checkout_count,
490 max_allowed => $max_checkouts_allowed,
496 # Now count total loans against the limit for the branch
497 my $branch_borrower_circ_rule = GetBranchBorrowerCircRule($branch, $cat_borrower);
498 if (defined($branch_borrower_circ_rule->{maxissueqty})) {
499 my @bind_params = ();
500 my $branch_count_query = q|
501 SELECT COUNT(*) AS total, COALESCE(SUM(onsite_checkout), 0) AS onsite_checkouts
502 FROM issues
503 JOIN items USING (itemnumber)
504 WHERE borrowernumber = ?
506 push @bind_params, $borrower->{borrowernumber};
508 if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
509 $branch_count_query .= " AND issues.branchcode = ? ";
510 push @bind_params, $branch;
511 } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
512 ; # if branch is the patron's home branch, then count all loans by patron
513 } else {
514 $branch_count_query .= " AND items.homebranch = ? ";
515 push @bind_params, $branch;
517 my ( $checkout_count, $onsite_checkout_count ) = $dbh->selectrow_array( $branch_count_query, {}, @bind_params );
518 my $max_checkouts_allowed = $branch_borrower_circ_rule->{maxissueqty};
519 my $max_onsite_checkouts_allowed = $branch_borrower_circ_rule->{maxonsiteissueqty};
521 if ( $onsite_checkout and defined $max_onsite_checkouts_allowed ) {
522 if ( $onsite_checkout_count >= $max_onsite_checkouts_allowed ) {
523 return {
524 reason => 'TOO_MANY_ONSITE_CHECKOUTS',
525 count => $onsite_checkout_count,
526 max_allowed => $max_onsite_checkouts_allowed,
530 if ( C4::Context->preference('ConsiderOnSiteCheckoutsAsNormalCheckouts') ) {
531 my $delta = $switch_onsite_checkout ? 1 : 0;
532 if ( $checkout_count >= $max_checkouts_allowed + $delta ) {
533 return {
534 reason => 'TOO_MANY_CHECKOUTS',
535 count => $checkout_count,
536 max_allowed => $max_checkouts_allowed,
539 } elsif ( not $onsite_checkout ) {
540 if ( $checkout_count - $onsite_checkout_count >= $max_checkouts_allowed ) {
541 return {
542 reason => 'TOO_MANY_CHECKOUTS',
543 count => $checkout_count - $onsite_checkout_count,
544 max_allowed => $max_checkouts_allowed,
550 if ( not defined( $issuing_rule ) and not defined($branch_borrower_circ_rule->{maxissueqty}) ) {
551 return { reason => 'NO_RULE_DEFINED', max_allowed => 0 };
554 # OK, the patron can issue !!!
555 return;
558 =head2 CanBookBeIssued
560 ( $issuingimpossible, $needsconfirmation, [ $alerts ] ) = CanBookBeIssued( $patron,
561 $barcode, $duedate, $inprocess, $ignore_reserves, $params );
563 Check if a book can be issued.
565 C<$issuingimpossible> and C<$needsconfirmation> are hashrefs.
567 IMPORTANT: The assumption by users of this routine is that causes blocking
568 the issue are keyed by uppercase labels and other returned
569 data is keyed in lower case!
571 =over 4
573 =item C<$patron> is a Koha::Patron
575 =item C<$barcode> is the bar code of the book being issued.
577 =item C<$duedates> is a DateTime object.
579 =item C<$inprocess> boolean switch
581 =item C<$ignore_reserves> boolean switch
583 =item C<$params> Hashref of additional parameters
585 Available keys:
586 override_high_holds - Ignore high holds
587 onsite_checkout - Checkout is an onsite checkout that will not leave the library
589 =back
591 Returns :
593 =over 4
595 =item C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
596 Possible values are :
598 =back
600 =head3 INVALID_DATE
602 sticky due date is invalid
604 =head3 GNA
606 borrower gone with no address
608 =head3 CARD_LOST
610 borrower declared it's card lost
612 =head3 DEBARRED
614 borrower debarred
616 =head3 UNKNOWN_BARCODE
618 barcode unknown
620 =head3 NOT_FOR_LOAN
622 item is not for loan
624 =head3 WTHDRAWN
626 item withdrawn.
628 =head3 RESTRICTED
630 item is restricted (set by ??)
632 C<$needsconfirmation> a reference to a hash. It contains reasons why the loan
633 could be prevented, but ones that can be overriden by the operator.
635 Possible values are :
637 =head3 DEBT
639 borrower has debts.
641 =head3 RENEW_ISSUE
643 renewing, not issuing
645 =head3 ISSUED_TO_ANOTHER
647 issued to someone else.
649 =head3 RESERVED
651 reserved for someone else.
653 =head3 INVALID_DATE
655 sticky due date is invalid or due date in the past
657 =head3 TOO_MANY
659 if the borrower borrows to much things
661 =cut
663 sub CanBookBeIssued {
664 my ( $patron, $barcode, $duedate, $inprocess, $ignore_reserves, $params ) = @_;
665 my %needsconfirmation; # filled with problems that needs confirmations
666 my %issuingimpossible; # filled with problems that causes the issue to be IMPOSSIBLE
667 my %alerts; # filled with messages that shouldn't stop issuing, but the librarian should be aware of.
668 my %messages; # filled with information messages that should be displayed.
670 my $onsite_checkout = $params->{onsite_checkout} || 0;
671 my $override_high_holds = $params->{override_high_holds} || 0;
673 my $item = GetItem(undef, $barcode );
674 # MANDATORY CHECKS - unless item exists, nothing else matters
675 unless ( $item ) {
676 $issuingimpossible{UNKNOWN_BARCODE} = 1;
678 return ( \%issuingimpossible, \%needsconfirmation ) if %issuingimpossible;
680 my $issue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
681 my $biblio = Koha::Biblios->find( $item->{biblionumber} );
682 my $biblioitem = $biblio->biblioitem;
683 my $effective_itemtype = $item->{itype}; # GetItem deals with that
684 my $dbh = C4::Context->dbh;
685 my $patron_unblessed = $patron->unblessed;
688 # DUE DATE is OK ? -- should already have checked.
690 if ($duedate && ref $duedate ne 'DateTime') {
691 $duedate = dt_from_string($duedate);
693 my $now = DateTime->now( time_zone => C4::Context->tz() );
694 unless ( $duedate ) {
695 my $issuedate = $now->clone();
697 my $branch = _GetCircControlBranch($item, $patron_unblessed);
698 $duedate = CalcDateDue( $issuedate, $effective_itemtype, $branch, $patron_unblessed );
700 # Offline circ calls AddIssue directly, doesn't run through here
701 # So issuingimpossible should be ok.
703 if ($duedate) {
704 my $today = $now->clone();
705 $today->truncate( to => 'minute');
706 if (DateTime->compare($duedate,$today) == -1 ) { # duedate cannot be before now
707 $needsconfirmation{INVALID_DATE} = output_pref($duedate);
709 } else {
710 $issuingimpossible{INVALID_DATE} = output_pref($duedate);
714 # BORROWER STATUS
716 if ( $patron->category->category_type eq 'X' && ( $item->{barcode} )) {
717 # stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1 .
718 &UpdateStats({
719 branch => C4::Context->userenv->{'branch'},
720 type => 'localuse',
721 itemnumber => $item->{'itemnumber'},
722 itemtype => $effective_itemtype,
723 borrowernumber => $patron->borrowernumber,
724 ccode => $item->{'ccode'}}
726 ModDateLastSeen( $item->{'itemnumber'} );
727 return( { STATS => 1 }, {});
730 if ( $patron->gonenoaddress == 1 ) {
731 $issuingimpossible{GNA} = 1;
734 if ( $patron->lost == 1 ) {
735 $issuingimpossible{CARD_LOST} = 1;
737 if ( $patron->is_debarred ) {
738 $issuingimpossible{DEBARRED} = 1;
741 if ( $patron->is_expired ) {
742 $issuingimpossible{EXPIRED} = 1;
746 # BORROWER STATUS
749 # DEBTS
750 my $account = $patron->account;
751 my $balance = $account->balance;
752 my $non_issues_charges = $account->non_issues_charges;
753 my $other_charges = $balance - $non_issues_charges;
755 my $amountlimit = C4::Context->preference("noissuescharge");
756 my $allowfineoverride = C4::Context->preference("AllowFineOverride");
757 my $allfinesneedoverride = C4::Context->preference("AllFinesNeedOverride");
759 # Check the debt of this patrons guarantees
760 my $no_issues_charge_guarantees = C4::Context->preference("NoIssuesChargeGuarantees");
761 $no_issues_charge_guarantees = undef unless looks_like_number( $no_issues_charge_guarantees );
762 if ( defined $no_issues_charge_guarantees ) {
763 my @guarantees = $patron->guarantees();
764 my $guarantees_non_issues_charges;
765 foreach my $g ( @guarantees ) {
766 $guarantees_non_issues_charges += $g->account->non_issues_charges;
769 if ( $guarantees_non_issues_charges > $no_issues_charge_guarantees && !$inprocess && !$allowfineoverride) {
770 $issuingimpossible{DEBT_GUARANTEES} = $guarantees_non_issues_charges;
771 } elsif ( $guarantees_non_issues_charges > $no_issues_charge_guarantees && !$inprocess && $allowfineoverride) {
772 $needsconfirmation{DEBT_GUARANTEES} = $guarantees_non_issues_charges;
773 } elsif ( $allfinesneedoverride && $guarantees_non_issues_charges > 0 && $guarantees_non_issues_charges <= $no_issues_charge_guarantees && !$inprocess ) {
774 $needsconfirmation{DEBT_GUARANTEES} = $guarantees_non_issues_charges;
778 if ( C4::Context->preference("IssuingInProcess") ) {
779 if ( $non_issues_charges > $amountlimit && !$inprocess && !$allowfineoverride) {
780 $issuingimpossible{DEBT} = $non_issues_charges;
781 } elsif ( $non_issues_charges > $amountlimit && !$inprocess && $allowfineoverride) {
782 $needsconfirmation{DEBT} = $non_issues_charges;
783 } elsif ( $allfinesneedoverride && $non_issues_charges > 0 && $non_issues_charges <= $amountlimit && !$inprocess ) {
784 $needsconfirmation{DEBT} = $non_issues_charges;
787 else {
788 if ( $non_issues_charges > $amountlimit && $allowfineoverride ) {
789 $needsconfirmation{DEBT} = $non_issues_charges;
790 } elsif ( $non_issues_charges > $amountlimit && !$allowfineoverride) {
791 $issuingimpossible{DEBT} = $non_issues_charges;
792 } elsif ( $non_issues_charges > 0 && $allfinesneedoverride ) {
793 $needsconfirmation{DEBT} = $non_issues_charges;
797 if ($balance > 0 && $other_charges > 0) {
798 $alerts{OTHER_CHARGES} = sprintf( "%.2f", $other_charges );
801 $patron = Koha::Patrons->find( $patron->borrowernumber ); # FIXME Refetch just in case, to avoid regressions. But must not be needed
802 $patron_unblessed = $patron->unblessed;
804 if ( my $debarred_date = $patron->is_debarred ) {
805 # patron has accrued fine days or has a restriction. $count is a date
806 if ($debarred_date eq '9999-12-31') {
807 $issuingimpossible{USERBLOCKEDNOENDDATE} = $debarred_date;
809 else {
810 $issuingimpossible{USERBLOCKEDWITHENDDATE} = $debarred_date;
812 } elsif ( my $num_overdues = $patron->has_overdues ) {
813 ## patron has outstanding overdue loans
814 if ( C4::Context->preference("OverduesBlockCirc") eq 'block'){
815 $issuingimpossible{USERBLOCKEDOVERDUE} = $num_overdues;
817 elsif ( C4::Context->preference("OverduesBlockCirc") eq 'confirmation'){
818 $needsconfirmation{USERBLOCKEDOVERDUE} = $num_overdues;
823 # CHECK IF BOOK ALREADY ISSUED TO THIS BORROWER
825 if ( $issue && $issue->borrowernumber eq $patron->borrowernumber ){
827 # Already issued to current borrower.
828 # If it is an on-site checkout if it can be switched to a normal checkout
829 # or ask whether the loan should be renewed
831 if ( $issue->onsite_checkout
832 and C4::Context->preference('SwitchOnSiteCheckouts') ) {
833 $messages{ONSITE_CHECKOUT_WILL_BE_SWITCHED} = 1;
834 } else {
835 my ($CanBookBeRenewed,$renewerror) = CanBookBeRenewed(
836 $patron->borrowernumber,
837 $item->{'itemnumber'},
839 if ( $CanBookBeRenewed == 0 ) { # no more renewals allowed
840 if ( $renewerror eq 'onsite_checkout' ) {
841 $issuingimpossible{NO_RENEWAL_FOR_ONSITE_CHECKOUTS} = 1;
843 else {
844 $issuingimpossible{NO_MORE_RENEWALS} = 1;
847 else {
848 $needsconfirmation{RENEW_ISSUE} = 1;
852 elsif ( $issue ) {
854 # issued to someone else
856 my $patron = Koha::Patrons->find( $issue->borrowernumber );
858 my ( $can_be_returned, $message ) = CanBookBeReturned( $item, C4::Context->userenv->{branch} );
860 unless ( $can_be_returned ) {
861 $issuingimpossible{RETURN_IMPOSSIBLE} = 1;
862 $issuingimpossible{branch_to_return} = $message;
863 } else {
864 $needsconfirmation{ISSUED_TO_ANOTHER} = 1;
865 $needsconfirmation{issued_firstname} = $patron->firstname;
866 $needsconfirmation{issued_surname} = $patron->surname;
867 $needsconfirmation{issued_cardnumber} = $patron->cardnumber;
868 $needsconfirmation{issued_borrowernumber} = $patron->borrowernumber;
872 # JB34 CHECKS IF BORROWERS DON'T HAVE ISSUE TOO MANY BOOKS
874 my $switch_onsite_checkout = (
875 C4::Context->preference('SwitchOnSiteCheckouts')
876 and $issue
877 and $issue->onsite_checkout
878 and $issue->borrowernumber == $patron->borrowernumber ? 1 : 0 );
879 my $toomany = TooMany( $patron_unblessed, $item->{biblionumber}, $item, { onsite_checkout => $onsite_checkout, switch_onsite_checkout => $switch_onsite_checkout, } );
880 # if TooMany max_allowed returns 0 the user doesn't have permission to check out this book
881 if ( $toomany && not exists $needsconfirmation{RENEW_ISSUE} ) {
882 if ( $toomany->{max_allowed} == 0 ) {
883 $needsconfirmation{PATRON_CANT} = 1;
885 if ( C4::Context->preference("AllowTooManyOverride") ) {
886 $needsconfirmation{TOO_MANY} = $toomany->{reason};
887 $needsconfirmation{current_loan_count} = $toomany->{count};
888 $needsconfirmation{max_loans_allowed} = $toomany->{max_allowed};
889 } else {
890 $issuingimpossible{TOO_MANY} = $toomany->{reason};
891 $issuingimpossible{current_loan_count} = $toomany->{count};
892 $issuingimpossible{max_loans_allowed} = $toomany->{max_allowed};
897 # CHECKPREVCHECKOUT: CHECK IF ITEM HAS EVER BEEN LENT TO PATRON
899 $patron = Koha::Patrons->find( $patron->borrowernumber ); # FIXME Refetch just in case, to avoid regressions. But must not be needed
900 my $wants_check = $patron->wants_check_for_previous_checkout;
901 $needsconfirmation{PREVISSUE} = 1
902 if ($wants_check and $patron->do_check_for_previous_checkout($item));
905 # ITEM CHECKING
907 if ( $item->{'notforloan'} )
909 if(!C4::Context->preference("AllowNotForLoanOverride")){
910 $issuingimpossible{NOT_FOR_LOAN} = 1;
911 $issuingimpossible{item_notforloan} = $item->{'notforloan'};
912 }else{
913 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
914 $needsconfirmation{item_notforloan} = $item->{'notforloan'};
917 else {
918 # we have to check itemtypes.notforloan also
919 if (C4::Context->preference('item-level_itypes')){
920 # this should probably be a subroutine
921 my $sth = $dbh->prepare("SELECT notforloan FROM itemtypes WHERE itemtype = ?");
922 $sth->execute($effective_itemtype);
923 my $notforloan=$sth->fetchrow_hashref();
924 if ($notforloan->{'notforloan'}) {
925 if (!C4::Context->preference("AllowNotForLoanOverride")) {
926 $issuingimpossible{NOT_FOR_LOAN} = 1;
927 $issuingimpossible{itemtype_notforloan} = $effective_itemtype;
928 } else {
929 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
930 $needsconfirmation{itemtype_notforloan} = $effective_itemtype;
934 else {
935 my $itemtype = Koha::ItemTypes->find($biblioitem->itemtype);
936 if ( $itemtype and $itemtype->notforloan == 1){
937 if (!C4::Context->preference("AllowNotForLoanOverride")) {
938 $issuingimpossible{NOT_FOR_LOAN} = 1;
939 $issuingimpossible{itemtype_notforloan} = $effective_itemtype;
940 } else {
941 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
942 $needsconfirmation{itemtype_notforloan} = $effective_itemtype;
947 if ( $item->{'withdrawn'} && $item->{'withdrawn'} > 0 )
949 $issuingimpossible{WTHDRAWN} = 1;
951 if ( $item->{'restricted'}
952 && $item->{'restricted'} == 1 )
954 $issuingimpossible{RESTRICTED} = 1;
956 if ( $item->{'itemlost'} && C4::Context->preference("IssueLostItem") ne 'nothing' ) {
957 my $av = Koha::AuthorisedValues->search({ category => 'LOST', authorised_value => $item->{itemlost} });
958 my $code = $av->count ? $av->next->lib : '';
959 $needsconfirmation{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'confirm' );
960 $alerts{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'alert' );
962 if ( C4::Context->preference("IndependentBranches") ) {
963 my $userenv = C4::Context->userenv;
964 unless ( C4::Context->IsSuperLibrarian() ) {
965 if ( $item->{C4::Context->preference("HomeOrHoldingBranch")} ne $userenv->{branch} ){
966 $issuingimpossible{ITEMNOTSAMEBRANCH} = 1;
967 $issuingimpossible{'itemhomebranch'} = $item->{C4::Context->preference("HomeOrHoldingBranch")};
969 $needsconfirmation{BORRNOTSAMEBRANCH} = $patron->branchcode
970 if ( $patron->branchcode ne $userenv->{branch} );
974 # CHECK IF THERE IS RENTAL CHARGES. RENTAL MUST BE CONFIRMED BY THE BORROWER
976 my $rentalConfirmation = C4::Context->preference("RentalFeesCheckoutConfirmation");
978 if ( $rentalConfirmation ){
979 my ($rentalCharge) = GetIssuingCharges( $item->{'itemnumber'}, $patron->borrowernumber );
980 if ( $rentalCharge > 0 ){
981 $needsconfirmation{RENTALCHARGE} = $rentalCharge;
985 unless ( $ignore_reserves ) {
986 # See if the item is on reserve.
987 my ( $restype, $res ) = C4::Reserves::CheckReserves( $item->{'itemnumber'} );
988 if ($restype) {
989 my $resbor = $res->{'borrowernumber'};
990 if ( $resbor ne $patron->borrowernumber ) {
991 my $patron = Koha::Patrons->find( $resbor );
992 if ( $restype eq "Waiting" )
994 # The item is on reserve and waiting, but has been
995 # reserved by some other patron.
996 $needsconfirmation{RESERVE_WAITING} = 1;
997 $needsconfirmation{'resfirstname'} = $patron->firstname;
998 $needsconfirmation{'ressurname'} = $patron->surname;
999 $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1000 $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1001 $needsconfirmation{'resbranchcode'} = $res->{branchcode};
1002 $needsconfirmation{'reswaitingdate'} = $res->{'waitingdate'};
1004 elsif ( $restype eq "Reserved" ) {
1005 # The item is on reserve for someone else.
1006 $needsconfirmation{RESERVED} = 1;
1007 $needsconfirmation{'resfirstname'} = $patron->firstname;
1008 $needsconfirmation{'ressurname'} = $patron->surname;
1009 $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1010 $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1011 $needsconfirmation{'resbranchcode'} = $patron->branchcode;
1012 $needsconfirmation{'resreservedate'} = $res->{reservedate};
1018 ## CHECK AGE RESTRICTION
1019 my $agerestriction = $biblioitem->agerestriction;
1020 my ($restriction_age, $daysToAgeRestriction) = GetAgeRestriction( $agerestriction, $patron->unblessed );
1021 if ( $daysToAgeRestriction && $daysToAgeRestriction > 0 ) {
1022 if ( C4::Context->preference('AgeRestrictionOverride') ) {
1023 $needsconfirmation{AGE_RESTRICTION} = "$agerestriction";
1025 else {
1026 $issuingimpossible{AGE_RESTRICTION} = "$agerestriction";
1030 ## check for high holds decreasing loan period
1031 if ( C4::Context->preference('decreaseLoanHighHolds') ) {
1032 my $check = checkHighHolds( $item, $patron_unblessed );
1034 if ( $check->{exceeded} ) {
1035 if ($override_high_holds) {
1036 $alerts{HIGHHOLDS} = {
1037 num_holds => $check->{outstanding},
1038 duration => $check->{duration},
1039 returndate => output_pref( { dt => dt_from_string($check->{due_date}), dateformat => 'iso', timeformat => '24hr' }),
1042 else {
1043 $needsconfirmation{HIGHHOLDS} = {
1044 num_holds => $check->{outstanding},
1045 duration => $check->{duration},
1046 returndate => output_pref( { dt => dt_from_string($check->{due_date}), dateformat => 'iso', timeformat => '24hr' }),
1052 if (
1053 !C4::Context->preference('AllowMultipleIssuesOnABiblio') &&
1054 # don't do the multiple loans per bib check if we've
1055 # already determined that we've got a loan on the same item
1056 !$issuingimpossible{NO_MORE_RENEWALS} &&
1057 !$needsconfirmation{RENEW_ISSUE}
1059 # Check if borrower has already issued an item from the same biblio
1060 # Only if it's not a subscription
1061 my $biblionumber = $item->{biblionumber};
1062 require C4::Serials;
1063 my $is_a_subscription = C4::Serials::CountSubscriptionFromBiblionumber($biblionumber);
1064 unless ($is_a_subscription) {
1065 # FIXME Should be $patron->checkouts($args);
1066 my $checkouts = Koha::Checkouts->search(
1068 borrowernumber => $patron->borrowernumber,
1069 biblionumber => $biblionumber,
1072 join => 'item',
1075 # if we get here, we don't already have a loan on this item,
1076 # so if there are any loans on this bib, ask for confirmation
1077 if ( $checkouts->count ) {
1078 $needsconfirmation{BIBLIO_ALREADY_ISSUED} = 1;
1083 return ( \%issuingimpossible, \%needsconfirmation, \%alerts, \%messages, );
1086 =head2 CanBookBeReturned
1088 ($returnallowed, $message) = CanBookBeReturned($item, $branch)
1090 Check whether the item can be returned to the provided branch
1092 =over 4
1094 =item C<$item> is a hash of item information as returned from GetItem
1096 =item C<$branch> is the branchcode where the return is taking place
1098 =back
1100 Returns:
1102 =over 4
1104 =item C<$returnallowed> is 0 or 1, corresponding to whether the return is allowed (1) or not (0)
1106 =item C<$message> is the branchcode where the item SHOULD be returned, if the return is not allowed
1108 =back
1110 =cut
1112 sub CanBookBeReturned {
1113 my ($item, $branch) = @_;
1114 my $allowreturntobranch = C4::Context->preference("AllowReturnToBranch") || 'anywhere';
1116 # assume return is allowed to start
1117 my $allowed = 1;
1118 my $message;
1120 # identify all cases where return is forbidden
1121 if ($allowreturntobranch eq 'homebranch' && $branch ne $item->{'homebranch'}) {
1122 $allowed = 0;
1123 $message = $item->{'homebranch'};
1124 } elsif ($allowreturntobranch eq 'holdingbranch' && $branch ne $item->{'holdingbranch'}) {
1125 $allowed = 0;
1126 $message = $item->{'holdingbranch'};
1127 } elsif ($allowreturntobranch eq 'homeorholdingbranch' && $branch ne $item->{'homebranch'} && $branch ne $item->{'holdingbranch'}) {
1128 $allowed = 0;
1129 $message = $item->{'homebranch'}; # FIXME: choice of homebranch is arbitrary
1132 return ($allowed, $message);
1135 =head2 CheckHighHolds
1137 used when syspref decreaseLoanHighHolds is active. Returns 1 or 0 to define whether the minimum value held in
1138 decreaseLoanHighHoldsValue is exceeded, the total number of outstanding holds, the number of days the loan
1139 has been decreased to (held in syspref decreaseLoanHighHoldsValue), and the new due date
1141 =cut
1143 sub checkHighHolds {
1144 my ( $item, $borrower ) = @_;
1145 my $branch = _GetCircControlBranch( $item, $borrower );
1146 my $item_object = Koha::Items->find( $item->{itemnumber} );
1148 my $return_data = {
1149 exceeded => 0,
1150 outstanding => 0,
1151 duration => 0,
1152 due_date => undef,
1155 my $holds = Koha::Holds->search( { biblionumber => $item->{'biblionumber'} } );
1157 if ( $holds->count() ) {
1158 $return_data->{outstanding} = $holds->count();
1160 my $decreaseLoanHighHoldsControl = C4::Context->preference('decreaseLoanHighHoldsControl');
1161 my $decreaseLoanHighHoldsValue = C4::Context->preference('decreaseLoanHighHoldsValue');
1162 my $decreaseLoanHighHoldsIgnoreStatuses = C4::Context->preference('decreaseLoanHighHoldsIgnoreStatuses');
1164 my @decreaseLoanHighHoldsIgnoreStatuses = split( /,/, $decreaseLoanHighHoldsIgnoreStatuses );
1166 if ( $decreaseLoanHighHoldsControl eq 'static' ) {
1168 # static means just more than a given number of holds on the record
1170 # If the number of holds is less than the threshold, we can stop here
1171 if ( $holds->count() < $decreaseLoanHighHoldsValue ) {
1172 return $return_data;
1175 elsif ( $decreaseLoanHighHoldsControl eq 'dynamic' ) {
1177 # dynamic means X more than the number of holdable items on the record
1179 # let's get the items
1180 my @items = $holds->next()->biblio()->items();
1182 # Remove any items with status defined to be ignored even if the would not make item unholdable
1183 foreach my $status (@decreaseLoanHighHoldsIgnoreStatuses) {
1184 @items = grep { !$_->$status } @items;
1187 # Remove any items that are not holdable for this patron
1188 @items = grep { CanItemBeReserved( $borrower->{borrowernumber}, $_->itemnumber )->{status} eq 'OK' } @items;
1190 my $items_count = scalar @items;
1192 my $threshold = $items_count + $decreaseLoanHighHoldsValue;
1194 # If the number of holds is less than the count of items we have
1195 # plus the number of holds allowed above that count, we can stop here
1196 if ( $holds->count() <= $threshold ) {
1197 return $return_data;
1201 my $issuedate = DateTime->now( time_zone => C4::Context->tz() );
1203 my $calendar = Koha::Calendar->new( branchcode => $branch );
1205 my $itype = $item_object->effective_itemtype;
1206 my $orig_due = C4::Circulation::CalcDateDue( $issuedate, $itype, $branch, $borrower );
1208 my $decreaseLoanHighHoldsDuration = C4::Context->preference('decreaseLoanHighHoldsDuration');
1210 my $reduced_datedue = $calendar->addDate( $issuedate, $decreaseLoanHighHoldsDuration );
1211 $reduced_datedue->set_hour($orig_due->hour);
1212 $reduced_datedue->set_minute($orig_due->minute);
1213 $reduced_datedue->truncate( to => 'minute' );
1215 if ( DateTime->compare( $reduced_datedue, $orig_due ) == -1 ) {
1216 $return_data->{exceeded} = 1;
1217 $return_data->{duration} = $decreaseLoanHighHoldsDuration;
1218 $return_data->{due_date} = $reduced_datedue;
1222 return $return_data;
1225 =head2 AddIssue
1227 &AddIssue($borrower, $barcode, [$datedue], [$cancelreserve], [$issuedate])
1229 Issue a book. Does no check, they are done in CanBookBeIssued. If we reach this sub, it means the user confirmed if needed.
1231 =over 4
1233 =item C<$borrower> is a hash with borrower informations (from Koha::Patron->unblessed).
1235 =item C<$barcode> is the barcode of the item being issued.
1237 =item C<$datedue> is a DateTime object for the max date of return, i.e. the date due (optional).
1238 Calculated if empty.
1240 =item C<$cancelreserve> is 1 to override and cancel any pending reserves for the item (optional).
1242 =item C<$issuedate> is the date to issue the item in iso (YYYY-MM-DD) format (optional).
1243 Defaults to today. Unlike C<$datedue>, NOT a DateTime object, unfortunately.
1245 AddIssue does the following things :
1247 - step 01: check that there is a borrowernumber & a barcode provided
1248 - check for RENEWAL (book issued & being issued to the same patron)
1249 - renewal YES = Calculate Charge & renew
1250 - renewal NO =
1251 * BOOK ACTUALLY ISSUED ? do a return if book is actually issued (but to someone else)
1252 * RESERVE PLACED ?
1253 - fill reserve if reserve to this patron
1254 - cancel reserve or not, otherwise
1255 * TRANSFERT PENDING ?
1256 - complete the transfert
1257 * ISSUE THE BOOK
1259 =back
1261 =cut
1263 sub AddIssue {
1264 my ( $borrower, $barcode, $datedue, $cancelreserve, $issuedate, $sipmode, $params ) = @_;
1266 my $onsite_checkout = $params && $params->{onsite_checkout} ? 1 : 0;
1267 my $switch_onsite_checkout = $params && $params->{switch_onsite_checkout};
1268 my $auto_renew = $params && $params->{auto_renew};
1269 my $dbh = C4::Context->dbh;
1270 my $barcodecheck = CheckValidBarcode($barcode);
1272 my $issue;
1274 if ( $datedue && ref $datedue ne 'DateTime' ) {
1275 $datedue = dt_from_string($datedue);
1278 # $issuedate defaults to today.
1279 if ( !defined $issuedate ) {
1280 $issuedate = DateTime->now( time_zone => C4::Context->tz() );
1282 else {
1283 if ( ref $issuedate ne 'DateTime' ) {
1284 $issuedate = dt_from_string($issuedate);
1289 # Stop here if the patron or barcode doesn't exist
1290 if ( $borrower && $barcode && $barcodecheck ) {
1291 # find which item we issue
1292 my $item = GetItem( '', $barcode )
1293 or return; # if we don't get an Item, abort.
1294 my $item_object = Koha::Items->find( { barcode => $barcode } );
1296 my $branch = _GetCircControlBranch( $item, $borrower );
1298 # get actual issuing if there is one
1299 my $actualissue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
1301 # check if we just renew the issue.
1302 if ( $actualissue and $actualissue->borrowernumber eq $borrower->{'borrowernumber'}
1303 and not $switch_onsite_checkout ) {
1304 $datedue = AddRenewal(
1305 $borrower->{'borrowernumber'},
1306 $item->{'itemnumber'},
1307 $branch,
1308 $datedue,
1309 $issuedate, # here interpreted as the renewal date
1312 else {
1313 # it's NOT a renewal
1314 if ( $actualissue and not $switch_onsite_checkout ) {
1315 # This book is currently on loan, but not to the person
1316 # who wants to borrow it now. mark it returned before issuing to the new borrower
1317 my ( $allowed, $message ) = CanBookBeReturned( $item, C4::Context->userenv->{branch} );
1318 return unless $allowed;
1319 AddReturn( $item->{'barcode'}, C4::Context->userenv->{'branch'} );
1322 C4::Reserves::MoveReserve( $item->{'itemnumber'}, $borrower->{'borrowernumber'}, $cancelreserve );
1324 # Starting process for transfer job (checking transfert and validate it if we have one)
1325 my ($datesent) = GetTransfers( $item->{'itemnumber'} );
1326 if ($datesent) {
1327 # updating line of branchtranfert to finish it, and changing the to branch value, implement a comment for visibility of this case (maybe for stats ....)
1328 my $sth = $dbh->prepare(
1329 "UPDATE branchtransfers
1330 SET datearrived = now(),
1331 tobranch = ?,
1332 comments = 'Forced branchtransfer'
1333 WHERE itemnumber= ? AND datearrived IS NULL"
1335 $sth->execute( C4::Context->userenv->{'branch'},
1336 $item->{'itemnumber'} );
1339 # If automatic renewal wasn't selected while issuing, set the value according to the issuing rule.
1340 unless ($auto_renew) {
1341 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
1342 { categorycode => $borrower->{categorycode},
1343 itemtype => $item->{itype},
1344 branchcode => $branch
1348 $auto_renew = $issuing_rule->auto_renew if $issuing_rule;
1351 # Record in the database the fact that the book was issued.
1352 unless ($datedue) {
1353 my $itype = $item_object->effective_itemtype;
1354 $datedue = CalcDateDue( $issuedate, $itype, $branch, $borrower );
1357 $datedue->truncate( to => 'minute' );
1359 my $issue_attributes = {
1360 borrowernumber => $borrower->{'borrowernumber'},
1361 issuedate => $issuedate->strftime('%Y-%m-%d %H:%M:%S'),
1362 date_due => $datedue->strftime('%Y-%m-%d %H:%M:%S'),
1363 branchcode => C4::Context->userenv->{'branch'},
1364 onsite_checkout => $onsite_checkout,
1365 auto_renew => $auto_renew ? 1 : 0,
1368 $issue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
1369 if ($issue) {
1370 $issue->set($issue_attributes)->store;
1372 else {
1373 $issue = Koha::Checkout->new(
1375 itemnumber => $item->{itemnumber},
1376 %$issue_attributes,
1378 )->store;
1381 if ( C4::Context->preference('ReturnToShelvingCart') ) {
1382 # ReturnToShelvingCart is on, anything issued should be taken off the cart.
1383 CartToShelf( $item->{'itemnumber'} );
1385 $item->{'issues'}++;
1386 if ( C4::Context->preference('UpdateTotalIssuesOnCirc') ) {
1387 UpdateTotalIssues( $item->{'biblionumber'}, 1 );
1390 ## If item was lost, it has now been found, reverse any list item charges if necessary.
1391 if ( $item->{'itemlost'} ) {
1392 if (
1393 Koha::RefundLostItemFeeRules->should_refund(
1395 current_branch => C4::Context->userenv->{branch},
1396 item_home_branch => $item->{homebranch},
1397 item_holding_branch => $item->{holdingbranch}
1402 _FixAccountForLostAndReturned( $item->{'itemnumber'}, undef,
1403 $item->{'barcode'} );
1407 ModItem(
1409 issues => $item->{'issues'},
1410 holdingbranch => C4::Context->userenv->{'branch'},
1411 itemlost => 0,
1412 onloan => $datedue->ymd(),
1413 datelastborrowed => DateTime->now( time_zone => C4::Context->tz() )->ymd(),
1415 $item->{'biblionumber'},
1416 $item->{'itemnumber'},
1417 { log_action => 0 }
1419 ModDateLastSeen( $item->{'itemnumber'} );
1421 # If it costs to borrow this book, charge it to the patron's account.
1422 my ( $charge, $itemtype ) = GetIssuingCharges( $item->{'itemnumber'}, $borrower->{'borrowernumber'} );
1423 if ( $charge > 0 ) {
1424 AddIssuingCharge( $issue, $charge );
1425 $item->{'charge'} = $charge;
1428 # Record the fact that this book was issued.
1429 &UpdateStats(
1431 branch => C4::Context->userenv->{'branch'},
1432 type => ( $onsite_checkout ? 'onsite_checkout' : 'issue' ),
1433 amount => $charge,
1434 other => ( $sipmode ? "SIP-$sipmode" : '' ),
1435 itemnumber => $item->{'itemnumber'},
1436 itemtype => $item->{'itype'},
1437 location => $item->{location},
1438 borrowernumber => $borrower->{'borrowernumber'},
1439 ccode => $item->{'ccode'}
1443 # Send a checkout slip.
1444 my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1445 my %conditions = (
1446 branchcode => $branch,
1447 categorycode => $borrower->{categorycode},
1448 item_type => $item->{itype},
1449 notification => 'CHECKOUT',
1451 if ( $circulation_alert->is_enabled_for( \%conditions ) ) {
1452 SendCirculationAlert(
1454 type => 'CHECKOUT',
1455 item => $item,
1456 borrower => $borrower,
1457 branch => $branch,
1461 logaction(
1462 "CIRCULATION", "ISSUE",
1463 $borrower->{'borrowernumber'},
1464 $item->{'itemnumber'}
1465 ) if C4::Context->preference("IssueLog");
1468 return $issue;
1471 =head2 GetLoanLength
1473 my $loanlength = &GetLoanLength($borrowertype,$itemtype,branchcode)
1475 Get loan length for an itemtype, a borrower type and a branch
1477 =cut
1479 sub GetLoanLength {
1480 my ( $borrowertype, $itemtype, $branchcode ) = @_;
1481 my $dbh = C4::Context->dbh;
1482 my $sth = $dbh->prepare(qq{
1483 SELECT issuelength, lengthunit, renewalperiod
1484 FROM issuingrules
1485 WHERE categorycode=?
1486 AND itemtype=?
1487 AND branchcode=?
1488 AND issuelength IS NOT NULL
1491 # try to find issuelength & return the 1st available.
1492 # check with borrowertype, itemtype and branchcode, then without one of those parameters
1493 $sth->execute( $borrowertype, $itemtype, $branchcode );
1494 my $loanlength = $sth->fetchrow_hashref;
1496 return $loanlength
1497 if defined($loanlength) && defined $loanlength->{issuelength};
1499 $sth->execute( $borrowertype, '*', $branchcode );
1500 $loanlength = $sth->fetchrow_hashref;
1501 return $loanlength
1502 if defined($loanlength) && defined $loanlength->{issuelength};
1504 $sth->execute( '*', $itemtype, $branchcode );
1505 $loanlength = $sth->fetchrow_hashref;
1506 return $loanlength
1507 if defined($loanlength) && defined $loanlength->{issuelength};
1509 $sth->execute( '*', '*', $branchcode );
1510 $loanlength = $sth->fetchrow_hashref;
1511 return $loanlength
1512 if defined($loanlength) && defined $loanlength->{issuelength};
1514 $sth->execute( $borrowertype, $itemtype, '*' );
1515 $loanlength = $sth->fetchrow_hashref;
1516 return $loanlength
1517 if defined($loanlength) && defined $loanlength->{issuelength};
1519 $sth->execute( $borrowertype, '*', '*' );
1520 $loanlength = $sth->fetchrow_hashref;
1521 return $loanlength
1522 if defined($loanlength) && defined $loanlength->{issuelength};
1524 $sth->execute( '*', $itemtype, '*' );
1525 $loanlength = $sth->fetchrow_hashref;
1526 return $loanlength
1527 if defined($loanlength) && defined $loanlength->{issuelength};
1529 $sth->execute( '*', '*', '*' );
1530 $loanlength = $sth->fetchrow_hashref;
1531 return $loanlength
1532 if defined($loanlength) && defined $loanlength->{issuelength};
1534 # if no rule is set => 0 day (hardcoded)
1535 return {
1536 issuelength => 0,
1537 renewalperiod => 0,
1538 lengthunit => 'days',
1544 =head2 GetHardDueDate
1546 my ($hardduedate,$hardduedatecompare) = &GetHardDueDate($borrowertype,$itemtype,branchcode)
1548 Get the Hard Due Date and it's comparison for an itemtype, a borrower type and a branch
1550 =cut
1552 sub GetHardDueDate {
1553 my ( $borrowertype, $itemtype, $branchcode ) = @_;
1555 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
1556 { categorycode => $borrowertype,
1557 itemtype => $itemtype,
1558 branchcode => $branchcode
1563 if ( defined( $issuing_rule ) ) {
1564 if ( $issuing_rule->hardduedate ) {
1565 return (dt_from_string($issuing_rule->hardduedate, 'iso'),$issuing_rule->hardduedatecompare);
1566 } else {
1567 return (undef, undef);
1572 =head2 GetBranchBorrowerCircRule
1574 my $branch_cat_rule = GetBranchBorrowerCircRule($branchcode, $categorycode);
1576 Retrieves circulation rule attributes that apply to the given
1577 branch and patron category, regardless of item type.
1578 The return value is a hashref containing the following key:
1580 maxissueqty - maximum number of loans that a
1581 patron of the given category can have at the given
1582 branch. If the value is undef, no limit.
1584 maxonsiteissueqty - maximum of on-site checkouts that a
1585 patron of the given category can have at the given
1586 branch. If the value is undef, no limit.
1588 This will first check for a specific branch and
1589 category match from branch_borrower_circ_rules.
1591 If no rule is found, it will then check default_branch_circ_rules
1592 (same branch, default category). If no rule is found,
1593 it will then check default_borrower_circ_rules (default
1594 branch, same category), then failing that, default_circ_rules
1595 (default branch, default category).
1597 If no rule has been found in the database, it will default to
1598 the buillt in rule:
1600 maxissueqty - undef
1601 maxonsiteissueqty - undef
1603 C<$branchcode> and C<$categorycode> should contain the
1604 literal branch code and patron category code, respectively - no
1605 wildcards.
1607 =cut
1609 sub GetBranchBorrowerCircRule {
1610 my ( $branchcode, $categorycode ) = @_;
1612 my $rules;
1613 my $dbh = C4::Context->dbh();
1614 $rules = $dbh->selectrow_hashref( q|
1615 SELECT maxissueqty, maxonsiteissueqty
1616 FROM branch_borrower_circ_rules
1617 WHERE branchcode = ?
1618 AND categorycode = ?
1619 |, {}, $branchcode, $categorycode ) ;
1620 return $rules if $rules;
1622 # try same branch, default borrower category
1623 $rules = $dbh->selectrow_hashref( q|
1624 SELECT maxissueqty, maxonsiteissueqty
1625 FROM default_branch_circ_rules
1626 WHERE branchcode = ?
1627 |, {}, $branchcode ) ;
1628 return $rules if $rules;
1630 # try default branch, same borrower category
1631 $rules = $dbh->selectrow_hashref( q|
1632 SELECT maxissueqty, maxonsiteissueqty
1633 FROM default_borrower_circ_rules
1634 WHERE categorycode = ?
1635 |, {}, $categorycode ) ;
1636 return $rules if $rules;
1638 # try default branch, default borrower category
1639 $rules = $dbh->selectrow_hashref( q|
1640 SELECT maxissueqty, maxonsiteissueqty
1641 FROM default_circ_rules
1642 |, {} );
1643 return $rules if $rules;
1645 # built-in default circulation rule
1646 return {
1647 maxissueqty => undef,
1648 maxonsiteissueqty => undef,
1652 =head2 GetBranchItemRule
1654 my $branch_item_rule = GetBranchItemRule($branchcode, $itemtype);
1656 Retrieves circulation rule attributes that apply to the given
1657 branch and item type, regardless of patron category.
1659 The return value is a hashref containing the following keys:
1661 holdallowed => Hold policy for this branch and itemtype. Possible values:
1662 0: No holds allowed.
1663 1: Holds allowed only by patrons that have the same homebranch as the item.
1664 2: Holds allowed from any patron.
1666 returnbranch => branch to which to return item. Possible values:
1667 noreturn: do not return, let item remain where checked in (floating collections)
1668 homebranch: return to item's home branch
1669 holdingbranch: return to issuer branch
1671 This searches branchitemrules in the following order:
1673 * Same branchcode and itemtype
1674 * Same branchcode, itemtype '*'
1675 * branchcode '*', same itemtype
1676 * branchcode and itemtype '*'
1678 Neither C<$branchcode> nor C<$itemtype> should be '*'.
1680 =cut
1682 sub GetBranchItemRule {
1683 my ( $branchcode, $itemtype ) = @_;
1684 my $dbh = C4::Context->dbh();
1685 my $result = {};
1687 my @attempts = (
1688 ['SELECT holdallowed, returnbranch, hold_fulfillment_policy
1689 FROM branch_item_rules
1690 WHERE branchcode = ?
1691 AND itemtype = ?', $branchcode, $itemtype],
1692 ['SELECT holdallowed, returnbranch, hold_fulfillment_policy
1693 FROM default_branch_circ_rules
1694 WHERE branchcode = ?', $branchcode],
1695 ['SELECT holdallowed, returnbranch, hold_fulfillment_policy
1696 FROM default_branch_item_rules
1697 WHERE itemtype = ?', $itemtype],
1698 ['SELECT holdallowed, returnbranch, hold_fulfillment_policy
1699 FROM default_circ_rules'],
1702 foreach my $attempt (@attempts) {
1703 my ($query, @bind_params) = @{$attempt};
1704 my $search_result = $dbh->selectrow_hashref ( $query , {}, @bind_params )
1705 or next;
1707 # Since branch/category and branch/itemtype use the same per-branch
1708 # defaults tables, we have to check that the key we want is set, not
1709 # just that a row was returned
1710 $result->{'holdallowed'} = $search_result->{'holdallowed'} unless ( defined $result->{'holdallowed'} );
1711 $result->{'hold_fulfillment_policy'} = $search_result->{'hold_fulfillment_policy'} unless ( defined $result->{'hold_fulfillment_policy'} );
1712 $result->{'returnbranch'} = $search_result->{'returnbranch'} unless ( defined $result->{'returnbranch'} );
1715 # built-in default circulation rule
1716 $result->{'holdallowed'} = 2 unless ( defined $result->{'holdallowed'} );
1717 $result->{'hold_fulfillment_policy'} = 'any' unless ( defined $result->{'hold_fulfillment_policy'} );
1718 $result->{'returnbranch'} = 'homebranch' unless ( defined $result->{'returnbranch'} );
1720 return $result;
1723 =head2 AddReturn
1725 ($doreturn, $messages, $iteminformation, $borrower) =
1726 &AddReturn( $barcode, $branch [,$exemptfine] [,$dropbox] [,$returndate] );
1728 Returns a book.
1730 =over 4
1732 =item C<$barcode> is the bar code of the book being returned.
1734 =item C<$branch> is the code of the branch where the book is being returned.
1736 =item C<$exemptfine> indicates that overdue charges for the item will be
1737 removed. Optional.
1739 =item C<$dropbox> indicates that the check-in date is assumed to be
1740 yesterday, or the last non-holiday as defined in C4::Calendar . If
1741 overdue charges are applied and C<$dropbox> is true, the last charge
1742 will be removed. This assumes that the fines accrual script has run
1743 for _today_. Optional.
1745 =item C<$return_date> allows the default return date to be overridden
1746 by the given return date. Optional.
1748 =back
1750 C<&AddReturn> returns a list of four items:
1752 C<$doreturn> is true iff the return succeeded.
1754 C<$messages> is a reference-to-hash giving feedback on the operation.
1755 The keys of the hash are:
1757 =over 4
1759 =item C<BadBarcode>
1761 No item with this barcode exists. The value is C<$barcode>.
1763 =item C<NotIssued>
1765 The book is not currently on loan. The value is C<$barcode>.
1767 =item C<withdrawn>
1769 This book has been withdrawn/cancelled. The value should be ignored.
1771 =item C<Wrongbranch>
1773 This book has was returned to the wrong branch. The value is a hashref
1774 so that C<$messages->{Wrongbranch}->{Wrongbranch}> and C<$messages->{Wrongbranch}->{Rightbranch}>
1775 contain the branchcode of the incorrect and correct return library, respectively.
1777 =item C<ResFound>
1779 The item was reserved. The value is a reference-to-hash whose keys are
1780 fields from the reserves table of the Koha database, and
1781 C<biblioitemnumber>. It also has the key C<ResFound>, whose value is
1782 either C<Waiting>, C<Reserved>, or 0.
1784 =item C<WasReturned>
1786 Value 1 if return is successful.
1788 =item C<NeedsTransfer>
1790 If AutomaticItemReturn is disabled, return branch is given as value of NeedsTransfer.
1792 =back
1794 C<$iteminformation> is a reference-to-hash, giving information about the
1795 returned item from the issues table.
1797 C<$borrower> is a reference-to-hash, giving information about the
1798 patron who last borrowed the book.
1800 =cut
1802 sub AddReturn {
1803 my ( $barcode, $branch, $exemptfine, $dropbox, $return_date, $dropboxdate ) = @_;
1805 if ($branch and not Koha::Libraries->find($branch)) {
1806 warn "AddReturn error: branch '$branch' not found. Reverting to " . C4::Context->userenv->{'branch'};
1807 undef $branch;
1809 $branch = C4::Context->userenv->{'branch'} unless $branch; # we trust userenv to be a safe fallback/default
1810 my $messages;
1811 my $patron;
1812 my $doreturn = 1;
1813 my $validTransfert = 0;
1814 my $stat_type = 'return';
1816 # get information on item
1817 my $item = GetItem( undef, $barcode );
1818 unless ($item) {
1819 return ( 0, { BadBarcode => $barcode } ); # no barcode means no item or borrower. bail out.
1822 my $itemnumber = $item->{ itemnumber };
1823 my $itemtype = $item->{itype}; # GetItem called effective_itemtype
1825 my $issue = Koha::Checkouts->find( { itemnumber => $itemnumber } );
1826 if ( $issue ) {
1827 $patron = Koha::Patrons->find( $issue->borrowernumber )
1828 or die "Data inconsistency: barcode $barcode (itemnumber:$itemnumber) claims to be issued to non-existent borrowernumber '" . $issue->borrowernumber . "'\n"
1829 . Dumper($issue->unblessed) . "\n";
1830 } else {
1831 $messages->{'NotIssued'} = $barcode;
1832 ModItem({ onloan => undef }, $item->{biblionumber}, $item->{itemnumber}) if defined $item->{onloan};
1833 # even though item is not on loan, it may still be transferred; therefore, get current branch info
1834 $doreturn = 0;
1835 # No issue, no borrowernumber. ONLY if $doreturn, *might* you have a $borrower later.
1836 # Record this as a local use, instead of a return, if the RecordLocalUseOnReturn is on
1837 if (C4::Context->preference("RecordLocalUseOnReturn")) {
1838 $messages->{'LocalUse'} = 1;
1839 $stat_type = 'localuse';
1843 if ( $item->{'location'} eq 'PROC' ) {
1844 if ( C4::Context->preference("InProcessingToShelvingCart") ) {
1845 $item->{'location'} = 'CART';
1847 else {
1848 $item->{location} = $item->{permanent_location};
1851 ModItem( $item, $item->{'biblionumber'}, $item->{'itemnumber'}, { log_action => 0 } );
1854 # full item data, but no borrowernumber or checkout info (no issue)
1855 my $hbr = GetBranchItemRule($item->{'homebranch'}, $item->{'itype'})->{'returnbranch'} || "homebranch";
1856 # get the proper branch to which to return the item
1857 my $returnbranch = $item->{$hbr} || $branch ;
1858 # if $hbr was "noreturn" or any other non-item table value, then it should 'float' (i.e. stay at this branch)
1860 my $borrowernumber = $patron ? $patron->borrowernumber : undef; # we don't know if we had a borrower or not
1861 my $patron_unblessed = $patron ? $patron->unblessed : {};
1863 my $yaml = C4::Context->preference('UpdateNotForLoanStatusOnCheckin');
1864 if ($yaml) {
1865 $yaml = "$yaml\n\n"; # YAML is anal on ending \n. Surplus does not hurt
1866 my $rules;
1867 eval { $rules = YAML::Load($yaml); };
1868 if ($@) {
1869 warn "Unable to parse UpdateNotForLoanStatusOnCheckin syspref : $@";
1871 else {
1872 foreach my $key ( keys %$rules ) {
1873 if ( $item->{notforloan} eq $key ) {
1874 $messages->{'NotForLoanStatusUpdated'} = { from => $item->{notforloan}, to => $rules->{$key} };
1875 ModItem( { notforloan => $rules->{$key} }, undef, $itemnumber, { log_action => 0 } );
1876 last;
1882 # check if the return is allowed at this branch
1883 my ($returnallowed, $message) = CanBookBeReturned($item, $branch);
1884 unless ($returnallowed){
1885 $messages->{'Wrongbranch'} = {
1886 Wrongbranch => $branch,
1887 Rightbranch => $message
1889 $doreturn = 0;
1890 return ( $doreturn, $messages, $issue, $patron_unblessed);
1893 if ( $item->{'withdrawn'} ) { # book has been cancelled
1894 $messages->{'withdrawn'} = 1;
1895 $doreturn = 0 if C4::Context->preference("BlockReturnOfWithdrawnItems");
1898 if ( $item->{itemlost} and C4::Context->preference("BlockReturnOfLostItems") ) {
1899 $doreturn = 0;
1902 # case of a return of document (deal with issues and holdingbranch)
1903 my $today = DateTime->now( time_zone => C4::Context->tz() );
1905 if ($doreturn) {
1906 my $is_overdue;
1907 die "The item is not issed and cannot be returned" unless $issue; # Just in case...
1908 $patron or warn "AddReturn without current borrower";
1909 my $circControlBranch;
1910 if ($dropbox) {
1911 # define circControlBranch only if dropbox mode is set
1912 # don't allow dropbox mode to create an invalid entry in issues (issuedate > today)
1913 # FIXME: check issuedate > returndate, factoring in holidays
1915 $circControlBranch = _GetCircControlBranch($item,$patron_unblessed);
1916 $is_overdue = $issue->is_overdue( $dropboxdate );
1917 } else {
1918 $is_overdue = $issue->is_overdue;
1921 if ($patron) {
1922 eval {
1923 MarkIssueReturned( $borrowernumber, $item->{'itemnumber'},
1924 $circControlBranch, $return_date, $patron->privacy );
1926 unless ( $@ ) {
1927 if ( ( C4::Context->preference('CalculateFinesOnReturn') && $is_overdue ) || $return_date ) {
1928 _CalculateAndUpdateFine( { issue => $issue, item => $item, borrower => $patron_unblessed, return_date => $return_date } );
1930 } else {
1931 carp "The checkin for the following issue failed, Please go to the about page, section 'data corrupted' to know how to fix this problem ($@)" . Dumper( $issue->unblessed );
1933 return ( 0, { WasReturned => 0, DataCorrupted => 1 }, $issue, $patron_unblessed );
1936 # FIXME is the "= 1" right? This could be the borrower hash.
1937 $messages->{'WasReturned'} = 1;
1941 ModItem( { onloan => undef }, $item->{biblionumber}, $item->{itemnumber}, { log_action => 0 } );
1944 # the holdingbranch is updated if the document is returned to another location.
1945 # this is always done regardless of whether the item was on loan or not
1946 my $item_holding_branch = $item->{ holdingbranch };
1947 if ($item->{'holdingbranch'} ne $branch) {
1948 UpdateHoldingbranch($branch, $item->{'itemnumber'});
1949 $item->{'holdingbranch'} = $branch; # update item data holdingbranch too
1952 my $leave_item_lost = C4::Context->preference("BlockReturnOfLostItems") ? 1 : 0;
1953 ModDateLastSeen( $item->{itemnumber}, $leave_item_lost );
1955 # check if we have a transfer for this document
1956 my ($datesent,$frombranch,$tobranch) = GetTransfers( $item->{'itemnumber'} );
1958 # if we have a transfer to do, we update the line of transfers with the datearrived
1959 my $is_in_rotating_collection = C4::RotatingCollections::isItemInAnyCollection( $item->{'itemnumber'} );
1960 if ($datesent) {
1961 if ( $tobranch eq $branch ) {
1962 my $sth = C4::Context->dbh->prepare(
1963 "UPDATE branchtransfers SET datearrived = now() WHERE itemnumber= ? AND datearrived IS NULL"
1965 $sth->execute( $item->{'itemnumber'} );
1966 # if we have a reservation with valid transfer, we can set it's status to 'W'
1967 ShelfToCart( $item->{'itemnumber'} ) if ( C4::Context->preference("ReturnToShelvingCart") );
1968 C4::Reserves::ModReserveStatus($item->{'itemnumber'}, 'W');
1969 } else {
1970 $messages->{'WrongTransfer'} = $tobranch;
1971 $messages->{'WrongTransferItem'} = $item->{'itemnumber'};
1973 $validTransfert = 1;
1974 } else {
1975 ShelfToCart( $item->{'itemnumber'} ) if ( C4::Context->preference("ReturnToShelvingCart") );
1978 # fix up the accounts.....
1979 if ( $item->{'itemlost'} ) {
1980 $messages->{'WasLost'} = 1;
1981 unless ( C4::Context->preference("BlockReturnOfLostItems") ) {
1982 if (
1983 Koha::RefundLostItemFeeRules->should_refund(
1985 current_branch => C4::Context->userenv->{branch},
1986 item_home_branch => $item->{homebranch},
1987 item_holding_branch => $item_holding_branch
1992 _FixAccountForLostAndReturned( $item->{'itemnumber'},
1993 $borrowernumber, $barcode );
1994 $messages->{'LostItemFeeRefunded'} = 1;
1999 # fix up the overdues in accounts...
2000 if ($borrowernumber) {
2001 my $fix = _FixOverduesOnReturn($borrowernumber, $item->{itemnumber}, $exemptfine, $dropbox);
2002 defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $item->{itemnumber}...) failed!"; # zero is OK, check defined
2004 if ( $issue and $issue->is_overdue ) {
2005 # fix fine days
2006 $today = dt_from_string($return_date) if $return_date;
2007 $today = $dropboxdate if $dropbox;
2008 my ($debardate,$reminder) = _debar_user_on_return( $patron_unblessed, $item, dt_from_string($issue->date_due), $today );
2009 if ($reminder){
2010 $messages->{'PrevDebarred'} = $debardate;
2011 } else {
2012 $messages->{'Debarred'} = $debardate if $debardate;
2014 # there's no overdue on the item but borrower had been previously debarred
2015 } elsif ( $issue->date_due and $patron->debarred ) {
2016 if ( $patron->debarred eq "9999-12-31") {
2017 $messages->{'ForeverDebarred'} = $patron->debarred;
2018 } else {
2019 my $borrower_debar_dt = dt_from_string( $patron->debarred );
2020 $borrower_debar_dt->truncate(to => 'day');
2021 my $today_dt = $today->clone()->truncate(to => 'day');
2022 if ( DateTime->compare( $borrower_debar_dt, $today_dt ) != -1 ) {
2023 $messages->{'PrevDebarred'} = $patron->debarred;
2029 # find reserves.....
2030 # if we don't have a reserve with the status W, we launch the Checkreserves routine
2031 my ($resfound, $resrec);
2032 my $lookahead= C4::Context->preference('ConfirmFutureHolds'); #number of days to look for future holds
2033 ($resfound, $resrec, undef) = C4::Reserves::CheckReserves( $item->{'itemnumber'}, undef, $lookahead ) unless ( $item->{'withdrawn'} );
2034 if ($resfound) {
2035 $resrec->{'ResFound'} = $resfound;
2036 $messages->{'ResFound'} = $resrec;
2039 # Record the fact that this book was returned.
2040 UpdateStats({
2041 branch => $branch,
2042 type => $stat_type,
2043 itemnumber => $itemnumber,
2044 itemtype => $itemtype,
2045 borrowernumber => $borrowernumber,
2046 ccode => $item->{ ccode }
2049 # Send a check-in slip. # NOTE: borrower may be undef. Do not try to send messages then.
2050 if ( $patron ) {
2051 my $circulation_alert = 'C4::ItemCirculationAlertPreference';
2052 my %conditions = (
2053 branchcode => $branch,
2054 categorycode => $patron->categorycode,
2055 item_type => $item->{itype},
2056 notification => 'CHECKIN',
2058 if ($doreturn && $circulation_alert->is_enabled_for(\%conditions)) {
2059 SendCirculationAlert({
2060 type => 'CHECKIN',
2061 item => $item,
2062 borrower => $patron->unblessed,
2063 branch => $branch,
2067 logaction("CIRCULATION", "RETURN", $borrowernumber, $item->{'itemnumber'})
2068 if C4::Context->preference("ReturnLog");
2071 # Remove any OVERDUES related debarment if the borrower has no overdues
2072 if ( $borrowernumber
2073 && $patron->debarred
2074 && C4::Context->preference('AutoRemoveOverduesRestrictions')
2075 && !Koha::Patrons->find( $borrowernumber )->has_overdues
2076 && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
2078 DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
2081 # Transfer to returnbranch if Automatic transfer set or append message NeedsTransfer
2082 if (!$is_in_rotating_collection && ($doreturn or $messages->{'NotIssued'}) and !$resfound and ($branch ne $returnbranch) and not $messages->{'WrongTransfer'}){
2083 if (C4::Context->preference("AutomaticItemReturn" ) or
2084 (C4::Context->preference("UseBranchTransferLimits") and
2085 ! IsBranchTransferAllowed($branch, $returnbranch, $item->{C4::Context->preference("BranchTransferLimitsType")} )
2086 )) {
2087 $debug and warn sprintf "about to call ModItemTransfer(%s, %s, %s)", $item->{'itemnumber'},$branch, $returnbranch;
2088 $debug and warn "item: " . Dumper($item);
2089 ModItemTransfer($item->{'itemnumber'}, $branch, $returnbranch);
2090 $messages->{'WasTransfered'} = 1;
2091 } else {
2092 $messages->{'NeedsTransfer'} = $returnbranch;
2096 return ( $doreturn, $messages, $issue, ( $patron ? $patron->unblessed : {} ));
2099 =head2 MarkIssueReturned
2101 MarkIssueReturned($borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy);
2103 Unconditionally marks an issue as being returned by
2104 moving the C<issues> row to C<old_issues> and
2105 setting C<returndate> to the current date, or
2106 the last non-holiday date of the branccode specified in
2107 C<dropbox_branch> . Assumes you've already checked that
2108 it's safe to do this, i.e. last non-holiday > issuedate.
2110 if C<$returndate> is specified (in iso format), it is used as the date
2111 of the return. It is ignored when a dropbox_branch is passed in.
2113 C<$privacy> contains the privacy parameter. If the patron has set privacy to 2,
2114 the old_issue is immediately anonymised
2116 Ideally, this function would be internal to C<C4::Circulation>,
2117 not exported, but it is currently needed by one
2118 routine in C<C4::Accounts>.
2120 =cut
2122 sub MarkIssueReturned {
2123 my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy ) = @_;
2126 # Retrieve the issue
2127 my $issue = Koha::Checkouts->find( { itemnumber => $itemnumber } ) or return;
2128 my $issue_id = $issue->issue_id;
2130 my $anonymouspatron;
2131 if ( $privacy == 2 ) {
2132 # The default of 0 will not work due to foreign key constraints
2133 # The anonymisation will fail if AnonymousPatron is not a valid entry
2134 # We need to check if the anonymous patron exist, Koha will fail loudly if it does not
2135 # Note that a warning should appear on the about page (System information tab).
2136 $anonymouspatron = C4::Context->preference('AnonymousPatron');
2137 die "Fatal error: the patron ($borrowernumber) has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is empty or not set correctly."
2138 unless Koha::Patrons->find( $anonymouspatron );
2140 my $database = Koha::Database->new();
2141 my $schema = $database->schema;
2142 my $dbh = C4::Context->dbh;
2144 my $query = 'UPDATE issues SET returndate=';
2145 my @bind;
2146 if ($dropbox_branch) {
2147 my $calendar = Koha::Calendar->new( branchcode => $dropbox_branch );
2148 my $dropboxdate = $calendar->addDate( DateTime->now( time_zone => C4::Context->tz), -1 );
2149 $query .= ' ? ';
2150 push @bind, $dropboxdate->strftime('%Y-%m-%d %H:%M');
2151 } elsif ($returndate) {
2152 $query .= ' ? ';
2153 push @bind, $returndate;
2154 } else {
2155 $query .= ' now() ';
2157 $query .= ' WHERE issue_id = ?';
2158 push @bind, $issue_id;
2160 # FIXME Improve the return value and handle it from callers
2161 $schema->txn_do(sub {
2163 # Update the returndate
2164 $dbh->do( $query, undef, @bind );
2166 # We just updated the returndate, so we need to refetch $issue
2167 $issue->discard_changes;
2169 # Create the old_issues entry
2170 my $old_checkout = Koha::Old::Checkout->new($issue->unblessed)->store;
2172 # anonymise patron checkout immediately if $privacy set to 2 and AnonymousPatron is set to a valid borrowernumber
2173 if ( $privacy == 2) {
2174 $dbh->do(q|UPDATE old_issues SET borrowernumber=? WHERE issue_id = ?|, undef, $anonymouspatron, $old_checkout->issue_id);
2177 # And finally delete the issue
2178 $issue->delete;
2180 ModItem( { 'onloan' => undef }, undef, $itemnumber, { log_action => 0 } );
2182 if ( C4::Context->preference('StoreLastBorrower') ) {
2183 my $item = Koha::Items->find( $itemnumber );
2184 my $patron = Koha::Patrons->find( $borrowernumber );
2185 $item->last_returned_by( $patron );
2189 return $issue_id;
2192 =head2 _debar_user_on_return
2194 _debar_user_on_return($borrower, $item, $datedue, today);
2196 C<$borrower> borrower hashref
2198 C<$item> item hashref
2200 C<$datedue> date due DateTime object
2202 C<$return_date> DateTime object representing the return time
2204 Internal function, called only by AddReturn that calculates and updates
2205 the user fine days, and debars them if necessary.
2207 Should only be called for overdue returns
2209 =cut
2211 sub _debar_user_on_return {
2212 my ( $borrower, $item, $dt_due, $return_date ) = @_;
2214 my $branchcode = _GetCircControlBranch( $item, $borrower );
2216 my $circcontrol = C4::Context->preference('CircControl');
2217 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
2218 { categorycode => $borrower->{categorycode},
2219 itemtype => $item->{itype},
2220 branchcode => $branchcode
2223 my $finedays = $issuing_rule ? $issuing_rule->finedays : undef;
2224 my $unit = $issuing_rule ? $issuing_rule->lengthunit : undef;
2225 my $chargeable_units = C4::Overdues::get_chargeable_units($unit, $dt_due, $return_date, $branchcode);
2227 if ($finedays) {
2229 # finedays is in days, so hourly loans must multiply by 24
2230 # thus 1 hour late equals 1 day suspension * finedays rate
2231 $finedays = $finedays * 24 if ( $unit eq 'hours' );
2233 # grace period is measured in the same units as the loan
2234 my $grace =
2235 DateTime::Duration->new( $unit => $issuing_rule->firstremind );
2237 my $deltadays = DateTime::Duration->new(
2238 days => $chargeable_units
2240 if ( $deltadays->subtract($grace)->is_positive() ) {
2241 my $suspension_days = $deltadays * $finedays;
2243 # If the max suspension days is < than the suspension days
2244 # the suspension days is limited to this maximum period.
2245 my $max_sd = $issuing_rule->maxsuspensiondays;
2246 if ( defined $max_sd ) {
2247 $max_sd = DateTime::Duration->new( days => $max_sd );
2248 $suspension_days = $max_sd
2249 if DateTime::Duration->compare( $max_sd, $suspension_days ) < 0;
2252 my ( $has_been_extended, $is_a_reminder );
2253 if ( C4::Context->preference('CumulativeRestrictionPeriods') and $borrower->{debarred} ) {
2254 my $debarment = @{ GetDebarments( { borrowernumber => $borrower->{borrowernumber}, type => 'SUSPENSION' } ) }[0];
2255 if ( $debarment ) {
2256 $return_date = dt_from_string( $debarment->{expiration}, 'sql' );
2257 $has_been_extended = 1;
2261 if ( $issuing_rule->suspension_chargeperiod > 1 ) {
2262 # No need to / 1 and do not consider / 0
2263 $suspension_days = DateTime::Duration->new(
2264 days => floor( $suspension_days->in_units('days') / $issuing_rule->suspension_chargeperiod )
2268 my $new_debar_dt;
2269 # Use the calendar or not to calculate the debarment date
2270 if ( C4::Context->preference('finesCalendar') eq 'noFinesWhenClosed' ) {
2271 my $calendar = Koha::Calendar->new(
2272 branchcode => $branchcode,
2273 days_mode => 'Calendar'
2275 $new_debar_dt = $calendar->addDate( $return_date, $suspension_days );
2277 else {
2278 $new_debar_dt = $return_date->clone()->add_duration($suspension_days);
2281 Koha::Patron::Debarments::AddUniqueDebarment({
2282 borrowernumber => $borrower->{borrowernumber},
2283 expiration => $new_debar_dt->ymd(),
2284 type => 'SUSPENSION',
2286 # if borrower was already debarred but does not get an extra debarment
2287 my $patron = Koha::Patrons->find( $borrower->{borrowernumber} );
2288 my $new_debarment_str;
2289 if ( $borrower->{debarred} eq $patron->is_debarred ) {
2290 $is_a_reminder = 1;
2291 $new_debarment_str = $borrower->{debarred};
2292 } else {
2293 $new_debarment_str = $new_debar_dt->ymd();
2295 # FIXME Should return a DateTime object
2296 return $new_debarment_str, $is_a_reminder;
2299 return;
2302 =head2 _FixOverduesOnReturn
2304 &_FixOverduesOnReturn($brn,$itm, $exemptfine, $dropboxmode);
2306 C<$brn> borrowernumber
2308 C<$itm> itemnumber
2310 C<$exemptfine> BOOL -- remove overdue charge associated with this issue.
2311 C<$dropboxmode> BOOL -- remove lastincrement on overdue charge associated with this issue.
2313 Internal function
2315 =cut
2317 sub _FixOverduesOnReturn {
2318 my ($borrowernumber, $item, $exemptfine, $dropbox ) = @_;
2319 unless( $borrowernumber ) {
2320 warn "_FixOverduesOnReturn() not supplied valid borrowernumber";
2321 return;
2323 unless( $item ) {
2324 warn "_FixOverduesOnReturn() not supplied valid itemnumber";
2325 return;
2328 # check for overdue fine
2329 my $accountline = Koha::Account::Lines->search(
2331 borrowernumber => $borrowernumber,
2332 itemnumber => $item,
2333 -or => [
2334 accounttype => 'FU',
2335 accounttype => 'O',
2338 )->next();
2339 return 0 unless $accountline; # no warning, there's just nothing to fix
2341 if ($exemptfine) {
2342 my $amountoutstanding = $accountline->amountoutstanding;
2344 $accountline->accounttype('FFOR');
2345 $accountline->amountoutstanding(0);
2347 Koha::Account::Offset->new(
2349 debit_id => $accountline->id,
2350 type => 'Forgiven',
2351 amount => $amountoutstanding * -1,
2353 )->store();
2355 if (C4::Context->preference("FinesLog")) {
2356 &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
2358 } elsif ($dropbox && $accountline->lastincrement) {
2359 my $outstanding = $accountline->amountoutstanding - $accountline->lastincrement;
2360 my $amt = $accountline->amount - $accountline->lastincrement;
2362 Koha::Account::Offset->new(
2364 debit_id => $accountline->id,
2365 type => 'Dropbox',
2366 amount => $accountline->lastincrement * -1,
2368 )->store();
2370 if ( C4::Context->preference("FinesLog") ) {
2371 &logaction( "FINES", 'MODIFY', $borrowernumber,
2372 "Dropbox adjustment $amt, item $item" );
2375 $accountline->accounttype('F');
2377 if ( $outstanding >= 0 && $amt >= 0 ) {
2378 $accountline->amount($amt);
2379 $accountline->amountoutstanding($outstanding);
2382 } else {
2383 $accountline->accounttype('F');
2386 return $accountline->store();
2389 =head2 _FixAccountForLostAndReturned
2391 &_FixAccountForLostAndReturned($itemnumber, [$borrowernumber, $barcode]);
2393 Calculates the charge for a book lost and returned.
2395 Internal function, not exported, called only by AddReturn.
2397 =cut
2399 sub _FixAccountForLostAndReturned {
2400 my $itemnumber = shift or return;
2401 my $borrowernumber = @_ ? shift : undef;
2402 my $item_id = @_ ? shift : $itemnumber; # Send the barcode if you want that logged in the description
2404 my $credit;
2406 # check for charge made for lost book
2407 my $accountlines = Koha::Account::Lines->search(
2409 itemnumber => $itemnumber,
2410 accounttype => { -in => [ 'L', 'Rep', 'W' ] },
2413 order_by => { -desc => [ 'date', 'accountno' ] }
2417 return unless $accountlines->count > 0;
2418 my $accountline = $accountlines->next;
2419 my $total_to_refund = 0;
2420 my $account = Koha::Patrons->find( $accountline->borrowernumber )->account;
2422 # Use cases
2423 if ( $accountline->amount > $accountline->amountoutstanding ) {
2424 # some amount has been cancelled. collect the offsets that are not writeoffs
2425 # this works because the only way to subtract from this kind of a debt is
2426 # using the UI buttons 'Pay' and 'Write off'
2427 my $credits_offsets = Koha::Account::Offsets->search({
2428 debit_id => $accountline->id,
2429 credit_id => { '!=' => undef }, # it is not the debit itself
2430 type => { '!=' => 'Writeoff' },
2431 amount => { '<' => 0 } # credits are negative on the DB
2434 $total_to_refund = ( $credits_offsets->count > 0 )
2435 ? $credits_offsets->total * -1 # credits are negative on the DB
2436 : 0;
2439 my $credit_total = $accountline->amountoutstanding + $total_to_refund;
2441 if ( $credit_total > 0 ) {
2442 my $branchcode = C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
2443 $credit = $account->add_credit(
2444 { amount => $credit_total,
2445 description => 'Item Returned ' . $item_id,
2446 type => 'lost_item_return',
2447 library_id => $branchcode
2451 # TODO: ->apply should just accept the accountline
2452 $credit->apply( { debits => $accountlines->reset } );
2455 # Manually set the accounttype
2456 $accountline->discard_changes->accounttype('LR');
2457 $accountline->store;
2459 ModItem( { paidfor => '' }, undef, $itemnumber, { log_action => 0 } );
2461 if ( defined $account and C4::Context->preference('AccountAutoReconcile') ) {
2462 $account->reconcile_balance;
2465 return ($credit) ? $credit->id : undef;
2468 =head2 _GetCircControlBranch
2470 my $circ_control_branch = _GetCircControlBranch($iteminfos, $borrower);
2472 Internal function :
2474 Return the library code to be used to determine which circulation
2475 policy applies to a transaction. Looks up the CircControl and
2476 HomeOrHoldingBranch system preferences.
2478 C<$iteminfos> is a hashref to iteminfo. Only {homebranch or holdingbranch} is used.
2480 C<$borrower> is a hashref to borrower. Only {branchcode} is used.
2482 =cut
2484 sub _GetCircControlBranch {
2485 my ($item, $borrower) = @_;
2486 my $circcontrol = C4::Context->preference('CircControl');
2487 my $branch;
2489 if ($circcontrol eq 'PickupLibrary' and (C4::Context->userenv and C4::Context->userenv->{'branch'}) ) {
2490 $branch= C4::Context->userenv->{'branch'};
2491 } elsif ($circcontrol eq 'PatronLibrary') {
2492 $branch=$borrower->{branchcode};
2493 } else {
2494 my $branchfield = C4::Context->preference('HomeOrHoldingBranch') || 'homebranch';
2495 $branch = $item->{$branchfield};
2496 # default to item home branch if holdingbranch is used
2497 # and is not defined
2498 if (!defined($branch) && $branchfield eq 'holdingbranch') {
2499 $branch = $item->{homebranch};
2502 return $branch;
2505 =head2 GetOpenIssue
2507 $issue = GetOpenIssue( $itemnumber );
2509 Returns the row from the issues table if the item is currently issued, undef if the item is not currently issued
2511 C<$itemnumber> is the item's itemnumber
2513 Returns a hashref
2515 =cut
2517 sub GetOpenIssue {
2518 my ( $itemnumber ) = @_;
2519 return unless $itemnumber;
2520 my $dbh = C4::Context->dbh;
2521 my $sth = $dbh->prepare( "SELECT * FROM issues WHERE itemnumber = ? AND returndate IS NULL" );
2522 $sth->execute( $itemnumber );
2523 return $sth->fetchrow_hashref();
2527 =head2 GetBiblioIssues
2529 $issues = GetBiblioIssues($biblionumber);
2531 this function get all issues from a biblionumber.
2533 Return:
2534 C<$issues> is a reference to array which each value is ref-to-hash. This ref-to-hash contains all column from
2535 tables issues and the firstname,surname & cardnumber from borrowers.
2537 =cut
2539 sub GetBiblioIssues {
2540 my $biblionumber = shift;
2541 return unless $biblionumber;
2542 my $dbh = C4::Context->dbh;
2543 my $query = "
2544 SELECT issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2545 FROM issues
2546 LEFT JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
2547 LEFT JOIN items ON issues.itemnumber = items.itemnumber
2548 LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2549 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2550 WHERE biblio.biblionumber = ?
2551 UNION ALL
2552 SELECT old_issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2553 FROM old_issues
2554 LEFT JOIN borrowers ON borrowers.borrowernumber = old_issues.borrowernumber
2555 LEFT JOIN items ON old_issues.itemnumber = items.itemnumber
2556 LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2557 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2558 WHERE biblio.biblionumber = ?
2559 ORDER BY timestamp
2561 my $sth = $dbh->prepare($query);
2562 $sth->execute($biblionumber, $biblionumber);
2564 my @issues;
2565 while ( my $data = $sth->fetchrow_hashref ) {
2566 push @issues, $data;
2568 return \@issues;
2571 =head2 GetUpcomingDueIssues
2573 my $upcoming_dues = GetUpcomingDueIssues( { days_in_advance => 4 } );
2575 =cut
2577 sub GetUpcomingDueIssues {
2578 my $params = shift;
2580 $params->{'days_in_advance'} = 7 unless exists $params->{'days_in_advance'};
2581 my $dbh = C4::Context->dbh;
2583 my $statement = <<END_SQL;
2584 SELECT *
2585 FROM (
2586 SELECT issues.*, items.itype as itemtype, items.homebranch, TO_DAYS( date_due )-TO_DAYS( NOW() ) as days_until_due, branches.branchemail
2587 FROM issues
2588 LEFT JOIN items USING (itemnumber)
2589 LEFT OUTER JOIN branches USING (branchcode)
2590 WHERE returndate is NULL
2591 ) tmp
2592 WHERE days_until_due >= 0 AND days_until_due <= ?
2593 END_SQL
2595 my @bind_parameters = ( $params->{'days_in_advance'} );
2597 my $sth = $dbh->prepare( $statement );
2598 $sth->execute( @bind_parameters );
2599 my $upcoming_dues = $sth->fetchall_arrayref({});
2601 return $upcoming_dues;
2604 =head2 CanBookBeRenewed
2606 ($ok,$error) = &CanBookBeRenewed($borrowernumber, $itemnumber[, $override_limit]);
2608 Find out whether a borrowed item may be renewed.
2610 C<$borrowernumber> is the borrower number of the patron who currently
2611 has the item on loan.
2613 C<$itemnumber> is the number of the item to renew.
2615 C<$override_limit>, if supplied with a true value, causes
2616 the limit on the number of times that the loan can be renewed
2617 (as controlled by the item type) to be ignored. Overriding also allows
2618 to renew sooner than "No renewal before" and to manually renew loans
2619 that are automatically renewed.
2621 C<$CanBookBeRenewed> returns a true value if the item may be renewed. The
2622 item must currently be on loan to the specified borrower; renewals
2623 must be allowed for the item's type; and the borrower must not have
2624 already renewed the loan. $error will contain the reason the renewal can not proceed
2626 =cut
2628 sub CanBookBeRenewed {
2629 my ( $borrowernumber, $itemnumber, $override_limit ) = @_;
2631 my $dbh = C4::Context->dbh;
2632 my $renews = 1;
2634 my $item = GetItem($itemnumber) or return ( 0, 'no_item' );
2635 my $issue = Koha::Checkouts->find( { itemnumber => $itemnumber } ) or return ( 0, 'no_checkout' );
2636 return ( 0, 'onsite_checkout' ) if $issue->onsite_checkout;
2637 return ( 0, 'item_denied_renewal') if _item_denied_renewal({ item => $item });
2640 $borrowernumber ||= $issue->borrowernumber;
2641 my $patron = Koha::Patrons->find( $borrowernumber )
2642 or return;
2644 my ( $resfound, $resrec, undef ) = C4::Reserves::CheckReserves($itemnumber);
2646 # This item can fill one or more unfilled reserve, can those unfilled reserves
2647 # all be filled by other available items?
2648 if ( $resfound
2649 && C4::Context->preference('AllowRenewalIfOtherItemsAvailable') )
2651 my $schema = Koha::Database->new()->schema();
2653 my $item_holds = $schema->resultset('Reserve')->search( { itemnumber => $itemnumber, found => undef } )->count();
2654 if ($item_holds) {
2655 # There is an item level hold on this item, no other item can fill the hold
2656 $resfound = 1;
2658 else {
2660 # Get all other items that could possibly fill reserves
2661 my @itemnumbers = $schema->resultset('Item')->search(
2663 biblionumber => $resrec->{biblionumber},
2664 onloan => undef,
2665 notforloan => 0,
2666 -not => { itemnumber => $itemnumber }
2668 { columns => 'itemnumber' }
2669 )->get_column('itemnumber')->all();
2671 # Get all other reserves that could have been filled by this item
2672 my @borrowernumbers;
2673 while (1) {
2674 my ( $reserve_found, $reserve, undef ) =
2675 C4::Reserves::CheckReserves( $itemnumber, undef, undef, \@borrowernumbers );
2677 if ($reserve_found) {
2678 push( @borrowernumbers, $reserve->{borrowernumber} );
2680 else {
2681 last;
2685 # If the count of the union of the lists of reservable items for each borrower
2686 # is equal or greater than the number of borrowers, we know that all reserves
2687 # can be filled with available items. We can get the union of the sets simply
2688 # by pushing all the elements onto an array and removing the duplicates.
2689 my @reservable;
2690 my %borrowers;
2691 ITEM: foreach my $i (@itemnumbers) {
2692 my $item = GetItem($i);
2693 next if IsItemOnHoldAndFound($i);
2694 for my $b (@borrowernumbers) {
2695 my $borr = $borrowers{$b} //= Koha::Patrons->find( $b )->unblessed;
2696 next unless IsAvailableForItemLevelRequest($item, $borr);
2697 next unless CanItemBeReserved($b,$i);
2699 push @reservable, $i;
2700 if (@reservable >= @borrowernumbers) {
2701 $resfound = 0;
2702 last ITEM;
2704 last;
2709 return ( 0, "on_reserve" ) if $resfound; # '' when no hold was found
2711 return ( 1, undef ) if $override_limit;
2713 my $branchcode = _GetCircControlBranch( $item, $patron->unblessed );
2714 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
2715 { categorycode => $patron->categorycode,
2716 itemtype => $item->{itype},
2717 branchcode => $branchcode
2721 return ( 0, "too_many" )
2722 if not $issuing_rule or $issuing_rule->renewalsallowed <= $issue->renewals;
2724 my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
2725 my $restrictionblockrenewing = C4::Context->preference('RestrictionBlockRenewing');
2726 $patron = Koha::Patrons->find($borrowernumber); # FIXME Is this really useful?
2727 my $restricted = $patron->is_debarred;
2728 my $hasoverdues = $patron->has_overdues;
2730 if ( $restricted and $restrictionblockrenewing ) {
2731 return ( 0, 'restriction');
2732 } elsif ( ($hasoverdues and $overduesblockrenewing eq 'block') || ($issue->is_overdue and $overduesblockrenewing eq 'blockitem') ) {
2733 return ( 0, 'overdue');
2736 if ( $issue->auto_renew ) {
2738 if ( $patron->category->effective_BlockExpiredPatronOpacActions and $patron->is_expired ) {
2739 return ( 0, 'auto_account_expired' );
2742 if ( defined $issuing_rule->no_auto_renewal_after
2743 and $issuing_rule->no_auto_renewal_after ne "" ) {
2744 # Get issue_date and add no_auto_renewal_after
2745 # If this is greater than today, it's too late for renewal.
2746 my $maximum_renewal_date = dt_from_string($issue->issuedate, 'sql');
2747 $maximum_renewal_date->add(
2748 $issuing_rule->lengthunit => $issuing_rule->no_auto_renewal_after
2750 my $now = dt_from_string;
2751 if ( $now >= $maximum_renewal_date ) {
2752 return ( 0, "auto_too_late" );
2755 if ( defined $issuing_rule->no_auto_renewal_after_hard_limit
2756 and $issuing_rule->no_auto_renewal_after_hard_limit ne "" ) {
2757 # If no_auto_renewal_after_hard_limit is >= today, it's also too late for renewal
2758 if ( dt_from_string >= dt_from_string( $issuing_rule->no_auto_renewal_after_hard_limit ) ) {
2759 return ( 0, "auto_too_late" );
2763 if ( C4::Context->preference('OPACFineNoRenewalsBlockAutoRenew') ) {
2764 my $fine_no_renewals = C4::Context->preference("OPACFineNoRenewals");
2765 my $amountoutstanding = $patron->account->balance;
2766 if ( $amountoutstanding and $amountoutstanding > $fine_no_renewals ) {
2767 return ( 0, "auto_too_much_oweing" );
2772 if ( defined $issuing_rule->norenewalbefore
2773 and $issuing_rule->norenewalbefore ne "" )
2776 # Calculate soonest renewal by subtracting 'No renewal before' from due date
2777 my $soonestrenewal = dt_from_string( $issue->date_due, 'sql' )->subtract(
2778 $issuing_rule->lengthunit => $issuing_rule->norenewalbefore );
2780 # Depending on syspref reset the exact time, only check the date
2781 if ( C4::Context->preference('NoRenewalBeforePrecision') eq 'date'
2782 and $issuing_rule->lengthunit eq 'days' )
2784 $soonestrenewal->truncate( to => 'day' );
2787 if ( $soonestrenewal > DateTime->now( time_zone => C4::Context->tz() ) )
2789 return ( 0, "auto_too_soon" ) if $issue->auto_renew;
2790 return ( 0, "too_soon" );
2792 elsif ( $issue->auto_renew ) {
2793 return ( 0, "auto_renew" );
2797 # Fallback for automatic renewals:
2798 # If norenewalbefore is undef, don't renew before due date.
2799 if ( $issue->auto_renew ) {
2800 my $now = dt_from_string;
2801 return ( 0, "auto_renew" )
2802 if $now >= dt_from_string( $issue->date_due, 'sql' );
2803 return ( 0, "auto_too_soon" );
2806 return ( 1, undef );
2809 =head2 AddRenewal
2811 &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate]);
2813 Renews a loan.
2815 C<$borrowernumber> is the borrower number of the patron who currently
2816 has the item.
2818 C<$itemnumber> is the number of the item to renew.
2820 C<$branch> is the library where the renewal took place (if any).
2821 The library that controls the circ policies for the renewal is retrieved from the issues record.
2823 C<$datedue> can be a DateTime object used to set the due date.
2825 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate. If
2826 this parameter is not supplied, lastreneweddate is set to the current date.
2828 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
2829 from the book's item type.
2831 =cut
2833 sub AddRenewal {
2834 my $borrowernumber = shift;
2835 my $itemnumber = shift or return;
2836 my $branch = shift;
2837 my $datedue = shift;
2838 my $lastreneweddate = shift || DateTime->now(time_zone => C4::Context->tz)->ymd();
2840 my $item = GetItem($itemnumber) or return;
2841 my $item_object = Koha::Items->find( $itemnumber ); # Should replace $item
2842 my $biblio = $item_object->biblio;
2844 my $dbh = C4::Context->dbh;
2846 # Find the issues record for this book
2847 my $issue = Koha::Checkouts->find( { itemnumber => $itemnumber } );
2849 return unless $issue;
2851 $borrowernumber ||= $issue->borrowernumber;
2853 if ( defined $datedue && ref $datedue ne 'DateTime' ) {
2854 carp 'Invalid date passed to AddRenewal.';
2855 return;
2858 my $patron = Koha::Patrons->find( $borrowernumber ) or return; # FIXME Should do more than just return
2859 my $patron_unblessed = $patron->unblessed;
2861 if ( C4::Context->preference('CalculateFinesOnReturn') && $issue->is_overdue ) {
2862 _CalculateAndUpdateFine( { issue => $issue, item => $item, borrower => $patron_unblessed } );
2864 _FixOverduesOnReturn( $borrowernumber, $itemnumber );
2866 # If the due date wasn't specified, calculate it by adding the
2867 # book's loan length to today's date or the current due date
2868 # based on the value of the RenewalPeriodBase syspref.
2869 unless ($datedue) {
2871 my $itemtype = $item_object->effective_itemtype;
2872 $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
2873 dt_from_string( $issue->date_due, 'sql' ) :
2874 DateTime->now( time_zone => C4::Context->tz());
2875 $datedue = CalcDateDue($datedue, $itemtype, _GetCircControlBranch($item, $patron_unblessed), $patron_unblessed, 'is a renewal');
2878 # Update the issues record to have the new due date, and a new count
2879 # of how many times it has been renewed.
2880 my $renews = $issue->renewals + 1;
2881 my $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, lastreneweddate = ?
2882 WHERE borrowernumber=?
2883 AND itemnumber=?"
2886 $sth->execute( $datedue->strftime('%Y-%m-%d %H:%M'), $renews, $lastreneweddate, $borrowernumber, $itemnumber );
2888 # Update the renewal count on the item, and tell zebra to reindex
2889 $renews = $item->{renewals} + 1;
2890 ModItem( { renewals => $renews, onloan => $datedue->strftime('%Y-%m-%d %H:%M')}, $item->{biblionumber}, $itemnumber, { log_action => 0 } );
2892 # Charge a new rental fee, if applicable?
2893 my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
2894 if ( $charge > 0 ) {
2895 my $accountno = C4::Accounts::getnextacctno( $borrowernumber );
2896 my $manager_id = 0;
2897 $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv;
2898 my $branchcode = C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
2899 Koha::Account::Line->new(
2901 date => dt_from_string(),
2902 borrowernumber => $borrowernumber,
2903 accountno => $accountno,
2904 amount => $charge,
2905 manager_id => $manager_id,
2906 accounttype => 'Rent',
2907 amountoutstanding => $charge,
2908 itemnumber => $itemnumber,
2909 branchcode => $branchcode,
2910 description => 'Renewal of Rental Item '
2911 . $biblio->title
2912 . " $item->{'barcode'}",
2914 )->store();
2917 # Send a renewal slip according to checkout alert preferencei
2918 if ( C4::Context->preference('RenewalSendNotice') eq '1' ) {
2919 my $circulation_alert = 'C4::ItemCirculationAlertPreference';
2920 my %conditions = (
2921 branchcode => $branch,
2922 categorycode => $patron->categorycode,
2923 item_type => $item->{itype},
2924 notification => 'CHECKOUT',
2926 if ( $circulation_alert->is_enabled_for( \%conditions ) ) {
2927 SendCirculationAlert(
2929 type => 'RENEWAL',
2930 item => $item,
2931 borrower => $patron->unblessed,
2932 branch => $branch,
2938 # Remove any OVERDUES related debarment if the borrower has no overdues
2939 if ( $patron
2940 && $patron->is_debarred
2941 && ! $patron->has_overdues
2942 && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
2944 DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
2947 unless ( C4::Context->interface eq 'opac' ) { #if from opac we are obeying OpacRenewalBranch as calculated in opac-renew.pl
2948 $branch = C4::Context->userenv ? C4::Context->userenv->{branch} : $branch;
2951 # Add the renewal to stats
2952 UpdateStats(
2954 branch => $branch,
2955 type => 'renew',
2956 amount => $charge,
2957 itemnumber => $itemnumber,
2958 itemtype => $item->{itype},
2959 location => $item->{location},
2960 borrowernumber => $borrowernumber,
2961 ccode => $item->{'ccode'}
2965 #Log the renewal
2966 logaction("CIRCULATION", "RENEWAL", $borrowernumber, $itemnumber) if C4::Context->preference("RenewalLog");
2967 return $datedue;
2970 sub GetRenewCount {
2971 # check renewal status
2972 my ( $bornum, $itemno ) = @_;
2973 my $dbh = C4::Context->dbh;
2974 my $renewcount = 0;
2975 my $renewsallowed = 0;
2976 my $renewsleft = 0;
2978 my $patron = Koha::Patrons->find( $bornum );
2979 my $item = GetItem($itemno);
2981 return (0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
2983 # Look in the issues table for this item, lent to this borrower,
2984 # and not yet returned.
2986 # FIXME - I think this function could be redone to use only one SQL call.
2987 my $sth = $dbh->prepare(
2988 "select * from issues
2989 where (borrowernumber = ?)
2990 and (itemnumber = ?)"
2992 $sth->execute( $bornum, $itemno );
2993 my $data = $sth->fetchrow_hashref;
2994 $renewcount = $data->{'renewals'} if $data->{'renewals'};
2995 # $item and $borrower should be calculated
2996 my $branchcode = _GetCircControlBranch($item, $patron->unblessed);
2998 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
2999 { categorycode => $patron->categorycode,
3000 itemtype => $item->{itype},
3001 branchcode => $branchcode
3005 $renewsallowed = $issuing_rule ? $issuing_rule->renewalsallowed : 0;
3006 $renewsleft = $renewsallowed - $renewcount;
3007 if($renewsleft < 0){ $renewsleft = 0; }
3008 return ( $renewcount, $renewsallowed, $renewsleft );
3011 =head2 GetSoonestRenewDate
3013 $NoRenewalBeforeThisDate = &GetSoonestRenewDate($borrowernumber, $itemnumber);
3015 Find out the soonest possible renew date of a borrowed item.
3017 C<$borrowernumber> is the borrower number of the patron who currently
3018 has the item on loan.
3020 C<$itemnumber> is the number of the item to renew.
3022 C<$GetSoonestRenewDate> returns the DateTime of the soonest possible
3023 renew date, based on the value "No renewal before" of the applicable
3024 issuing rule. Returns the current date if the item can already be
3025 renewed, and returns undefined if the borrower, loan, or item
3026 cannot be found.
3028 =cut
3030 sub GetSoonestRenewDate {
3031 my ( $borrowernumber, $itemnumber ) = @_;
3033 my $dbh = C4::Context->dbh;
3035 my $item = GetItem($itemnumber) or return;
3036 my $itemissue = Koha::Checkouts->find( { itemnumber => $itemnumber } ) or return;
3038 $borrowernumber ||= $itemissue->borrowernumber;
3039 my $patron = Koha::Patrons->find( $borrowernumber )
3040 or return;
3042 my $branchcode = _GetCircControlBranch( $item, $patron->unblessed );
3043 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
3044 { categorycode => $patron->categorycode,
3045 itemtype => $item->{itype},
3046 branchcode => $branchcode
3050 my $now = dt_from_string;
3051 return $now unless $issuing_rule;
3053 if ( defined $issuing_rule->norenewalbefore
3054 and $issuing_rule->norenewalbefore ne "" )
3056 my $soonestrenewal =
3057 dt_from_string( $itemissue->date_due )->subtract(
3058 $issuing_rule->lengthunit => $issuing_rule->norenewalbefore );
3060 if ( C4::Context->preference('NoRenewalBeforePrecision') eq 'date'
3061 and $issuing_rule->lengthunit eq 'days' )
3063 $soonestrenewal->truncate( to => 'day' );
3065 return $soonestrenewal if $now < $soonestrenewal;
3067 return $now;
3070 =head2 GetLatestAutoRenewDate
3072 $NoAutoRenewalAfterThisDate = &GetLatestAutoRenewDate($borrowernumber, $itemnumber);
3074 Find out the latest possible auto renew date of a borrowed item.
3076 C<$borrowernumber> is the borrower number of the patron who currently
3077 has the item on loan.
3079 C<$itemnumber> is the number of the item to renew.
3081 C<$GetLatestAutoRenewDate> returns the DateTime of the latest possible
3082 auto renew date, based on the value "No auto renewal after" and the "No auto
3083 renewal after (hard limit) of the applicable issuing rule.
3084 Returns undef if there is no date specify in the circ rules or if the patron, loan,
3085 or item cannot be found.
3087 =cut
3089 sub GetLatestAutoRenewDate {
3090 my ( $borrowernumber, $itemnumber ) = @_;
3092 my $dbh = C4::Context->dbh;
3094 my $item = GetItem($itemnumber) or return;
3095 my $itemissue = Koha::Checkouts->find( { itemnumber => $itemnumber } ) or return;
3097 $borrowernumber ||= $itemissue->borrowernumber;
3098 my $patron = Koha::Patrons->find( $borrowernumber )
3099 or return;
3101 my $branchcode = _GetCircControlBranch( $item, $patron->unblessed );
3102 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule(
3103 { categorycode => $patron->categorycode,
3104 itemtype => $item->{itype},
3105 branchcode => $branchcode
3109 return unless $issuing_rule;
3110 return
3111 if ( not $issuing_rule->no_auto_renewal_after
3112 or $issuing_rule->no_auto_renewal_after eq '' )
3113 and ( not $issuing_rule->no_auto_renewal_after_hard_limit
3114 or $issuing_rule->no_auto_renewal_after_hard_limit eq '' );
3116 my $maximum_renewal_date;
3117 if ( $issuing_rule->no_auto_renewal_after ) {
3118 $maximum_renewal_date = dt_from_string($itemissue->issuedate);
3119 $maximum_renewal_date->add(
3120 $issuing_rule->lengthunit => $issuing_rule->no_auto_renewal_after
3124 if ( $issuing_rule->no_auto_renewal_after_hard_limit ) {
3125 my $dt = dt_from_string( $issuing_rule->no_auto_renewal_after_hard_limit );
3126 $maximum_renewal_date = $dt if not $maximum_renewal_date or $maximum_renewal_date > $dt;
3128 return $maximum_renewal_date;
3132 =head2 GetIssuingCharges
3134 ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
3136 Calculate how much it would cost for a given patron to borrow a given
3137 item, including any applicable discounts.
3139 C<$itemnumber> is the item number of item the patron wishes to borrow.
3141 C<$borrowernumber> is the patron's borrower number.
3143 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
3144 and C<$item_type> is the code for the item's item type (e.g., C<VID>
3145 if it's a video).
3147 =cut
3149 sub GetIssuingCharges {
3151 # calculate charges due
3152 my ( $itemnumber, $borrowernumber ) = @_;
3153 my $charge = 0;
3154 my $dbh = C4::Context->dbh;
3155 my $item_type;
3157 # Get the book's item type and rental charge (via its biblioitem).
3158 my $charge_query = 'SELECT itemtypes.itemtype,rentalcharge FROM items
3159 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber';
3160 $charge_query .= (C4::Context->preference('item-level_itypes'))
3161 ? ' LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype'
3162 : ' LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype';
3164 $charge_query .= ' WHERE items.itemnumber =?';
3166 my $sth = $dbh->prepare($charge_query);
3167 $sth->execute($itemnumber);
3168 if ( my $item_data = $sth->fetchrow_hashref ) {
3169 $item_type = $item_data->{itemtype};
3170 $charge = $item_data->{rentalcharge};
3171 my $branch = C4::Context::mybranch();
3172 my $discount_query = q|SELECT rentaldiscount,
3173 issuingrules.itemtype, issuingrules.branchcode
3174 FROM borrowers
3175 LEFT JOIN issuingrules ON borrowers.categorycode = issuingrules.categorycode
3176 WHERE borrowers.borrowernumber = ?
3177 AND (issuingrules.itemtype = ? OR issuingrules.itemtype = '*')
3178 AND (issuingrules.branchcode = ? OR issuingrules.branchcode = '*')|;
3179 my $discount_sth = $dbh->prepare($discount_query);
3180 $discount_sth->execute( $borrowernumber, $item_type, $branch );
3181 my $discount_rules = $discount_sth->fetchall_arrayref({});
3182 if (@{$discount_rules}) {
3183 # We may have multiple rules so get the most specific
3184 my $discount = _get_discount_from_rule($discount_rules, $branch, $item_type);
3185 $charge = ( $charge * ( 100 - $discount ) ) / 100;
3187 if ($charge) {
3188 $charge = sprintf '%.2f', $charge; # ensure no fractions of a penny returned
3192 return ( $charge, $item_type );
3195 # Select most appropriate discount rule from those returned
3196 sub _get_discount_from_rule {
3197 my ($rules_ref, $branch, $itemtype) = @_;
3198 my $discount;
3200 if (@{$rules_ref} == 1) { # only 1 applicable rule use it
3201 $discount = $rules_ref->[0]->{rentaldiscount};
3202 return (defined $discount) ? $discount : 0;
3204 # could have up to 4 does one match $branch and $itemtype
3205 my @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq $itemtype } @{$rules_ref};
3206 if (@d) {
3207 $discount = $d[0]->{rentaldiscount};
3208 return (defined $discount) ? $discount : 0;
3210 # do we have item type + all branches
3211 @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq $itemtype } @{$rules_ref};
3212 if (@d) {
3213 $discount = $d[0]->{rentaldiscount};
3214 return (defined $discount) ? $discount : 0;
3216 # do we all item types + this branch
3217 @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq q{*} } @{$rules_ref};
3218 if (@d) {
3219 $discount = $d[0]->{rentaldiscount};
3220 return (defined $discount) ? $discount : 0;
3222 # so all and all (surely we wont get here)
3223 @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq q{*} } @{$rules_ref};
3224 if (@d) {
3225 $discount = $d[0]->{rentaldiscount};
3226 return (defined $discount) ? $discount : 0;
3228 # none of the above
3229 return 0;
3232 =head2 AddIssuingCharge
3234 &AddIssuingCharge( $checkout, $charge )
3236 =cut
3238 sub AddIssuingCharge {
3239 my ( $checkout, $charge ) = @_;
3241 # FIXME What if checkout does not exist?
3243 my $nextaccntno = C4::Accounts::getnextacctno( $checkout->borrowernumber );
3245 my $manager_id = 0;
3246 $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv;
3248 my $branchcode = C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
3250 my $accountline = Koha::Account::Line->new(
3252 borrowernumber => $checkout->borrowernumber,
3253 itemnumber => $checkout->itemnumber,
3254 issue_id => $checkout->issue_id,
3255 accountno => $nextaccntno,
3256 amount => $charge,
3257 amountoutstanding => $charge,
3258 manager_id => $manager_id,
3259 branchcode => $branchcode,
3260 description => 'Rental',
3261 accounttype => 'Rent',
3262 date => \'NOW()',
3264 )->store();
3266 Koha::Account::Offset->new(
3268 debit_id => $accountline->id,
3269 type => 'Rental Fee',
3270 amount => $charge,
3272 )->store();
3275 =head2 GetTransfers
3277 GetTransfers($itemnumber);
3279 =cut
3281 sub GetTransfers {
3282 my ($itemnumber) = @_;
3284 my $dbh = C4::Context->dbh;
3286 my $query = '
3287 SELECT datesent,
3288 frombranch,
3289 tobranch,
3290 branchtransfer_id
3291 FROM branchtransfers
3292 WHERE itemnumber = ?
3293 AND datearrived IS NULL
3295 my $sth = $dbh->prepare($query);
3296 $sth->execute($itemnumber);
3297 my @row = $sth->fetchrow_array();
3298 return @row;
3301 =head2 GetTransfersFromTo
3303 @results = GetTransfersFromTo($frombranch,$tobranch);
3305 Returns the list of pending transfers between $from and $to branch
3307 =cut
3309 sub GetTransfersFromTo {
3310 my ( $frombranch, $tobranch ) = @_;
3311 return unless ( $frombranch && $tobranch );
3312 my $dbh = C4::Context->dbh;
3313 my $query = "
3314 SELECT branchtransfer_id,itemnumber,datesent,frombranch
3315 FROM branchtransfers
3316 WHERE frombranch=?
3317 AND tobranch=?
3318 AND datearrived IS NULL
3320 my $sth = $dbh->prepare($query);
3321 $sth->execute( $frombranch, $tobranch );
3322 my @gettransfers;
3324 while ( my $data = $sth->fetchrow_hashref ) {
3325 push @gettransfers, $data;
3327 return (@gettransfers);
3330 =head2 DeleteTransfer
3332 &DeleteTransfer($itemnumber);
3334 =cut
3336 sub DeleteTransfer {
3337 my ($itemnumber) = @_;
3338 return unless $itemnumber;
3339 my $dbh = C4::Context->dbh;
3340 my $sth = $dbh->prepare(
3341 "DELETE FROM branchtransfers
3342 WHERE itemnumber=?
3343 AND datearrived IS NULL "
3345 return $sth->execute($itemnumber);
3348 =head2 SendCirculationAlert
3350 Send out a C<check-in> or C<checkout> alert using the messaging system.
3352 B<Parameters>:
3354 =over 4
3356 =item type
3358 Valid values for this parameter are: C<CHECKIN> and C<CHECKOUT>.
3360 =item item
3362 Hashref of information about the item being checked in or out.
3364 =item borrower
3366 Hashref of information about the borrower of the item.
3368 =item branch
3370 The branchcode from where the checkout or check-in took place.
3372 =back
3374 B<Example>:
3376 SendCirculationAlert({
3377 type => 'CHECKOUT',
3378 item => $item,
3379 borrower => $borrower,
3380 branch => $branch,
3383 =cut
3385 sub SendCirculationAlert {
3386 my ($opts) = @_;
3387 my ($type, $item, $borrower, $branch) =
3388 ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch});
3389 my %message_name = (
3390 CHECKIN => 'Item_Check_in',
3391 CHECKOUT => 'Item_Checkout',
3392 RENEWAL => 'Item_Checkout',
3394 my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({
3395 borrowernumber => $borrower->{borrowernumber},
3396 message_name => $message_name{$type},
3398 my $issues_table = ( $type eq 'CHECKOUT' || $type eq 'RENEWAL' ) ? 'issues' : 'old_issues';
3400 my $schema = Koha::Database->new->schema;
3401 my @transports = keys %{ $borrower_preferences->{transports} };
3403 # From the MySQL doc:
3404 # LOCK TABLES is not transaction-safe and implicitly commits any active transaction before attempting to lock the tables.
3405 # If the LOCK/UNLOCK statements are executed from tests, the current transaction will be committed.
3406 # To avoid that we need to guess if this code is execute from tests or not (yes it is a bit hacky)
3407 my $do_not_lock = ( exists $ENV{_} && $ENV{_} =~ m|prove| ) || $ENV{KOHA_NO_TABLE_LOCKS};
3409 for my $mtt (@transports) {
3410 my $letter = C4::Letters::GetPreparedLetter (
3411 module => 'circulation',
3412 letter_code => $type,
3413 branchcode => $branch,
3414 message_transport_type => $mtt,
3415 lang => $borrower->{lang},
3416 tables => {
3417 $issues_table => $item->{itemnumber},
3418 'items' => $item->{itemnumber},
3419 'biblio' => $item->{biblionumber},
3420 'biblioitems' => $item->{biblionumber},
3421 'borrowers' => $borrower,
3422 'branches' => $branch,
3424 ) or next;
3426 $schema->storage->txn_begin;
3427 C4::Context->dbh->do(q|LOCK TABLE message_queue READ|) unless $do_not_lock;
3428 C4::Context->dbh->do(q|LOCK TABLE message_queue WRITE|) unless $do_not_lock;
3429 my $message = C4::Message->find_last_message($borrower, $type, $mtt);
3430 unless ( $message ) {
3431 C4::Context->dbh->do(q|UNLOCK TABLES|) unless $do_not_lock;
3432 C4::Message->enqueue($letter, $borrower, $mtt);
3433 } else {
3434 $message->append($letter);
3435 $message->update;
3437 C4::Context->dbh->do(q|UNLOCK TABLES|) unless $do_not_lock;
3438 $schema->storage->txn_commit;
3441 return;
3444 =head2 updateWrongTransfer
3446 $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
3448 This function validate the line of brachtransfer but with the wrong destination (mistake from a librarian ...), and create a new line in branchtransfer from the actual library to the original library of reservation
3450 =cut
3452 sub updateWrongTransfer {
3453 my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
3454 my $dbh = C4::Context->dbh;
3455 # first step validate the actual line of transfert .
3456 my $sth =
3457 $dbh->prepare(
3458 "update branchtransfers set datearrived = now(),tobranch=?,comments='wrongtransfer' where itemnumber= ? AND datearrived IS NULL"
3460 $sth->execute($FromLibrary,$itemNumber);
3462 # second step create a new line of branchtransfer to the right location .
3463 ModItemTransfer($itemNumber, $FromLibrary, $waitingAtLibrary);
3465 #third step changing holdingbranch of item
3466 UpdateHoldingbranch($FromLibrary,$itemNumber);
3469 =head2 UpdateHoldingbranch
3471 $items = UpdateHoldingbranch($branch,$itmenumber);
3473 Simple methode for updating hodlingbranch in items BDD line
3475 =cut
3477 sub UpdateHoldingbranch {
3478 my ( $branch,$itemnumber ) = @_;
3479 ModItem({ holdingbranch => $branch }, undef, $itemnumber);
3482 =head2 CalcDateDue
3484 $newdatedue = CalcDateDue($startdate,$itemtype,$branchcode,$borrower);
3486 this function calculates the due date given the start date and configured circulation rules,
3487 checking against the holidays calendar as per the 'useDaysMode' syspref.
3488 C<$startdate> = DateTime object representing start date of loan period (assumed to be today)
3489 C<$itemtype> = itemtype code of item in question
3490 C<$branch> = location whose calendar to use
3491 C<$borrower> = Borrower object
3492 C<$isrenewal> = Boolean: is true if we want to calculate the date due for a renewal. Else is false.
3494 =cut
3496 sub CalcDateDue {
3497 my ( $startdate, $itemtype, $branch, $borrower, $isrenewal ) = @_;
3499 $isrenewal ||= 0;
3501 # loanlength now a href
3502 my $loanlength =
3503 GetLoanLength( $borrower->{'categorycode'}, $itemtype, $branch );
3505 my $length_key = ( $isrenewal and defined $loanlength->{renewalperiod} )
3506 ? qq{renewalperiod}
3507 : qq{issuelength};
3509 my $datedue;
3510 if ( $startdate ) {
3511 if (ref $startdate ne 'DateTime' ) {
3512 $datedue = dt_from_string($datedue);
3513 } else {
3514 $datedue = $startdate->clone;
3516 } else {
3517 $datedue =
3518 DateTime->now( time_zone => C4::Context->tz() )
3519 ->truncate( to => 'minute' );
3523 # calculate the datedue as normal
3524 if ( C4::Context->preference('useDaysMode') eq 'Days' )
3525 { # ignoring calendar
3526 if ( $loanlength->{lengthunit} eq 'hours' ) {
3527 $datedue->add( hours => $loanlength->{$length_key} );
3528 } else { # days
3529 $datedue->add( days => $loanlength->{$length_key} );
3530 $datedue->set_hour(23);
3531 $datedue->set_minute(59);
3533 } else {
3534 my $dur;
3535 if ($loanlength->{lengthunit} eq 'hours') {
3536 $dur = DateTime::Duration->new( hours => $loanlength->{$length_key});
3538 else { # days
3539 $dur = DateTime::Duration->new( days => $loanlength->{$length_key});
3541 my $calendar = Koha::Calendar->new( branchcode => $branch );
3542 $datedue = $calendar->addDate( $datedue, $dur, $loanlength->{lengthunit} );
3543 if ($loanlength->{lengthunit} eq 'days') {
3544 $datedue->set_hour(23);
3545 $datedue->set_minute(59);
3549 # if Hard Due Dates are used, retrieve them and apply as necessary
3550 my ( $hardduedate, $hardduedatecompare ) =
3551 GetHardDueDate( $borrower->{'categorycode'}, $itemtype, $branch );
3552 if ($hardduedate) { # hardduedates are currently dates
3553 $hardduedate->truncate( to => 'minute' );
3554 $hardduedate->set_hour(23);
3555 $hardduedate->set_minute(59);
3556 my $cmp = DateTime->compare( $hardduedate, $datedue );
3558 # if the calculated due date is after the 'before' Hard Due Date (ceiling), override
3559 # if the calculated date is before the 'after' Hard Due Date (floor), override
3560 # if the hard due date is set to 'exactly', overrride
3561 if ( $hardduedatecompare == 0 || $hardduedatecompare == $cmp ) {
3562 $datedue = $hardduedate->clone;
3565 # in all other cases, keep the date due as it is
3569 # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
3570 if ( C4::Context->preference('ReturnBeforeExpiry') ) {
3571 my $expiry_dt = dt_from_string( $borrower->{dateexpiry}, 'iso', 'floating');
3572 if( $expiry_dt ) { #skip empty expiry date..
3573 $expiry_dt->set( hour => 23, minute => 59);
3574 my $d1= $datedue->clone->set_time_zone('floating');
3575 if ( DateTime->compare( $d1, $expiry_dt ) == 1 ) {
3576 $datedue = $expiry_dt->clone->set_time_zone( C4::Context->tz );
3579 if ( C4::Context->preference('useDaysMode') ne 'Days' ) {
3580 my $calendar = Koha::Calendar->new( branchcode => $branch );
3581 if ( $calendar->is_holiday($datedue) ) {
3582 # Don't return on a closed day
3583 $datedue = $calendar->prev_open_day( $datedue );
3588 return $datedue;
3592 sub CheckValidBarcode{
3593 my ($barcode) = @_;
3594 my $dbh = C4::Context->dbh;
3595 my $query=qq|SELECT count(*)
3596 FROM items
3597 WHERE barcode=?
3599 my $sth = $dbh->prepare($query);
3600 $sth->execute($barcode);
3601 my $exist=$sth->fetchrow ;
3602 return $exist;
3605 =head2 IsBranchTransferAllowed
3607 $allowed = IsBranchTransferAllowed( $toBranch, $fromBranch, $code );
3609 Code is either an itemtype or collection doe depending on the pref BranchTransferLimitsType
3611 Deprecated in favor of Koha::Item::Transfer::Limits->find/search and
3612 Koha::Item->can_be_transferred.
3614 =cut
3616 sub IsBranchTransferAllowed {
3617 my ( $toBranch, $fromBranch, $code ) = @_;
3619 if ( $toBranch eq $fromBranch ) { return 1; } ## Short circuit for speed.
3621 my $limitType = C4::Context->preference("BranchTransferLimitsType");
3622 my $dbh = C4::Context->dbh;
3624 my $sth = $dbh->prepare("SELECT * FROM branch_transfer_limits WHERE toBranch = ? AND fromBranch = ? AND $limitType = ?");
3625 $sth->execute( $toBranch, $fromBranch, $code );
3626 my $limit = $sth->fetchrow_hashref();
3628 ## If a row is found, then that combination is not allowed, if no matching row is found, then the combination *is allowed*
3629 if ( $limit->{'limitId'} ) {
3630 return 0;
3631 } else {
3632 return 1;
3636 =head2 CreateBranchTransferLimit
3638 CreateBranchTransferLimit( $toBranch, $fromBranch, $code );
3640 $code is either itemtype or collection code depending on what the pref BranchTransferLimitsType is set to.
3642 Deprecated in favor of Koha::Item::Transfer::Limit->new.
3644 =cut
3646 sub CreateBranchTransferLimit {
3647 my ( $toBranch, $fromBranch, $code ) = @_;
3648 return unless defined($toBranch) && defined($fromBranch);
3649 my $limitType = C4::Context->preference("BranchTransferLimitsType");
3651 my $dbh = C4::Context->dbh;
3653 my $sth = $dbh->prepare("INSERT INTO branch_transfer_limits ( $limitType, toBranch, fromBranch ) VALUES ( ?, ?, ? )");
3654 return $sth->execute( $code, $toBranch, $fromBranch );
3657 =head2 DeleteBranchTransferLimits
3659 my $result = DeleteBranchTransferLimits($frombranch);
3661 Deletes all the library transfer limits for one library. Returns the
3662 number of limits deleted, 0e0 if no limits were deleted, or undef if
3663 no arguments are supplied.
3665 Deprecated in favor of Koha::Item::Transfer::Limits->search({
3666 fromBranch => $fromBranch
3667 })->delete.
3669 =cut
3671 sub DeleteBranchTransferLimits {
3672 my $branch = shift;
3673 return unless defined $branch;
3674 my $dbh = C4::Context->dbh;
3675 my $sth = $dbh->prepare("DELETE FROM branch_transfer_limits WHERE fromBranch = ?");
3676 return $sth->execute($branch);
3679 sub ReturnLostItem{
3680 my ( $borrowernumber, $itemnum ) = @_;
3682 MarkIssueReturned( $borrowernumber, $itemnum );
3683 my $patron = Koha::Patrons->find( $borrowernumber );
3684 my $item = C4::Items::GetItem( $itemnum );
3685 my $old_note = ($item->{'paidfor'} && ($item->{'paidfor'} ne q{})) ? $item->{'paidfor'}.' / ' : q{};
3686 my @datearr = localtime(time);
3687 my $date = ( 1900 + $datearr[5] ) . "-" . ( $datearr[4] + 1 ) . "-" . $datearr[3];
3688 my $bor = $patron->firstname . ' ' . $patron->surname . ' ' . $patron->cardnumber;
3689 ModItem({ paidfor => $old_note."Paid for by $bor $date" }, undef, $itemnum);
3693 sub LostItem{
3694 my ($itemnumber, $mark_lost_from, $force_mark_returned) = @_;
3696 unless ( $mark_lost_from ) {
3697 # Temporary check to avoid regressions
3698 die q|LostItem called without $mark_lost_from, check the API.|;
3701 my $mark_returned;
3702 if ( $force_mark_returned ) {
3703 $mark_returned = 1;
3704 } else {
3705 my $pref = C4::Context->preference('MarkLostItemsAsReturned') // q{};
3706 $mark_returned = ( $pref =~ m|$mark_lost_from| );
3709 my $dbh = C4::Context->dbh();
3710 my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title
3711 FROM issues
3712 JOIN items USING (itemnumber)
3713 JOIN biblio USING (biblionumber)
3714 WHERE issues.itemnumber=?");
3715 $sth->execute($itemnumber);
3716 my $issues=$sth->fetchrow_hashref();
3718 # If a borrower lost the item, add a replacement cost to the their record
3719 if ( my $borrowernumber = $issues->{borrowernumber} ){
3720 my $patron = Koha::Patrons->find( $borrowernumber );
3722 my $fix = _FixOverduesOnReturn($borrowernumber, $itemnumber, C4::Context->preference('WhenLostForgiveFine'), 0); # 1, 0 = exemptfine, no-dropbox
3723 defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $itemnumber...) failed!"; # zero is OK, check defined
3725 if (C4::Context->preference('WhenLostChargeReplacementFee')){
3726 C4::Accounts::chargelostitem($borrowernumber, $itemnumber, $issues->{'replacementprice'}, "Lost Item $issues->{'title'} $issues->{'barcode'} $issues->{'itemcallnumber'}");
3727 #FIXME : Should probably have a way to distinguish this from an item that really was returned.
3728 #warn " $issues->{'borrowernumber'} / $itemnumber ";
3731 MarkIssueReturned($borrowernumber,$itemnumber,undef,undef,$patron->privacy) if $mark_returned;
3734 #When item is marked lost automatically cancel its outstanding transfers and set items holdingbranch to the transfer source branch (frombranch)
3735 if (my ( $datesent,$frombranch,$tobranch ) = GetTransfers($itemnumber)) {
3736 ModItem({holdingbranch => $frombranch}, undef, $itemnumber);
3738 my $transferdeleted = DeleteTransfer($itemnumber);
3741 sub GetOfflineOperations {
3742 my $dbh = C4::Context->dbh;
3743 my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE branchcode=? ORDER BY timestamp");
3744 $sth->execute(C4::Context->userenv->{'branch'});
3745 my $results = $sth->fetchall_arrayref({});
3746 return $results;
3749 sub GetOfflineOperation {
3750 my $operationid = shift;
3751 return unless $operationid;
3752 my $dbh = C4::Context->dbh;
3753 my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE operationid=?");
3754 $sth->execute( $operationid );
3755 return $sth->fetchrow_hashref;
3758 sub AddOfflineOperation {
3759 my ( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount ) = @_;
3760 my $dbh = C4::Context->dbh;
3761 my $sth = $dbh->prepare("INSERT INTO pending_offline_operations (userid, branchcode, timestamp, action, barcode, cardnumber, amount) VALUES(?,?,?,?,?,?,?)");
3762 $sth->execute( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount );
3763 return "Added.";
3766 sub DeleteOfflineOperation {
3767 my $dbh = C4::Context->dbh;
3768 my $sth = $dbh->prepare("DELETE FROM pending_offline_operations WHERE operationid=?");
3769 $sth->execute( shift );
3770 return "Deleted.";
3773 sub ProcessOfflineOperation {
3774 my $operation = shift;
3776 my $report;
3777 if ( $operation->{action} eq 'return' ) {
3778 $report = ProcessOfflineReturn( $operation );
3779 } elsif ( $operation->{action} eq 'issue' ) {
3780 $report = ProcessOfflineIssue( $operation );
3781 } elsif ( $operation->{action} eq 'payment' ) {
3782 $report = ProcessOfflinePayment( $operation );
3785 DeleteOfflineOperation( $operation->{operationid} ) if $operation->{operationid};
3787 return $report;
3790 sub ProcessOfflineReturn {
3791 my $operation = shift;
3793 my $item = Koha::Items->find({barcode => $operation->{barcode}});
3795 if ( $item ) {
3796 my $itemnumber = $item->itemnumber;
3797 my $issue = GetOpenIssue( $itemnumber );
3798 if ( $issue ) {
3799 MarkIssueReturned(
3800 $issue->{borrowernumber},
3801 $itemnumber,
3802 undef,
3803 $operation->{timestamp},
3805 ModItem(
3806 { renewals => 0, onloan => undef },
3807 $issue->{'biblionumber'},
3808 $itemnumber,
3809 { log_action => 0 }
3811 return "Success.";
3812 } else {
3813 return "Item not issued.";
3815 } else {
3816 return "Item not found.";
3820 sub ProcessOfflineIssue {
3821 my $operation = shift;
3823 my $patron = Koha::Patrons->find( { cardnumber => $operation->{cardnumber} } );
3825 if ( $patron ) {
3826 my $item = Koha::Items->find({ barcode => $operation->{barcode} });
3827 unless ($item) {
3828 return "Barcode not found.";
3830 my $itemnumber = $item->itemnumber;
3831 my $issue = GetOpenIssue( $itemnumber );
3833 if ( $issue and ( $issue->{borrowernumber} ne $patron->borrowernumber ) ) { # Item already issued to another patron mark it returned
3834 MarkIssueReturned(
3835 $issue->{borrowernumber},
3836 $itemnumber,
3837 undef,
3838 $operation->{timestamp},
3841 AddIssue(
3842 $patron->unblessed,
3843 $operation->{'barcode'},
3844 undef,
3846 $operation->{timestamp},
3847 undef,
3849 return "Success.";
3850 } else {
3851 return "Borrower not found.";
3855 sub ProcessOfflinePayment {
3856 my $operation = shift;
3858 my $patron = Koha::Patrons->find({ cardnumber => $operation->{cardnumber} });
3860 $patron->account->pay({ amount => $operation->{amount}, library_id => $operation->{branchcode} });
3862 return "Success.";
3865 =head2 TransferSlip
3867 TransferSlip($user_branch, $itemnumber, $barcode, $to_branch)
3869 Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
3871 =cut
3873 sub TransferSlip {
3874 my ($branch, $itemnumber, $barcode, $to_branch) = @_;
3876 my $item = GetItem( $itemnumber, $barcode )
3877 or return;
3879 return C4::Letters::GetPreparedLetter (
3880 module => 'circulation',
3881 letter_code => 'TRANSFERSLIP',
3882 branchcode => $branch,
3883 tables => {
3884 'branches' => $to_branch,
3885 'biblio' => $item->{biblionumber},
3886 'items' => $item,
3891 =head2 CheckIfIssuedToPatron
3893 CheckIfIssuedToPatron($borrowernumber, $biblionumber)
3895 Return 1 if any record item is issued to patron, otherwise return 0
3897 =cut
3899 sub CheckIfIssuedToPatron {
3900 my ($borrowernumber, $biblionumber) = @_;
3902 my $dbh = C4::Context->dbh;
3903 my $query = q|
3904 SELECT COUNT(*) FROM issues
3905 LEFT JOIN items ON items.itemnumber = issues.itemnumber
3906 WHERE items.biblionumber = ?
3907 AND issues.borrowernumber = ?
3909 my $is_issued = $dbh->selectrow_array($query, {}, $biblionumber, $borrowernumber );
3910 return 1 if $is_issued;
3911 return;
3914 =head2 IsItemIssued
3916 IsItemIssued( $itemnumber )
3918 Return 1 if the item is on loan, otherwise return 0
3920 =cut
3922 sub IsItemIssued {
3923 my $itemnumber = shift;
3924 my $dbh = C4::Context->dbh;
3925 my $sth = $dbh->prepare(q{
3926 SELECT COUNT(*)
3927 FROM issues
3928 WHERE itemnumber = ?
3930 $sth->execute($itemnumber);
3931 return $sth->fetchrow;
3934 =head2 GetAgeRestriction
3936 my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions, $borrower);
3937 my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions);
3939 if($daysToAgeRestriction <= 0) { #Borrower is allowed to access this material, as they are older or as old as the agerestriction }
3940 if($daysToAgeRestriction > 0) { #Borrower is this many days from meeting the agerestriction }
3942 @PARAM1 the koha.biblioitems.agerestriction value, like K18, PEGI 13, ...
3943 @PARAM2 a borrower-object with koha.borrowers.dateofbirth. (OPTIONAL)
3944 @RETURNS The age restriction age in years and the days to fulfill the age restriction for the given borrower.
3945 Negative days mean the borrower has gone past the age restriction age.
3947 =cut
3949 sub GetAgeRestriction {
3950 my ($record_restrictions, $borrower) = @_;
3951 my $markers = C4::Context->preference('AgeRestrictionMarker');
3953 # Split $record_restrictions to something like FSK 16 or PEGI 6
3954 my @values = split ' ', uc($record_restrictions);
3955 return unless @values;
3957 # Search first occurrence of one of the markers
3958 my @markers = split /\|/, uc($markers);
3959 return unless @markers;
3961 my $index = 0;
3962 my $restriction_year = 0;
3963 for my $value (@values) {
3964 $index++;
3965 for my $marker (@markers) {
3966 $marker =~ s/^\s+//; #remove leading spaces
3967 $marker =~ s/\s+$//; #remove trailing spaces
3968 if ( $marker eq $value ) {
3969 if ( $index <= $#values ) {
3970 $restriction_year += $values[$index];
3972 last;
3974 elsif ( $value =~ /^\Q$marker\E(\d+)$/ ) {
3976 # Perhaps it is something like "K16" (as in Finland)
3977 $restriction_year += $1;
3978 last;
3981 last if ( $restriction_year > 0 );
3984 #Check if the borrower is age restricted for this material and for how long.
3985 if ($restriction_year && $borrower) {
3986 if ( $borrower->{'dateofbirth'} ) {
3987 my @alloweddate = split /-/, $borrower->{'dateofbirth'};
3988 $alloweddate[0] += $restriction_year;
3990 #Prevent runime eror on leap year (invalid date)
3991 if ( ( $alloweddate[1] == 2 ) && ( $alloweddate[2] == 29 ) ) {
3992 $alloweddate[2] = 28;
3995 #Get how many days the borrower has to reach the age restriction
3996 my @Today = split /-/, DateTime->today->ymd();
3997 my $daysToAgeRestriction = Date_to_Days(@alloweddate) - Date_to_Days(@Today);
3998 #Negative days means the borrower went past the age restriction age
3999 return ($restriction_year, $daysToAgeRestriction);
4003 return ($restriction_year);
4007 =head2 GetPendingOnSiteCheckouts
4009 =cut
4011 sub GetPendingOnSiteCheckouts {
4012 my $dbh = C4::Context->dbh;
4013 return $dbh->selectall_arrayref(q|
4014 SELECT
4015 items.barcode,
4016 items.biblionumber,
4017 items.itemnumber,
4018 items.itemnotes,
4019 items.itemcallnumber,
4020 items.location,
4021 issues.date_due,
4022 issues.branchcode,
4023 issues.date_due < NOW() AS is_overdue,
4024 biblio.author,
4025 biblio.title,
4026 borrowers.firstname,
4027 borrowers.surname,
4028 borrowers.cardnumber,
4029 borrowers.borrowernumber
4030 FROM items
4031 LEFT JOIN issues ON items.itemnumber = issues.itemnumber
4032 LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
4033 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
4034 WHERE issues.onsite_checkout = 1
4035 |, { Slice => {} } );
4038 sub GetTopIssues {
4039 my ($params) = @_;
4041 my ($count, $branch, $itemtype, $ccode, $newness)
4042 = @$params{qw(count branch itemtype ccode newness)};
4044 my $dbh = C4::Context->dbh;
4045 my $query = q{
4046 SELECT * FROM (
4047 SELECT b.biblionumber, b.title, b.author, bi.itemtype, bi.publishercode,
4048 bi.place, bi.publicationyear, b.copyrightdate, bi.pages, bi.size,
4049 i.ccode, SUM(i.issues) AS count
4050 FROM biblio b
4051 LEFT JOIN items i ON (i.biblionumber = b.biblionumber)
4052 LEFT JOIN biblioitems bi ON (bi.biblionumber = b.biblionumber)
4055 my (@where_strs, @where_args);
4057 if ($branch) {
4058 push @where_strs, 'i.homebranch = ?';
4059 push @where_args, $branch;
4061 if ($itemtype) {
4062 if (C4::Context->preference('item-level_itypes')){
4063 push @where_strs, 'i.itype = ?';
4064 push @where_args, $itemtype;
4065 } else {
4066 push @where_strs, 'bi.itemtype = ?';
4067 push @where_args, $itemtype;
4070 if ($ccode) {
4071 push @where_strs, 'i.ccode = ?';
4072 push @where_args, $ccode;
4074 if ($newness) {
4075 push @where_strs, 'TO_DAYS(NOW()) - TO_DAYS(b.datecreated) <= ?';
4076 push @where_args, $newness;
4079 if (@where_strs) {
4080 $query .= 'WHERE ' . join(' AND ', @where_strs);
4083 $query .= q{
4084 GROUP BY b.biblionumber, b.title, b.author, bi.itemtype, bi.publishercode,
4085 bi.place, bi.publicationyear, b.copyrightdate, bi.pages, bi.size,
4086 i.ccode
4087 ORDER BY count DESC
4090 $query .= q{ ) xxx WHERE count > 0 };
4091 $count = int($count);
4092 if ($count > 0) {
4093 $query .= "LIMIT $count";
4096 my $rows = $dbh->selectall_arrayref($query, { Slice => {} }, @where_args);
4098 return @$rows;
4101 sub _CalculateAndUpdateFine {
4102 my ($params) = @_;
4104 my $borrower = $params->{borrower};
4105 my $item = $params->{item};
4106 my $issue = $params->{issue};
4107 my $return_date = $params->{return_date};
4109 unless ($borrower) { carp "No borrower passed in!" && return; }
4110 unless ($item) { carp "No item passed in!" && return; }
4111 unless ($issue) { carp "No issue passed in!" && return; }
4113 my $datedue = dt_from_string( $issue->date_due );
4115 # we only need to calculate and change the fines if we want to do that on return
4116 # Should be on for hourly loans
4117 my $control = C4::Context->preference('CircControl');
4118 my $control_branchcode =
4119 ( $control eq 'ItemHomeLibrary' ) ? $item->{homebranch}
4120 : ( $control eq 'PatronLibrary' ) ? $borrower->{branchcode}
4121 : $issue->branchcode;
4123 my $date_returned = $return_date ? dt_from_string($return_date) : dt_from_string();
4125 my ( $amount, $unitcounttotal, $unitcount ) =
4126 C4::Overdues::CalcFine( $item, $borrower->{categorycode}, $control_branchcode, $datedue, $date_returned );
4128 if ( C4::Context->preference('finesMode') eq 'production' ) {
4129 if ( $amount > 0 ) {
4130 C4::Overdues::UpdateFine({
4131 issue_id => $issue->issue_id,
4132 itemnumber => $issue->itemnumber,
4133 borrowernumber => $issue->borrowernumber,
4134 amount => $amount,
4135 due => output_pref($datedue),
4138 elsif ($return_date) {
4140 # Backdated returns may have fines that shouldn't exist,
4141 # so in this case, we need to drop those fines to 0
4143 C4::Overdues::UpdateFine({
4144 issue_id => $issue->issue_id,
4145 itemnumber => $issue->itemnumber,
4146 borrowernumber => $issue->borrowernumber,
4147 amount => 0,
4148 due => output_pref($datedue),
4154 sub _item_denied_renewal {
4155 my ($params) = @_;
4157 my $item = $params->{item};
4158 return unless $item;
4160 my $denyingrules = Koha::Config::SysPrefs->find('ItemsDeniedRenewal')->get_yaml_pref_hash();
4161 return unless $denyingrules;
4162 foreach my $field (keys %$denyingrules) {
4163 my $val = $item->{$field};
4164 if( !defined $val) {
4165 if ( any { !defined $_ } @{$denyingrules->{$field}} ){
4166 return 1;
4168 } elsif (any { defined($_) && $val eq $_ } @{$denyingrules->{$field}}) {
4169 # If the results matches the values in the syspref
4170 # We return true if match found
4171 return 1;
4174 return 0;
4180 __END__
4182 =head1 AUTHOR
4184 Koha Development Team <http://koha-community.org/>
4186 =cut