Bug 12176: Remove HTML from additem.pl
[koha.git] / C4 / Circulation.pm
blobf9916809c08a89f93f303fec5bbc30b1dddb7121
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 C4::Context;
26 use C4::Stats;
27 use C4::Reserves;
28 use C4::Biblio;
29 use C4::Items;
30 use C4::Members;
31 use C4::Dates;
32 use C4::Dates qw(format_date);
33 use C4::Accounts;
34 use C4::ItemCirculationAlertPreference;
35 use C4::Message;
36 use C4::Debug;
37 use C4::Branch; # GetBranches
38 use C4::Log; # logaction
39 use C4::Koha qw(
40 GetAuthorisedValueByCode
41 GetAuthValCode
42 GetKohaAuthorisedValueLib
44 use C4::Overdues qw(CalcFine UpdateFine get_chargeable_units);
45 use C4::RotatingCollections qw(GetCollectionItemBranches);
46 use Algorithm::CheckDigits;
48 use Data::Dumper;
49 use Koha::DateUtils;
50 use Koha::Calendar;
51 use Koha::Borrower::Debarments;
52 use Koha::Database;
53 use Carp;
54 use List::MoreUtils qw( uniq );
55 use Date::Calc qw(
56 Today
57 Today_and_Now
58 Add_Delta_YM
59 Add_Delta_DHMS
60 Date_to_Days
61 Day_of_Week
62 Add_Delta_Days
64 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
66 BEGIN {
67 require Exporter;
68 $VERSION = 3.07.00.049; # for version checking
69 @ISA = qw(Exporter);
71 # FIXME subs that should probably be elsewhere
72 push @EXPORT, qw(
73 &barcodedecode
74 &LostItem
75 &ReturnLostItem
76 &GetPendingOnSiteCheckouts
79 # subs to deal with issuing a book
80 push @EXPORT, qw(
81 &CanBookBeIssued
82 &CanBookBeRenewed
83 &AddIssue
84 &AddRenewal
85 &GetRenewCount
86 &GetSoonestRenewDate
87 &GetItemIssue
88 &GetItemIssues
89 &GetIssuingCharges
90 &GetIssuingRule
91 &GetBranchBorrowerCircRule
92 &GetBranchItemRule
93 &GetBiblioIssues
94 &GetOpenIssue
95 &AnonymiseIssueHistory
96 &CheckIfIssuedToPatron
97 &IsItemIssued
100 # subs to deal with returns
101 push @EXPORT, qw(
102 &AddReturn
103 &MarkIssueReturned
106 # subs to deal with transfers
107 push @EXPORT, qw(
108 &transferbook
109 &GetTransfers
110 &GetTransfersFromTo
111 &updateWrongTransfer
112 &DeleteTransfer
113 &IsBranchTransferAllowed
114 &CreateBranchTransferLimit
115 &DeleteBranchTransferLimits
116 &TransferSlip
119 # subs to deal with offline circulation
120 push @EXPORT, qw(
121 &GetOfflineOperations
122 &GetOfflineOperation
123 &AddOfflineOperation
124 &DeleteOfflineOperation
125 &ProcessOfflineOperation
129 =head1 NAME
131 C4::Circulation - Koha circulation module
133 =head1 SYNOPSIS
135 use C4::Circulation;
137 =head1 DESCRIPTION
139 The functions in this module deal with circulation, issues, and
140 returns, as well as general information about the library.
141 Also deals with stocktaking.
143 =head1 FUNCTIONS
145 =head2 barcodedecode
147 $str = &barcodedecode($barcode, [$filter]);
149 Generic filter function for barcode string.
150 Called on every circ if the System Pref itemBarcodeInputFilter is set.
151 Will do some manipulation of the barcode for systems that deliver a barcode
152 to circulation.pl that differs from the barcode stored for the item.
153 For proper functioning of this filter, calling the function on the
154 correct barcode string (items.barcode) should return an unaltered barcode.
156 The optional $filter argument is to allow for testing or explicit
157 behavior that ignores the System Pref. Valid values are the same as the
158 System Pref options.
160 =cut
162 # FIXME -- the &decode fcn below should be wrapped into this one.
163 # FIXME -- these plugins should be moved out of Circulation.pm
165 sub barcodedecode {
166 my ($barcode, $filter) = @_;
167 my $branch = C4::Branch::mybranch();
168 $filter = C4::Context->preference('itemBarcodeInputFilter') unless $filter;
169 $filter or return $barcode; # ensure filter is defined, else return untouched barcode
170 if ($filter eq 'whitespace') {
171 $barcode =~ s/\s//g;
172 } elsif ($filter eq 'cuecat') {
173 chomp($barcode);
174 my @fields = split( /\./, $barcode );
175 my @results = map( decode($_), @fields[ 1 .. $#fields ] );
176 ($#results == 2) and return $results[2];
177 } elsif ($filter eq 'T-prefix') {
178 if ($barcode =~ /^[Tt](\d)/) {
179 (defined($1) and $1 eq '0') and return $barcode;
180 $barcode = substr($barcode, 2) + 0; # FIXME: probably should be substr($barcode, 1)
182 return sprintf("T%07d", $barcode);
183 # FIXME: $barcode could be "T1", causing warning: substr outside of string
184 # Why drop the nonzero digit after the T?
185 # Why pass non-digits (or empty string) to "T%07d"?
186 } elsif ($filter eq 'libsuite8') {
187 unless($barcode =~ m/^($branch)-/i){ #if barcode starts with branch code its in Koha style. Skip it.
188 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
189 $barcode =~ s/^[0]*(\d+)$/$branch-b-$1/i;
190 }else{
191 $barcode =~ s/^(\D+)[0]*(\d+)$/$branch-$1-$2/i;
194 } elsif ($filter eq 'EAN13') {
195 my $ean = CheckDigits('ean');
196 if ( $ean->is_valid($barcode) ) {
197 #$barcode = sprintf('%013d',$barcode); # this doesn't work on 32-bit systems
198 $barcode = '0' x ( 13 - length($barcode) ) . $barcode;
199 } else {
200 warn "# [$barcode] not valid EAN-13/UPC-A\n";
203 return $barcode; # return barcode, modified or not
206 =head2 decode
208 $str = &decode($chunk);
210 Decodes a segment of a string emitted by a CueCat barcode scanner and
211 returns it.
213 FIXME: Should be replaced with Barcode::Cuecat from CPAN
214 or Javascript based decoding on the client side.
216 =cut
218 sub decode {
219 my ($encoded) = @_;
220 my $seq =
221 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-';
222 my @s = map { index( $seq, $_ ); } split( //, $encoded );
223 my $l = ( $#s + 1 ) % 4;
224 if ($l) {
225 if ( $l == 1 ) {
226 # warn "Error: Cuecat decode parsing failed!";
227 return;
229 $l = 4 - $l;
230 $#s += $l;
232 my $r = '';
233 while ( $#s >= 0 ) {
234 my $n = ( ( $s[0] << 6 | $s[1] ) << 6 | $s[2] ) << 6 | $s[3];
235 $r .=
236 chr( ( $n >> 16 ) ^ 67 )
237 .chr( ( $n >> 8 & 255 ) ^ 67 )
238 .chr( ( $n & 255 ) ^ 67 );
239 @s = @s[ 4 .. $#s ];
241 $r = substr( $r, 0, length($r) - $l );
242 return $r;
245 =head2 transferbook
247 ($dotransfer, $messages, $iteminformation) = &transferbook($newbranch,
248 $barcode, $ignore_reserves);
250 Transfers an item to a new branch. If the item is currently on loan, it is automatically returned before the actual transfer.
252 C<$newbranch> is the code for the branch to which the item should be transferred.
254 C<$barcode> is the barcode of the item to be transferred.
256 If C<$ignore_reserves> is true, C<&transferbook> ignores reserves.
257 Otherwise, if an item is reserved, the transfer fails.
259 Returns three values:
261 =over
263 =item $dotransfer
265 is true if the transfer was successful.
267 =item $messages
269 is a reference-to-hash which may have any of the following keys:
271 =over
273 =item C<BadBarcode>
275 There is no item in the catalog with the given barcode. The value is C<$barcode>.
277 =item C<IsPermanent>
279 The item's home branch is permanent. This doesn't prevent the item from being transferred, though. The value is the code of the item's home branch.
281 =item C<DestinationEqualsHolding>
283 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.
285 =item C<WasReturned>
287 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.
289 =item C<ResFound>
291 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>.
293 =item C<WasTransferred>
295 The item was eligible to be transferred. Barring problems communicating with the database, the transfer should indeed have succeeded. The value should be ignored.
297 =back
299 =back
301 =cut
303 sub transferbook {
304 my ( $tbr, $barcode, $ignoreRs ) = @_;
305 my $messages;
306 my $dotransfer = 1;
307 my $branches = GetBranches();
308 my $itemnumber = GetItemnumberFromBarcode( $barcode );
309 my $issue = GetItemIssue($itemnumber);
310 my $biblio = GetBiblioFromItemNumber($itemnumber);
312 # bad barcode..
313 if ( not $itemnumber ) {
314 $messages->{'BadBarcode'} = $barcode;
315 $dotransfer = 0;
318 # get branches of book...
319 my $hbr = $biblio->{'homebranch'};
320 my $fbr = $biblio->{'holdingbranch'};
322 # if using Branch Transfer Limits
323 if ( C4::Context->preference("UseBranchTransferLimits") == 1 ) {
324 if ( C4::Context->preference("item-level_itypes") && C4::Context->preference("BranchTransferLimitsType") eq 'itemtype' ) {
325 if ( ! IsBranchTransferAllowed( $tbr, $fbr, $biblio->{'itype'} ) ) {
326 $messages->{'NotAllowed'} = $tbr . "::" . $biblio->{'itype'};
327 $dotransfer = 0;
329 } elsif ( ! IsBranchTransferAllowed( $tbr, $fbr, $biblio->{ C4::Context->preference("BranchTransferLimitsType") } ) ) {
330 $messages->{'NotAllowed'} = $tbr . "::" . $biblio->{ C4::Context->preference("BranchTransferLimitsType") };
331 $dotransfer = 0;
335 # if is permanent...
336 if ( $hbr && $branches->{$hbr}->{'PE'} ) {
337 $messages->{'IsPermanent'} = $hbr;
338 $dotransfer = 0;
341 # can't transfer book if is already there....
342 if ( $fbr eq $tbr ) {
343 $messages->{'DestinationEqualsHolding'} = 1;
344 $dotransfer = 0;
347 # check if it is still issued to someone, return it...
348 if ($issue->{borrowernumber}) {
349 AddReturn( $barcode, $fbr );
350 $messages->{'WasReturned'} = $issue->{borrowernumber};
353 # find reserves.....
354 # That'll save a database query.
355 my ( $resfound, $resrec, undef ) =
356 CheckReserves( $itemnumber );
357 if ( $resfound and not $ignoreRs ) {
358 $resrec->{'ResFound'} = $resfound;
360 # $messages->{'ResFound'} = $resrec;
361 $dotransfer = 1;
364 #actually do the transfer....
365 if ($dotransfer) {
366 ModItemTransfer( $itemnumber, $fbr, $tbr );
368 # don't need to update MARC anymore, we do it in batch now
369 $messages->{'WasTransfered'} = 1;
372 ModDateLastSeen( $itemnumber );
373 return ( $dotransfer, $messages, $biblio );
377 sub TooMany {
378 my $borrower = shift;
379 my $biblionumber = shift;
380 my $item = shift;
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 = GetIssuingRule($cat_borrower, $type, $branch);
394 # if a rule is found and has a loan limit set, count
395 # how many loans the patron already has that meet that
396 # rule
397 if (defined($issuing_rule) and defined($issuing_rule->{'maxissueqty'})) {
398 my @bind_params;
399 my $count_query = "SELECT COUNT(*) FROM issues
400 JOIN items USING (itemnumber) ";
402 my $rule_itemtype = $issuing_rule->{itemtype};
403 if ($rule_itemtype eq "*") {
404 # matching rule has the default item type, so count only
405 # those existing loans that don't fall under a more
406 # specific rule
407 if (C4::Context->preference('item-level_itypes')) {
408 $count_query .= " WHERE items.itype NOT IN (
409 SELECT itemtype FROM issuingrules
410 WHERE branchcode = ?
411 AND (categorycode = ? OR categorycode = ?)
412 AND itemtype <> '*'
413 ) ";
414 } else {
415 $count_query .= " JOIN biblioitems USING (biblionumber)
416 WHERE biblioitems.itemtype NOT IN (
417 SELECT itemtype FROM issuingrules
418 WHERE branchcode = ?
419 AND (categorycode = ? OR categorycode = ?)
420 AND itemtype <> '*'
421 ) ";
423 push @bind_params, $issuing_rule->{branchcode};
424 push @bind_params, $issuing_rule->{categorycode};
425 push @bind_params, $cat_borrower;
426 } else {
427 # rule has specific item type, so count loans of that
428 # specific item type
429 if (C4::Context->preference('item-level_itypes')) {
430 $count_query .= " WHERE items.itype = ? ";
431 } else {
432 $count_query .= " JOIN biblioitems USING (biblionumber)
433 WHERE biblioitems.itemtype= ? ";
435 push @bind_params, $type;
438 $count_query .= " AND borrowernumber = ? ";
439 push @bind_params, $borrower->{'borrowernumber'};
440 my $rule_branch = $issuing_rule->{branchcode};
441 if ($rule_branch ne "*") {
442 if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
443 $count_query .= " AND issues.branchcode = ? ";
444 push @bind_params, $branch;
445 } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
446 ; # if branch is the patron's home branch, then count all loans by patron
447 } else {
448 $count_query .= " AND items.homebranch = ? ";
449 push @bind_params, $branch;
453 my $count_sth = $dbh->prepare($count_query);
454 $count_sth->execute(@bind_params);
455 my ($current_loan_count) = $count_sth->fetchrow_array;
457 my $max_loans_allowed = $issuing_rule->{'maxissueqty'};
458 if ($current_loan_count >= $max_loans_allowed) {
459 return ($current_loan_count, $max_loans_allowed);
463 # Now count total loans against the limit for the branch
464 my $branch_borrower_circ_rule = GetBranchBorrowerCircRule($branch, $cat_borrower);
465 if (defined($branch_borrower_circ_rule->{maxissueqty})) {
466 my @bind_params = ();
467 my $branch_count_query = "SELECT COUNT(*) FROM issues
468 JOIN items USING (itemnumber)
469 WHERE borrowernumber = ? ";
470 push @bind_params, $borrower->{borrowernumber};
472 if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
473 $branch_count_query .= " AND issues.branchcode = ? ";
474 push @bind_params, $branch;
475 } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
476 ; # if branch is the patron's home branch, then count all loans by patron
477 } else {
478 $branch_count_query .= " AND items.homebranch = ? ";
479 push @bind_params, $branch;
481 my $branch_count_sth = $dbh->prepare($branch_count_query);
482 $branch_count_sth->execute(@bind_params);
483 my ($current_loan_count) = $branch_count_sth->fetchrow_array;
485 my $max_loans_allowed = $branch_borrower_circ_rule->{maxissueqty};
486 if ($current_loan_count >= $max_loans_allowed) {
487 return ($current_loan_count, $max_loans_allowed);
491 # OK, the patron can issue !!!
492 return;
495 =head2 itemissues
497 @issues = &itemissues($biblioitemnumber, $biblio);
499 Looks up information about who has borrowed the bookZ<>(s) with the
500 given biblioitemnumber.
502 C<$biblio> is ignored.
504 C<&itemissues> returns an array of references-to-hash. The keys
505 include the fields from the C<items> table in the Koha database.
506 Additional keys include:
508 =over 4
510 =item C<date_due>
512 If the item is currently on loan, this gives the due date.
514 If the item is not on loan, then this is either "Available" or
515 "Cancelled", if the item has been withdrawn.
517 =item C<card>
519 If the item is currently on loan, this gives the card number of the
520 patron who currently has the item.
522 =item C<timestamp0>, C<timestamp1>, C<timestamp2>
524 These give the timestamp for the last three times the item was
525 borrowed.
527 =item C<card0>, C<card1>, C<card2>
529 The card number of the last three patrons who borrowed this item.
531 =item C<borrower0>, C<borrower1>, C<borrower2>
533 The borrower number of the last three patrons who borrowed this item.
535 =back
537 =cut
540 sub itemissues {
541 my ( $bibitem, $biblio ) = @_;
542 my $dbh = C4::Context->dbh;
543 my $sth =
544 $dbh->prepare("Select * from items where items.biblioitemnumber = ?")
545 || die $dbh->errstr;
546 my $i = 0;
547 my @results;
549 $sth->execute($bibitem) || die $sth->errstr;
551 while ( my $data = $sth->fetchrow_hashref ) {
553 # Find out who currently has this item.
554 # FIXME - Wouldn't it be better to do this as a left join of
555 # some sort? Currently, this code assumes that if
556 # fetchrow_hashref() fails, then the book is on the shelf.
557 # fetchrow_hashref() can fail for any number of reasons (e.g.,
558 # database server crash), not just because no items match the
559 # search criteria.
560 my $sth2 = $dbh->prepare(
561 "SELECT * FROM issues
562 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
563 WHERE itemnumber = ?
567 $sth2->execute( $data->{'itemnumber'} );
568 if ( my $data2 = $sth2->fetchrow_hashref ) {
569 $data->{'date_due'} = $data2->{'date_due'};
570 $data->{'card'} = $data2->{'cardnumber'};
571 $data->{'borrower'} = $data2->{'borrowernumber'};
573 else {
574 $data->{'date_due'} = ($data->{'withdrawn'} eq '1') ? 'Cancelled' : 'Available';
578 # Find the last 3 people who borrowed this item.
579 $sth2 = $dbh->prepare(
580 "SELECT * FROM old_issues
581 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
582 WHERE itemnumber = ?
583 ORDER BY returndate DESC,timestamp DESC"
586 $sth2->execute( $data->{'itemnumber'} );
587 for ( my $i2 = 0 ; $i2 < 2 ; $i2++ )
588 { # FIXME : error if there is less than 3 pple borrowing this item
589 if ( my $data2 = $sth2->fetchrow_hashref ) {
590 $data->{"timestamp$i2"} = $data2->{'timestamp'};
591 $data->{"card$i2"} = $data2->{'cardnumber'};
592 $data->{"borrower$i2"} = $data2->{'borrowernumber'};
593 } # if
594 } # for
596 $results[$i] = $data;
597 $i++;
600 return (@results);
603 =head2 CanBookBeIssued
605 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $borrower,
606 $barcode, $duedatespec, $inprocess, $ignore_reserves );
608 Check if a book can be issued.
610 C<$issuingimpossible> and C<$needsconfirmation> are some hashref.
612 =over 4
614 =item C<$borrower> hash with borrower informations (from GetMember or GetMemberDetails)
616 =item C<$barcode> is the bar code of the book being issued.
618 =item C<$duedatespec> is a C4::Dates object.
620 =item C<$inprocess> boolean switch
621 =item C<$ignore_reserves> boolean switch
623 =back
625 Returns :
627 =over 4
629 =item C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
630 Possible values are :
632 =back
634 =head3 INVALID_DATE
636 sticky due date is invalid
638 =head3 GNA
640 borrower gone with no address
642 =head3 CARD_LOST
644 borrower declared it's card lost
646 =head3 DEBARRED
648 borrower debarred
650 =head3 UNKNOWN_BARCODE
652 barcode unknown
654 =head3 NOT_FOR_LOAN
656 item is not for loan
658 =head3 WTHDRAWN
660 item withdrawn.
662 =head3 RESTRICTED
664 item is restricted (set by ??)
666 C<$needsconfirmation> a reference to a hash. It contains reasons why the loan
667 could be prevented, but ones that can be overriden by the operator.
669 Possible values are :
671 =head3 DEBT
673 borrower has debts.
675 =head3 RENEW_ISSUE
677 renewing, not issuing
679 =head3 ISSUED_TO_ANOTHER
681 issued to someone else.
683 =head3 RESERVED
685 reserved for someone else.
687 =head3 INVALID_DATE
689 sticky due date is invalid or due date in the past
691 =head3 TOO_MANY
693 if the borrower borrows to much things
695 =cut
697 sub CanBookBeIssued {
698 my ( $borrower, $barcode, $duedate, $inprocess, $ignore_reserves ) = @_;
699 my %needsconfirmation; # filled with problems that needs confirmations
700 my %issuingimpossible; # filled with problems that causes the issue to be IMPOSSIBLE
701 my %alerts; # filled with messages that shouldn't stop issuing, but the librarian should be aware of.
703 my $item = GetItem(GetItemnumberFromBarcode( $barcode ));
704 my $issue = GetItemIssue($item->{itemnumber});
705 my $biblioitem = GetBiblioItemData($item->{biblioitemnumber});
706 $item->{'itemtype'}=$item->{'itype'};
707 my $dbh = C4::Context->dbh;
709 # MANDATORY CHECKS - unless item exists, nothing else matters
710 unless ( $item->{barcode} ) {
711 $issuingimpossible{UNKNOWN_BARCODE} = 1;
713 return ( \%issuingimpossible, \%needsconfirmation ) if %issuingimpossible;
716 # DUE DATE is OK ? -- should already have checked.
718 if ($duedate && ref $duedate ne 'DateTime') {
719 $duedate = dt_from_string($duedate);
721 my $now = DateTime->now( time_zone => C4::Context->tz() );
722 unless ( $duedate ) {
723 my $issuedate = $now->clone();
725 my $branch = _GetCircControlBranch($item,$borrower);
726 my $itype = ( C4::Context->preference('item-level_itypes') ) ? $item->{'itype'} : $biblioitem->{'itemtype'};
727 $duedate = CalcDateDue( $issuedate, $itype, $branch, $borrower );
729 # Offline circ calls AddIssue directly, doesn't run through here
730 # So issuingimpossible should be ok.
732 if ($duedate) {
733 my $today = $now->clone();
734 $today->truncate( to => 'minute');
735 if (DateTime->compare($duedate,$today) == -1 ) { # duedate cannot be before now
736 $needsconfirmation{INVALID_DATE} = output_pref($duedate);
738 } else {
739 $issuingimpossible{INVALID_DATE} = output_pref($duedate);
743 # BORROWER STATUS
745 if ( $borrower->{'category_type'} eq 'X' && ( $item->{barcode} )) {
746 # stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1 .
747 &UpdateStats({
748 branch => C4::Context->userenv->{'branch'},
749 type => 'localuse',
750 itemnumber => $item->{'itemnumber'},
751 itemtype => $item->{'itemtype'},
752 borrowernumber => $borrower->{'borrowernumber'},
753 ccode => $item->{'ccode'}}
755 ModDateLastSeen( $item->{'itemnumber'} );
756 return( { STATS => 1 }, {});
758 if ( $borrower->{flags}->{GNA} ) {
759 $issuingimpossible{GNA} = 1;
761 if ( $borrower->{flags}->{'LOST'} ) {
762 $issuingimpossible{CARD_LOST} = 1;
764 if ( $borrower->{flags}->{'DBARRED'} ) {
765 $issuingimpossible{DEBARRED} = 1;
767 if ( !defined $borrower->{dateexpiry} || $borrower->{'dateexpiry'} eq '0000-00-00') {
768 $issuingimpossible{EXPIRED} = 1;
769 } else {
770 my ($y, $m, $d) = split /-/,$borrower->{'dateexpiry'};
771 if ($y && $m && $d) { # are we really writing oinvalid dates to borrs
772 my $expiry_dt = DateTime->new(
773 year => $y,
774 month => $m,
775 day => $d,
776 time_zone => C4::Context->tz,
778 $expiry_dt->truncate( to => 'day');
779 my $today = $now->clone()->truncate(to => 'day');
780 if (DateTime->compare($today, $expiry_dt) == 1) {
781 $issuingimpossible{EXPIRED} = 1;
783 } else {
784 carp("Invalid expity date in borr");
785 $issuingimpossible{EXPIRED} = 1;
789 # BORROWER STATUS
792 # DEBTS
793 my ($balance, $non_issue_charges, $other_charges) =
794 C4::Members::GetMemberAccountBalance( $borrower->{'borrowernumber'} );
795 my $amountlimit = C4::Context->preference("noissuescharge");
796 my $allowfineoverride = C4::Context->preference("AllowFineOverride");
797 my $allfinesneedoverride = C4::Context->preference("AllFinesNeedOverride");
798 if ( C4::Context->preference("IssuingInProcess") ) {
799 if ( $non_issue_charges > $amountlimit && !$inprocess && !$allowfineoverride) {
800 $issuingimpossible{DEBT} = sprintf( "%.2f", $non_issue_charges );
801 } elsif ( $non_issue_charges > $amountlimit && !$inprocess && $allowfineoverride) {
802 $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
803 } elsif ( $allfinesneedoverride && $non_issue_charges > 0 && $non_issue_charges <= $amountlimit && !$inprocess ) {
804 $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
807 else {
808 if ( $non_issue_charges > $amountlimit && $allowfineoverride ) {
809 $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
810 } elsif ( $non_issue_charges > $amountlimit && !$allowfineoverride) {
811 $issuingimpossible{DEBT} = sprintf( "%.2f", $non_issue_charges );
812 } elsif ( $non_issue_charges > 0 && $allfinesneedoverride ) {
813 $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
816 if ($balance > 0 && $other_charges > 0) {
817 $alerts{OTHER_CHARGES} = sprintf( "%.2f", $other_charges );
820 my ($blocktype, $count) = C4::Members::IsMemberBlocked($borrower->{'borrowernumber'});
821 if ($blocktype == -1) {
822 ## patron has outstanding overdue loans
823 if ( C4::Context->preference("OverduesBlockCirc") eq 'block'){
824 $issuingimpossible{USERBLOCKEDOVERDUE} = $count;
826 elsif ( C4::Context->preference("OverduesBlockCirc") eq 'confirmation'){
827 $needsconfirmation{USERBLOCKEDOVERDUE} = $count;
829 } elsif($blocktype == 1) {
830 # patron has accrued fine days or has a restriction. $count is a date
831 if ($count eq '9999-12-31') {
832 $issuingimpossible{USERBLOCKEDNOENDDATE} = $count;
834 else {
835 $issuingimpossible{USERBLOCKEDWITHENDDATE} = $count;
840 # JB34 CHECKS IF BORROWERS DONT HAVE ISSUE TOO MANY BOOKS
842 my ($current_loan_count, $max_loans_allowed) = TooMany( $borrower, $item->{biblionumber}, $item );
843 # if TooMany max_loans_allowed returns 0 the user doesn't have permission to check out this book
844 if (defined $max_loans_allowed && $max_loans_allowed == 0) {
845 $needsconfirmation{PATRON_CANT} = 1;
846 } else {
847 if($max_loans_allowed){
848 if ( C4::Context->preference("AllowTooManyOverride") ) {
849 $needsconfirmation{TOO_MANY} = 1;
850 $needsconfirmation{current_loan_count} = $current_loan_count;
851 $needsconfirmation{max_loans_allowed} = $max_loans_allowed;
852 } else {
853 $issuingimpossible{TOO_MANY} = 1;
854 $issuingimpossible{current_loan_count} = $current_loan_count;
855 $issuingimpossible{max_loans_allowed} = $max_loans_allowed;
861 # ITEM CHECKING
863 if ( $item->{'notforloan'} )
865 if(!C4::Context->preference("AllowNotForLoanOverride")){
866 $issuingimpossible{NOT_FOR_LOAN} = 1;
867 $issuingimpossible{item_notforloan} = $item->{'notforloan'};
868 }else{
869 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
870 $needsconfirmation{item_notforloan} = $item->{'notforloan'};
873 else {
874 # we have to check itemtypes.notforloan also
875 if (C4::Context->preference('item-level_itypes')){
876 # this should probably be a subroutine
877 my $sth = $dbh->prepare("SELECT notforloan FROM itemtypes WHERE itemtype = ?");
878 $sth->execute($item->{'itemtype'});
879 my $notforloan=$sth->fetchrow_hashref();
880 if ($notforloan->{'notforloan'}) {
881 if (!C4::Context->preference("AllowNotForLoanOverride")) {
882 $issuingimpossible{NOT_FOR_LOAN} = 1;
883 $issuingimpossible{itemtype_notforloan} = $item->{'itype'};
884 } else {
885 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
886 $needsconfirmation{itemtype_notforloan} = $item->{'itype'};
890 elsif ($biblioitem->{'notforloan'} == 1){
891 if (!C4::Context->preference("AllowNotForLoanOverride")) {
892 $issuingimpossible{NOT_FOR_LOAN} = 1;
893 $issuingimpossible{itemtype_notforloan} = $biblioitem->{'itemtype'};
894 } else {
895 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
896 $needsconfirmation{itemtype_notforloan} = $biblioitem->{'itemtype'};
900 if ( $item->{'withdrawn'} && $item->{'withdrawn'} > 0 )
902 $issuingimpossible{WTHDRAWN} = 1;
904 if ( $item->{'restricted'}
905 && $item->{'restricted'} == 1 )
907 $issuingimpossible{RESTRICTED} = 1;
909 if ( $item->{'itemlost'} && C4::Context->preference("IssueLostItem") ne 'nothing' ) {
910 my $code = GetAuthorisedValueByCode( 'LOST', $item->{'itemlost'} );
911 $needsconfirmation{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'confirm' );
912 $alerts{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'alert' );
914 if ( C4::Context->preference("IndependentBranches") ) {
915 my $userenv = C4::Context->userenv;
916 unless ( C4::Context->IsSuperLibrarian() ) {
917 if ( $item->{C4::Context->preference("HomeOrHoldingBranch")} ne $userenv->{branch} ){
918 $issuingimpossible{ITEMNOTSAMEBRANCH} = 1;
919 $issuingimpossible{'itemhomebranch'} = $item->{C4::Context->preference("HomeOrHoldingBranch")};
921 $needsconfirmation{BORRNOTSAMEBRANCH} = GetBranchName( $borrower->{'branchcode'} )
922 if ( $borrower->{'branchcode'} ne $userenv->{branch} );
926 # CHECK IF THERE IS RENTAL CHARGES. RENTAL MUST BE CONFIRMED BY THE BORROWER
928 my $rentalConfirmation = C4::Context->preference("RentalFeesCheckoutConfirmation");
930 if ( $rentalConfirmation ){
931 my ($rentalCharge) = GetIssuingCharges( $item->{'itemnumber'}, $borrower->{'borrowernumber'} );
932 if ( $rentalCharge > 0 ){
933 $rentalCharge = sprintf("%.02f", $rentalCharge);
934 $needsconfirmation{RENTALCHARGE} = $rentalCharge;
939 # CHECK IF BOOK ALREADY ISSUED TO THIS BORROWER
941 if ( $issue->{borrowernumber} && $issue->{borrowernumber} eq $borrower->{'borrowernumber'} ){
943 # Already issued to current borrower. Ask whether the loan should
944 # be renewed.
945 my ($CanBookBeRenewed,$renewerror) = CanBookBeRenewed(
946 $borrower->{'borrowernumber'},
947 $item->{'itemnumber'}
949 if ( $CanBookBeRenewed == 0 ) { # no more renewals allowed
950 $issuingimpossible{NO_MORE_RENEWALS} = 1;
952 else {
953 $needsconfirmation{RENEW_ISSUE} = 1;
956 elsif ($issue->{borrowernumber}) {
958 # issued to someone else
959 my $currborinfo = C4::Members::GetMember( borrowernumber => $issue->{borrowernumber} );
961 # warn "=>.$currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
962 $needsconfirmation{ISSUED_TO_ANOTHER} = 1;
963 $needsconfirmation{issued_firstname} = $currborinfo->{'firstname'};
964 $needsconfirmation{issued_surname} = $currborinfo->{'surname'};
965 $needsconfirmation{issued_cardnumber} = $currborinfo->{'cardnumber'};
966 $needsconfirmation{issued_borrowernumber} = $currborinfo->{'borrowernumber'};
969 unless ( $ignore_reserves ) {
970 # See if the item is on reserve.
971 my ( $restype, $res ) = C4::Reserves::CheckReserves( $item->{'itemnumber'} );
972 if ($restype) {
973 my $resbor = $res->{'borrowernumber'};
974 if ( $resbor ne $borrower->{'borrowernumber'} ) {
975 my ( $resborrower ) = C4::Members::GetMember( borrowernumber => $resbor );
976 my $branchname = GetBranchName( $res->{'branchcode'} );
977 if ( $restype eq "Waiting" )
979 # The item is on reserve and waiting, but has been
980 # reserved by some other patron.
981 $needsconfirmation{RESERVE_WAITING} = 1;
982 $needsconfirmation{'resfirstname'} = $resborrower->{'firstname'};
983 $needsconfirmation{'ressurname'} = $resborrower->{'surname'};
984 $needsconfirmation{'rescardnumber'} = $resborrower->{'cardnumber'};
985 $needsconfirmation{'resborrowernumber'} = $resborrower->{'borrowernumber'};
986 $needsconfirmation{'resbranchname'} = $branchname;
987 $needsconfirmation{'reswaitingdate'} = format_date($res->{'waitingdate'});
989 elsif ( $restype eq "Reserved" ) {
990 # The item is on reserve for someone else.
991 $needsconfirmation{RESERVED} = 1;
992 $needsconfirmation{'resfirstname'} = $resborrower->{'firstname'};
993 $needsconfirmation{'ressurname'} = $resborrower->{'surname'};
994 $needsconfirmation{'rescardnumber'} = $resborrower->{'cardnumber'};
995 $needsconfirmation{'resborrowernumber'} = $resborrower->{'borrowernumber'};
996 $needsconfirmation{'resbranchname'} = $branchname;
997 $needsconfirmation{'resreservedate'} = format_date($res->{'reservedate'});
1003 ## CHECK AGE RESTRICTION
1004 my $agerestriction = $biblioitem->{'agerestriction'};
1005 my ($restriction_age, $daysToAgeRestriction) = GetAgeRestriction( $agerestriction, $borrower );
1006 if ( $daysToAgeRestriction && $daysToAgeRestriction > 0 ) {
1007 if ( C4::Context->preference('AgeRestrictionOverride') ) {
1008 $needsconfirmation{AGE_RESTRICTION} = "$agerestriction";
1010 else {
1011 $issuingimpossible{AGE_RESTRICTION} = "$agerestriction";
1015 ## check for high holds decreasing loan period
1016 my $decrease_loan = C4::Context->preference('decreaseLoanHighHolds');
1017 if ( $decrease_loan && $decrease_loan == 1 ) {
1018 my ( $reserved, $num, $duration, $returndate ) =
1019 checkHighHolds( $item, $borrower );
1021 if ( $num >= C4::Context->preference('decreaseLoanHighHoldsValue') ) {
1022 $needsconfirmation{HIGHHOLDS} = {
1023 num_holds => $num,
1024 duration => $duration,
1025 returndate => output_pref($returndate),
1030 if (
1031 !C4::Context->preference('AllowMultipleIssuesOnABiblio') &&
1032 # don't do the multiple loans per bib check if we've
1033 # already determined that we've got a loan on the same item
1034 !$issuingimpossible{NO_MORE_RENEWALS} &&
1035 !$needsconfirmation{RENEW_ISSUE}
1037 # Check if borrower has already issued an item from the same biblio
1038 # Only if it's not a subscription
1039 my $biblionumber = $item->{biblionumber};
1040 require C4::Serials;
1041 my $is_a_subscription = C4::Serials::CountSubscriptionFromBiblionumber($biblionumber);
1042 unless ($is_a_subscription) {
1043 my $issues = GetIssues( {
1044 borrowernumber => $borrower->{borrowernumber},
1045 biblionumber => $biblionumber,
1046 } );
1047 my @issues = $issues ? @$issues : ();
1048 # if we get here, we don't already have a loan on this item,
1049 # so if there are any loans on this bib, ask for confirmation
1050 if (scalar @issues > 0) {
1051 $needsconfirmation{BIBLIO_ALREADY_ISSUED} = 1;
1056 return ( \%issuingimpossible, \%needsconfirmation, \%alerts );
1059 =head2 CanBookBeReturned
1061 ($returnallowed, $message) = CanBookBeReturned($item, $branch)
1063 Check whether the item can be returned to the provided branch
1065 =over 4
1067 =item C<$item> is a hash of item information as returned from GetItem
1069 =item C<$branch> is the branchcode where the return is taking place
1071 =back
1073 Returns:
1075 =over 4
1077 =item C<$returnallowed> is 0 or 1, corresponding to whether the return is allowed (1) or not (0)
1079 =item C<$message> is the branchcode where the item SHOULD be returned, if the return is not allowed
1081 =back
1083 =cut
1085 sub CanBookBeReturned {
1086 my ($item, $branch) = @_;
1087 my $allowreturntobranch = C4::Context->preference("AllowReturnToBranch") || 'anywhere';
1089 # assume return is allowed to start
1090 my $allowed = 1;
1091 my $message;
1093 # identify all cases where return is forbidden
1094 if ($allowreturntobranch eq 'homebranch' && $branch ne $item->{'homebranch'}) {
1095 $allowed = 0;
1096 $message = $item->{'homebranch'};
1097 } elsif ($allowreturntobranch eq 'holdingbranch' && $branch ne $item->{'holdingbranch'}) {
1098 $allowed = 0;
1099 $message = $item->{'holdingbranch'};
1100 } elsif ($allowreturntobranch eq 'homeorholdingbranch' && $branch ne $item->{'homebranch'} && $branch ne $item->{'holdingbranch'}) {
1101 $allowed = 0;
1102 $message = $item->{'homebranch'}; # FIXME: choice of homebranch is arbitrary
1105 return ($allowed, $message);
1108 =head2 CheckHighHolds
1110 used when syspref decreaseLoanHighHolds is active. Returns 1 or 0 to define whether the minimum value held in
1111 decreaseLoanHighHoldsValue is exceeded, the total number of outstanding holds, the number of days the loan
1112 has been decreased to (held in syspref decreaseLoanHighHoldsValue), and the new due date
1114 =cut
1116 sub checkHighHolds {
1117 my ( $item, $borrower ) = @_;
1118 my $biblio = GetBiblioFromItemNumber( $item->{itemnumber} );
1119 my $branch = _GetCircControlBranch( $item, $borrower );
1120 my $dbh = C4::Context->dbh;
1121 my $sth = $dbh->prepare(
1122 'select count(borrowernumber) as num_holds from reserves where biblionumber=?'
1124 $sth->execute( $item->{'biblionumber'} );
1125 my ($holds) = $sth->fetchrow_array;
1126 if ($holds) {
1127 my $issuedate = DateTime->now( time_zone => C4::Context->tz() );
1129 my $calendar = Koha::Calendar->new( branchcode => $branch );
1131 my $itype =
1132 ( C4::Context->preference('item-level_itypes') )
1133 ? $biblio->{'itype'}
1134 : $biblio->{'itemtype'};
1135 my $orig_due =
1136 C4::Circulation::CalcDateDue( $issuedate, $itype, $branch,
1137 $borrower );
1139 my $reduced_datedue =
1140 $calendar->addDate( $issuedate,
1141 C4::Context->preference('decreaseLoanHighHoldsDuration') );
1143 if ( DateTime->compare( $reduced_datedue, $orig_due ) == -1 ) {
1144 return ( 1, $holds,
1145 C4::Context->preference('decreaseLoanHighHoldsDuration'),
1146 $reduced_datedue );
1149 return ( 0, 0, 0, undef );
1152 =head2 AddIssue
1154 &AddIssue($borrower, $barcode, [$datedue], [$cancelreserve], [$issuedate])
1156 Issue a book. Does no check, they are done in CanBookBeIssued. If we reach this sub, it means the user confirmed if needed.
1158 =over 4
1160 =item C<$borrower> is a hash with borrower informations (from GetMember or GetMemberDetails).
1162 =item C<$barcode> is the barcode of the item being issued.
1164 =item C<$datedue> is a C4::Dates object for the max date of return, i.e. the date due (optional).
1165 Calculated if empty.
1167 =item C<$cancelreserve> is 1 to override and cancel any pending reserves for the item (optional).
1169 =item C<$issuedate> is the date to issue the item in iso (YYYY-MM-DD) format (optional).
1170 Defaults to today. Unlike C<$datedue>, NOT a C4::Dates object, unfortunately.
1172 AddIssue does the following things :
1174 - step 01: check that there is a borrowernumber & a barcode provided
1175 - check for RENEWAL (book issued & being issued to the same patron)
1176 - renewal YES = Calculate Charge & renew
1177 - renewal NO =
1178 * BOOK ACTUALLY ISSUED ? do a return if book is actually issued (but to someone else)
1179 * RESERVE PLACED ?
1180 - fill reserve if reserve to this patron
1181 - cancel reserve or not, otherwise
1182 * TRANSFERT PENDING ?
1183 - complete the transfert
1184 * ISSUE THE BOOK
1186 =back
1188 =cut
1190 sub AddIssue {
1191 my ( $borrower, $barcode, $datedue, $cancelreserve, $issuedate, $sipmode, $params ) = @_;
1192 my $onsite_checkout = $params && $params->{onsite_checkout} ? 1 : 0;
1193 my $auto_renew = $params && $params->{auto_renew};
1194 my $dbh = C4::Context->dbh;
1195 my $barcodecheck=CheckValidBarcode($barcode);
1197 my $issue;
1199 if ($datedue && ref $datedue ne 'DateTime') {
1200 $datedue = dt_from_string($datedue);
1202 # $issuedate defaults to today.
1203 if ( ! defined $issuedate ) {
1204 $issuedate = DateTime->now(time_zone => C4::Context->tz());
1206 else {
1207 if ( ref $issuedate ne 'DateTime') {
1208 $issuedate = dt_from_string($issuedate);
1212 if ($borrower and $barcode and $barcodecheck ne '0'){#??? wtf
1213 # find which item we issue
1214 my $item = GetItem('', $barcode) or return; # if we don't get an Item, abort.
1215 my $branch = _GetCircControlBranch($item,$borrower);
1217 # get actual issuing if there is one
1218 my $actualissue = GetItemIssue( $item->{itemnumber});
1220 # get biblioinformation for this item
1221 my $biblio = GetBiblioFromItemNumber($item->{itemnumber});
1224 # check if we just renew the issue.
1226 if ($actualissue->{borrowernumber} eq $borrower->{'borrowernumber'}) {
1227 $datedue = AddRenewal(
1228 $borrower->{'borrowernumber'},
1229 $item->{'itemnumber'},
1230 $branch,
1231 $datedue,
1232 $issuedate, # here interpreted as the renewal date
1235 else {
1236 # it's NOT a renewal
1237 if ( $actualissue->{borrowernumber}) {
1238 # This book is currently on loan, but not to the person
1239 # who wants to borrow it now. mark it returned before issuing to the new borrower
1240 AddReturn(
1241 $item->{'barcode'},
1242 C4::Context->userenv->{'branch'}
1246 MoveReserve( $item->{'itemnumber'}, $borrower->{'borrowernumber'}, $cancelreserve );
1247 # Starting process for transfer job (checking transfert and validate it if we have one)
1248 my ($datesent) = GetTransfers($item->{'itemnumber'});
1249 if ($datesent) {
1250 # updating line of branchtranfert to finish it, and changing the to branch value, implement a comment for visibility of this case (maybe for stats ....)
1251 my $sth =
1252 $dbh->prepare(
1253 "UPDATE branchtransfers
1254 SET datearrived = now(),
1255 tobranch = ?,
1256 comments = 'Forced branchtransfer'
1257 WHERE itemnumber= ? AND datearrived IS NULL"
1259 $sth->execute(C4::Context->userenv->{'branch'},$item->{'itemnumber'});
1262 # If automatic renewal wasn't selected while issuing, set the value according to the issuing rule.
1263 unless ($auto_renew) {
1264 my $issuingrule = GetIssuingRule($borrower->{categorycode}, $item->{itype}, $branch);
1265 $auto_renew = $issuingrule->{auto_renew};
1268 # Record in the database the fact that the book was issued.
1269 unless ($datedue) {
1270 my $itype = ( C4::Context->preference('item-level_itypes') ) ? $biblio->{'itype'} : $biblio->{'itemtype'};
1271 $datedue = CalcDateDue( $issuedate, $itype, $branch, $borrower );
1274 $datedue->truncate( to => 'minute');
1276 $issue = Koha::Database->new()->schema()->resultset('Issue')->create(
1278 borrowernumber => $borrower->{'borrowernumber'},
1279 itemnumber => $item->{'itemnumber'},
1280 issuedate => $issuedate->strftime('%Y-%m-%d %H:%M:%S'),
1281 date_due => $datedue->strftime('%Y-%m-%d %H:%M:%S'),
1282 branchcode => C4::Context->userenv->{'branch'},
1283 onsite_checkout => $onsite_checkout,
1284 auto_renew => $auto_renew ? 1 : 0
1288 if ( C4::Context->preference('ReturnToShelvingCart') ) { ## ReturnToShelvingCart is on, anything issued should be taken off the cart.
1289 CartToShelf( $item->{'itemnumber'} );
1291 $item->{'issues'}++;
1292 if ( C4::Context->preference('UpdateTotalIssuesOnCirc') ) {
1293 UpdateTotalIssues($item->{'biblionumber'}, 1);
1296 ## If item was lost, it has now been found, reverse any list item charges if neccessary.
1297 if ( $item->{'itemlost'} ) {
1298 if ( C4::Context->preference('RefundLostItemFeeOnReturn' ) ) {
1299 _FixAccountForLostAndReturned( $item->{'itemnumber'}, undef, $item->{'barcode'} );
1303 ModItem({ issues => $item->{'issues'},
1304 holdingbranch => C4::Context->userenv->{'branch'},
1305 itemlost => 0,
1306 datelastborrowed => DateTime->now(time_zone => C4::Context->tz())->ymd(),
1307 onloan => $datedue->ymd(),
1308 }, $item->{'biblionumber'}, $item->{'itemnumber'});
1309 ModDateLastSeen( $item->{'itemnumber'} );
1311 # If it costs to borrow this book, charge it to the patron's account.
1312 my ( $charge, $itemtype ) = GetIssuingCharges(
1313 $item->{'itemnumber'},
1314 $borrower->{'borrowernumber'}
1316 if ( $charge > 0 ) {
1317 AddIssuingCharge(
1318 $item->{'itemnumber'},
1319 $borrower->{'borrowernumber'}, $charge
1321 $item->{'charge'} = $charge;
1324 # Record the fact that this book was issued.
1325 &UpdateStats({
1326 branch => C4::Context->userenv->{'branch'},
1327 type => ( $onsite_checkout ? 'onsite_checkout' : 'issue' ),
1328 amount => $charge,
1329 other => ($sipmode ? "SIP-$sipmode" : ''),
1330 itemnumber => $item->{'itemnumber'},
1331 itemtype => $item->{'itype'},
1332 borrowernumber => $borrower->{'borrowernumber'},
1333 ccode => $item->{'ccode'}}
1336 # Send a checkout slip.
1337 my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1338 my %conditions = (
1339 branchcode => $branch,
1340 categorycode => $borrower->{categorycode},
1341 item_type => $item->{itype},
1342 notification => 'CHECKOUT',
1344 if ($circulation_alert->is_enabled_for(\%conditions)) {
1345 SendCirculationAlert({
1346 type => 'CHECKOUT',
1347 item => $item,
1348 borrower => $borrower,
1349 branch => $branch,
1354 logaction("CIRCULATION", "ISSUE", $borrower->{'borrowernumber'}, $biblio->{'itemnumber'})
1355 if C4::Context->preference("IssueLog");
1357 return $issue;
1360 =head2 GetLoanLength
1362 my $loanlength = &GetLoanLength($borrowertype,$itemtype,branchcode)
1364 Get loan length for an itemtype, a borrower type and a branch
1366 =cut
1368 sub GetLoanLength {
1369 my ( $borrowertype, $itemtype, $branchcode ) = @_;
1370 my $dbh = C4::Context->dbh;
1371 my $sth = $dbh->prepare(qq{
1372 SELECT issuelength, lengthunit, renewalperiod
1373 FROM issuingrules
1374 WHERE categorycode=?
1375 AND itemtype=?
1376 AND branchcode=?
1377 AND issuelength IS NOT NULL
1380 # try to find issuelength & return the 1st available.
1381 # check with borrowertype, itemtype and branchcode, then without one of those parameters
1382 $sth->execute( $borrowertype, $itemtype, $branchcode );
1383 my $loanlength = $sth->fetchrow_hashref;
1385 return $loanlength
1386 if defined($loanlength) && $loanlength->{issuelength};
1388 $sth->execute( $borrowertype, '*', $branchcode );
1389 $loanlength = $sth->fetchrow_hashref;
1390 return $loanlength
1391 if defined($loanlength) && $loanlength->{issuelength};
1393 $sth->execute( '*', $itemtype, $branchcode );
1394 $loanlength = $sth->fetchrow_hashref;
1395 return $loanlength
1396 if defined($loanlength) && $loanlength->{issuelength};
1398 $sth->execute( '*', '*', $branchcode );
1399 $loanlength = $sth->fetchrow_hashref;
1400 return $loanlength
1401 if defined($loanlength) && $loanlength->{issuelength};
1403 $sth->execute( $borrowertype, $itemtype, '*' );
1404 $loanlength = $sth->fetchrow_hashref;
1405 return $loanlength
1406 if defined($loanlength) && $loanlength->{issuelength};
1408 $sth->execute( $borrowertype, '*', '*' );
1409 $loanlength = $sth->fetchrow_hashref;
1410 return $loanlength
1411 if defined($loanlength) && $loanlength->{issuelength};
1413 $sth->execute( '*', $itemtype, '*' );
1414 $loanlength = $sth->fetchrow_hashref;
1415 return $loanlength
1416 if defined($loanlength) && $loanlength->{issuelength};
1418 $sth->execute( '*', '*', '*' );
1419 $loanlength = $sth->fetchrow_hashref;
1420 return $loanlength
1421 if defined($loanlength) && $loanlength->{issuelength};
1423 # if no rule is set => 21 days (hardcoded)
1424 return {
1425 issuelength => 21,
1426 renewalperiod => 21,
1427 lengthunit => 'days',
1433 =head2 GetHardDueDate
1435 my ($hardduedate,$hardduedatecompare) = &GetHardDueDate($borrowertype,$itemtype,branchcode)
1437 Get the Hard Due Date and it's comparison for an itemtype, a borrower type and a branch
1439 =cut
1441 sub GetHardDueDate {
1442 my ( $borrowertype, $itemtype, $branchcode ) = @_;
1444 my $rule = GetIssuingRule( $borrowertype, $itemtype, $branchcode );
1446 if ( defined( $rule ) ) {
1447 if ( $rule->{hardduedate} ) {
1448 return (dt_from_string($rule->{hardduedate}, 'iso'),$rule->{hardduedatecompare});
1449 } else {
1450 return (undef, undef);
1455 =head2 GetIssuingRule
1457 my $irule = &GetIssuingRule($borrowertype,$itemtype,branchcode)
1459 FIXME - This is a copy-paste of GetLoanLength
1460 as a stop-gap. Do not wish to change API for GetLoanLength
1461 this close to release.
1463 Get the issuing rule for an itemtype, a borrower type and a branch
1464 Returns a hashref from the issuingrules table.
1466 =cut
1468 sub GetIssuingRule {
1469 my ( $borrowertype, $itemtype, $branchcode ) = @_;
1470 my $dbh = C4::Context->dbh;
1471 my $sth = $dbh->prepare( "select * from issuingrules where categorycode=? and itemtype=? and branchcode=?" );
1472 my $irule;
1474 $sth->execute( $borrowertype, $itemtype, $branchcode );
1475 $irule = $sth->fetchrow_hashref;
1476 return $irule if defined($irule) ;
1478 $sth->execute( $borrowertype, "*", $branchcode );
1479 $irule = $sth->fetchrow_hashref;
1480 return $irule if defined($irule) ;
1482 $sth->execute( "*", $itemtype, $branchcode );
1483 $irule = $sth->fetchrow_hashref;
1484 return $irule if defined($irule) ;
1486 $sth->execute( "*", "*", $branchcode );
1487 $irule = $sth->fetchrow_hashref;
1488 return $irule if defined($irule) ;
1490 $sth->execute( $borrowertype, $itemtype, "*" );
1491 $irule = $sth->fetchrow_hashref;
1492 return $irule if defined($irule) ;
1494 $sth->execute( $borrowertype, "*", "*" );
1495 $irule = $sth->fetchrow_hashref;
1496 return $irule if defined($irule) ;
1498 $sth->execute( "*", $itemtype, "*" );
1499 $irule = $sth->fetchrow_hashref;
1500 return $irule if defined($irule) ;
1502 $sth->execute( "*", "*", "*" );
1503 $irule = $sth->fetchrow_hashref;
1504 return $irule if defined($irule) ;
1506 # if no rule matches,
1507 return;
1510 =head2 GetBranchBorrowerCircRule
1512 my $branch_cat_rule = GetBranchBorrowerCircRule($branchcode, $categorycode);
1514 Retrieves circulation rule attributes that apply to the given
1515 branch and patron category, regardless of item type.
1516 The return value is a hashref containing the following key:
1518 maxissueqty - maximum number of loans that a
1519 patron of the given category can have at the given
1520 branch. If the value is undef, no limit.
1522 This will first check for a specific branch and
1523 category match from branch_borrower_circ_rules.
1525 If no rule is found, it will then check default_branch_circ_rules
1526 (same branch, default category). If no rule is found,
1527 it will then check default_borrower_circ_rules (default
1528 branch, same category), then failing that, default_circ_rules
1529 (default branch, default category).
1531 If no rule has been found in the database, it will default to
1532 the buillt in rule:
1534 maxissueqty - undef
1536 C<$branchcode> and C<$categorycode> should contain the
1537 literal branch code and patron category code, respectively - no
1538 wildcards.
1540 =cut
1542 sub GetBranchBorrowerCircRule {
1543 my $branchcode = shift;
1544 my $categorycode = shift;
1546 my $branch_cat_query = "SELECT maxissueqty
1547 FROM branch_borrower_circ_rules
1548 WHERE branchcode = ?
1549 AND categorycode = ?";
1550 my $dbh = C4::Context->dbh();
1551 my $sth = $dbh->prepare($branch_cat_query);
1552 $sth->execute($branchcode, $categorycode);
1553 my $result;
1554 if ($result = $sth->fetchrow_hashref()) {
1555 return $result;
1558 # try same branch, default borrower category
1559 my $branch_query = "SELECT maxissueqty
1560 FROM default_branch_circ_rules
1561 WHERE branchcode = ?";
1562 $sth = $dbh->prepare($branch_query);
1563 $sth->execute($branchcode);
1564 if ($result = $sth->fetchrow_hashref()) {
1565 return $result;
1568 # try default branch, same borrower category
1569 my $category_query = "SELECT maxissueqty
1570 FROM default_borrower_circ_rules
1571 WHERE categorycode = ?";
1572 $sth = $dbh->prepare($category_query);
1573 $sth->execute($categorycode);
1574 if ($result = $sth->fetchrow_hashref()) {
1575 return $result;
1578 # try default branch, default borrower category
1579 my $default_query = "SELECT maxissueqty
1580 FROM default_circ_rules";
1581 $sth = $dbh->prepare($default_query);
1582 $sth->execute();
1583 if ($result = $sth->fetchrow_hashref()) {
1584 return $result;
1587 # built-in default circulation rule
1588 return {
1589 maxissueqty => undef,
1593 =head2 GetBranchItemRule
1595 my $branch_item_rule = GetBranchItemRule($branchcode, $itemtype);
1597 Retrieves circulation rule attributes that apply to the given
1598 branch and item type, regardless of patron category.
1600 The return value is a hashref containing the following keys:
1602 holdallowed => Hold policy for this branch and itemtype. Possible values:
1603 0: No holds allowed.
1604 1: Holds allowed only by patrons that have the same homebranch as the item.
1605 2: Holds allowed from any patron.
1607 returnbranch => branch to which to return item. Possible values:
1608 noreturn: do not return, let item remain where checked in (floating collections)
1609 homebranch: return to item's home branch
1611 This searches branchitemrules in the following order:
1613 * Same branchcode and itemtype
1614 * Same branchcode, itemtype '*'
1615 * branchcode '*', same itemtype
1616 * branchcode and itemtype '*'
1618 Neither C<$branchcode> nor C<$itemtype> should be '*'.
1620 =cut
1622 sub GetBranchItemRule {
1623 my ( $branchcode, $itemtype ) = @_;
1624 my $dbh = C4::Context->dbh();
1625 my $result = {};
1627 my @attempts = (
1628 ['SELECT holdallowed, returnbranch
1629 FROM branch_item_rules
1630 WHERE branchcode = ?
1631 AND itemtype = ?', $branchcode, $itemtype],
1632 ['SELECT holdallowed, returnbranch
1633 FROM default_branch_circ_rules
1634 WHERE branchcode = ?', $branchcode],
1635 ['SELECT holdallowed, returnbranch
1636 FROM default_branch_item_rules
1637 WHERE itemtype = ?', $itemtype],
1638 ['SELECT holdallowed, returnbranch
1639 FROM default_circ_rules'],
1642 foreach my $attempt (@attempts) {
1643 my ($query, @bind_params) = @{$attempt};
1644 my $search_result = $dbh->selectrow_hashref ( $query , {}, @bind_params )
1645 or next;
1647 # Since branch/category and branch/itemtype use the same per-branch
1648 # defaults tables, we have to check that the key we want is set, not
1649 # just that a row was returned
1650 $result->{'holdallowed'} = $search_result->{'holdallowed'} unless ( defined $result->{'holdallowed'} );
1651 $result->{'returnbranch'} = $search_result->{'returnbranch'} unless ( defined $result->{'returnbranch'} );
1654 # built-in default circulation rule
1655 $result->{'holdallowed'} = 2 unless ( defined $result->{'holdallowed'} );
1656 $result->{'returnbranch'} = 'homebranch' unless ( defined $result->{'returnbranch'} );
1658 return $result;
1661 =head2 AddReturn
1663 ($doreturn, $messages, $iteminformation, $borrower) =
1664 &AddReturn( $barcode, $branch [,$exemptfine] [,$dropbox] [,$returndate] );
1666 Returns a book.
1668 =over 4
1670 =item C<$barcode> is the bar code of the book being returned.
1672 =item C<$branch> is the code of the branch where the book is being returned.
1674 =item C<$exemptfine> indicates that overdue charges for the item will be
1675 removed. Optional.
1677 =item C<$dropbox> indicates that the check-in date is assumed to be
1678 yesterday, or the last non-holiday as defined in C4::Calendar . If
1679 overdue charges are applied and C<$dropbox> is true, the last charge
1680 will be removed. This assumes that the fines accrual script has run
1681 for _today_. Optional.
1683 =item C<$return_date> allows the default return date to be overridden
1684 by the given return date. Optional.
1686 =back
1688 C<&AddReturn> returns a list of four items:
1690 C<$doreturn> is true iff the return succeeded.
1692 C<$messages> is a reference-to-hash giving feedback on the operation.
1693 The keys of the hash are:
1695 =over 4
1697 =item C<BadBarcode>
1699 No item with this barcode exists. The value is C<$barcode>.
1701 =item C<NotIssued>
1703 The book is not currently on loan. The value is C<$barcode>.
1705 =item C<IsPermanent>
1707 The book's home branch is a permanent collection. If you have borrowed
1708 this book, you are not allowed to return it. The value is the code for
1709 the book's home branch.
1711 =item C<withdrawn>
1713 This book has been withdrawn/cancelled. The value should be ignored.
1715 =item C<Wrongbranch>
1717 This book has was returned to the wrong branch. The value is a hashref
1718 so that C<$messages->{Wrongbranch}->{Wrongbranch}> and C<$messages->{Wrongbranch}->{Rightbranch}>
1719 contain the branchcode of the incorrect and correct return library, respectively.
1721 =item C<ResFound>
1723 The item was reserved. The value is a reference-to-hash whose keys are
1724 fields from the reserves table of the Koha database, and
1725 C<biblioitemnumber>. It also has the key C<ResFound>, whose value is
1726 either C<Waiting>, C<Reserved>, or 0.
1728 =back
1730 C<$iteminformation> is a reference-to-hash, giving information about the
1731 returned item from the issues table.
1733 C<$borrower> is a reference-to-hash, giving information about the
1734 patron who last borrowed the book.
1736 =cut
1738 sub AddReturn {
1739 my ( $barcode, $branch, $exemptfine, $dropbox, $return_date, $dropboxdate ) = @_;
1741 if ($branch and not GetBranchDetail($branch)) {
1742 warn "AddReturn error: branch '$branch' not found. Reverting to " . C4::Context->userenv->{'branch'};
1743 undef $branch;
1745 $branch = C4::Context->userenv->{'branch'} unless $branch; # we trust userenv to be a safe fallback/default
1746 my $messages;
1747 my $borrower;
1748 my $biblio;
1749 my $doreturn = 1;
1750 my $validTransfert = 0;
1751 my $stat_type = 'return';
1753 # get information on item
1754 my $itemnumber = GetItemnumberFromBarcode( $barcode );
1755 unless ($itemnumber) {
1756 return (0, { BadBarcode => $barcode }); # no barcode means no item or borrower. bail out.
1758 my $issue = GetItemIssue($itemnumber);
1759 # warn Dumper($iteminformation);
1760 if ($issue and $issue->{borrowernumber}) {
1761 $borrower = C4::Members::GetMemberDetails($issue->{borrowernumber})
1762 or die "Data inconsistency: barcode $barcode (itemnumber:$itemnumber) claims to be issued to non-existant borrowernumber '$issue->{borrowernumber}'\n"
1763 . Dumper($issue) . "\n";
1764 } else {
1765 $messages->{'NotIssued'} = $barcode;
1766 # even though item is not on loan, it may still be transferred; therefore, get current branch info
1767 $doreturn = 0;
1768 # No issue, no borrowernumber. ONLY if $doreturn, *might* you have a $borrower later.
1769 # Record this as a local use, instead of a return, if the RecordLocalUseOnReturn is on
1770 if (C4::Context->preference("RecordLocalUseOnReturn")) {
1771 $messages->{'LocalUse'} = 1;
1772 $stat_type = 'localuse';
1776 my $item = GetItem($itemnumber) or die "GetItem($itemnumber) failed";
1778 if ( $item->{'location'} eq 'PROC' ) {
1779 if ( C4::Context->preference("InProcessingToShelvingCart") ) {
1780 $item->{'location'} = 'CART';
1782 else {
1783 $item->{location} = $item->{permanent_location};
1786 ModItem( $item, $item->{'biblionumber'}, $item->{'itemnumber'} );
1789 # full item data, but no borrowernumber or checkout info (no issue)
1790 # we know GetItem should work because GetItemnumberFromBarcode worked
1791 my $hbr = GetBranchItemRule($item->{'homebranch'}, $item->{'itype'})->{'returnbranch'} || "homebranch";
1792 # get the proper branch to which to return the item
1793 $hbr = $item->{$hbr} || $branch ;
1794 # if $hbr was "noreturn" or any other non-item table value, then it should 'float' (i.e. stay at this branch)
1796 my $borrowernumber = $borrower->{'borrowernumber'} || undef; # we don't know if we had a borrower or not
1798 my $yaml = C4::Context->preference('UpdateNotForLoanStatusOnCheckin');
1799 if ($yaml) {
1800 $yaml = "$yaml\n\n"; # YAML is anal on ending \n. Surplus does not hurt
1801 my $rules;
1802 eval { $rules = YAML::Load($yaml); };
1803 if ($@) {
1804 warn "Unable to parse UpdateNotForLoanStatusOnCheckin syspref : $@";
1806 else {
1807 foreach my $key ( keys %$rules ) {
1808 if ( $item->{notforloan} eq $key ) {
1809 $messages->{'NotForLoanStatusUpdated'} = { from => $item->{notforloan}, to => $rules->{$key} };
1810 ModItem( { notforloan => $rules->{$key} }, undef, $itemnumber );
1811 last;
1818 # check if the book is in a permanent collection....
1819 # FIXME -- This 'PE' attribute is largely undocumented. afaict, there's no user interface that reflects this functionality.
1820 if ( $hbr ) {
1821 my $branches = GetBranches(); # a potentially expensive call for a non-feature.
1822 $branches->{$hbr}->{PE} and $messages->{'IsPermanent'} = $hbr;
1825 # check if the return is allowed at this branch
1826 my ($returnallowed, $message) = CanBookBeReturned($item, $branch);
1827 unless ($returnallowed){
1828 $messages->{'Wrongbranch'} = {
1829 Wrongbranch => $branch,
1830 Rightbranch => $message
1832 $doreturn = 0;
1833 return ( $doreturn, $messages, $issue, $borrower );
1836 if ( $item->{'withdrawn'} ) { # book has been cancelled
1837 $messages->{'withdrawn'} = 1;
1838 $doreturn = 0 if C4::Context->preference("BlockReturnOfWithdrawnItems");
1841 # case of a return of document (deal with issues and holdingbranch)
1842 my $today = DateTime->now( time_zone => C4::Context->tz() );
1844 if ($doreturn) {
1845 my $datedue = $issue->{date_due};
1846 $borrower or warn "AddReturn without current borrower";
1847 my $circControlBranch;
1848 if ($dropbox) {
1849 # define circControlBranch only if dropbox mode is set
1850 # don't allow dropbox mode to create an invalid entry in issues (issuedate > today)
1851 # FIXME: check issuedate > returndate, factoring in holidays
1852 #$circControlBranch = _GetCircControlBranch($item,$borrower) unless ( $item->{'issuedate'} eq C4::Dates->today('iso') );;
1853 $circControlBranch = _GetCircControlBranch($item,$borrower);
1854 $issue->{'overdue'} = DateTime->compare($issue->{'date_due'}, $dropboxdate ) == -1 ? 1 : 0;
1857 if ($borrowernumber) {
1858 if ( ( C4::Context->preference('CalculateFinesOnReturn') && $issue->{'overdue'} ) || $return_date ) {
1859 # we only need to calculate and change the fines if we want to do that on return
1860 # Should be on for hourly loans
1861 my $control = C4::Context->preference('CircControl');
1862 my $control_branchcode =
1863 ( $control eq 'ItemHomeLibrary' ) ? $item->{homebranch}
1864 : ( $control eq 'PatronLibrary' ) ? $borrower->{branchcode}
1865 : $issue->{branchcode};
1867 my $date_returned =
1868 $return_date ? dt_from_string($return_date) : $today;
1870 my ( $amount, $type, $unitcounttotal ) =
1871 C4::Overdues::CalcFine( $item, $borrower->{categorycode},
1872 $control_branchcode, $datedue, $date_returned );
1874 $type ||= q{};
1876 if ( C4::Context->preference('finesMode') eq 'production' ) {
1877 if ( $amount > 0 ) {
1878 C4::Overdues::UpdateFine( $issue->{itemnumber},
1879 $issue->{borrowernumber},
1880 $amount, $type, output_pref($datedue) );
1882 elsif ($return_date) {
1884 # Backdated returns may have fines that shouldn't exist,
1885 # so in this case, we need to drop those fines to 0
1887 C4::Overdues::UpdateFine( $issue->{itemnumber},
1888 $issue->{borrowernumber},
1889 0, $type, output_pref($datedue) );
1894 MarkIssueReturned( $borrowernumber, $item->{'itemnumber'},
1895 $circControlBranch, $return_date, $borrower->{'privacy'} );
1897 # FIXME is the "= 1" right? This could be the borrower hash.
1898 $messages->{'WasReturned'} = 1;
1902 ModItem({ onloan => undef }, $issue->{'biblionumber'}, $item->{'itemnumber'});
1905 # the holdingbranch is updated if the document is returned to another location.
1906 # this is always done regardless of whether the item was on loan or not
1907 if ($item->{'holdingbranch'} ne $branch) {
1908 UpdateHoldingbranch($branch, $item->{'itemnumber'});
1909 $item->{'holdingbranch'} = $branch; # update item data holdingbranch too
1911 ModDateLastSeen( $item->{'itemnumber'} );
1913 # check if we have a transfer for this document
1914 my ($datesent,$frombranch,$tobranch) = GetTransfers( $item->{'itemnumber'} );
1916 # if we have a transfer to do, we update the line of transfers with the datearrived
1917 my $is_in_rotating_collection = C4::RotatingCollections::isItemInAnyCollection( $item->{'itemnumber'} );
1918 if ($datesent) {
1919 if ( $tobranch eq $branch ) {
1920 my $sth = C4::Context->dbh->prepare(
1921 "UPDATE branchtransfers SET datearrived = now() WHERE itemnumber= ? AND datearrived IS NULL"
1923 $sth->execute( $item->{'itemnumber'} );
1924 # if we have a reservation with valid transfer, we can set it's status to 'W'
1925 ShelfToCart( $item->{'itemnumber'} ) if ( C4::Context->preference("ReturnToShelvingCart") );
1926 C4::Reserves::ModReserveStatus($item->{'itemnumber'}, 'W');
1927 } else {
1928 $messages->{'WrongTransfer'} = $tobranch;
1929 $messages->{'WrongTransferItem'} = $item->{'itemnumber'};
1931 $validTransfert = 1;
1932 } else {
1933 ShelfToCart( $item->{'itemnumber'} ) if ( C4::Context->preference("ReturnToShelvingCart") );
1936 # fix up the accounts.....
1937 if ( $item->{'itemlost'} ) {
1938 $messages->{'WasLost'} = 1;
1940 if ( C4::Context->preference('RefundLostItemFeeOnReturn' ) ) {
1941 _FixAccountForLostAndReturned($item->{'itemnumber'}, $borrowernumber, $barcode); # can tolerate undef $borrowernumber
1942 $messages->{'LostItemFeeRefunded'} = 1;
1946 # fix up the overdues in accounts...
1947 if ($borrowernumber) {
1948 my $fix = _FixOverduesOnReturn($borrowernumber, $item->{itemnumber}, $exemptfine, $dropbox);
1949 defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $item->{itemnumber}...) failed!"; # zero is OK, check defined
1951 if ( $issue->{overdue} && $issue->{date_due} ) {
1952 # fix fine days
1953 $today = $dropboxdate if $dropbox;
1954 my ($debardate,$reminder) = _debar_user_on_return( $borrower, $item, $issue->{date_due}, $today );
1955 if ($reminder){
1956 $messages->{'PrevDebarred'} = $debardate;
1957 } else {
1958 $messages->{'Debarred'} = $debardate if $debardate;
1960 # there's no overdue on the item but borrower had been previously debarred
1961 } elsif ( $issue->{date_due} and $borrower->{'debarred'} ) {
1962 if ( $borrower->{debarred} eq "9999-12-31") {
1963 $messages->{'ForeverDebarred'} = $borrower->{'debarred'};
1964 } else {
1965 my $borrower_debar_dt = dt_from_string( $borrower->{debarred} );
1966 $borrower_debar_dt->truncate(to => 'day');
1967 my $today_dt = $today->clone()->truncate(to => 'day');
1968 if ( DateTime->compare( $borrower_debar_dt, $today_dt ) != -1 ) {
1969 $messages->{'PrevDebarred'} = $borrower->{'debarred'};
1975 # find reserves.....
1976 # if we don't have a reserve with the status W, we launch the Checkreserves routine
1977 my ($resfound, $resrec);
1978 my $lookahead= C4::Context->preference('ConfirmFutureHolds'); #number of days to look for future holds
1979 ($resfound, $resrec, undef) = C4::Reserves::CheckReserves( $item->{'itemnumber'}, undef, $lookahead ) unless ( $item->{'withdrawn'} );
1980 if ($resfound) {
1981 $resrec->{'ResFound'} = $resfound;
1982 $messages->{'ResFound'} = $resrec;
1985 # Record the fact that this book was returned.
1986 # FIXME itemtype should record item level type, not bibliolevel type
1987 UpdateStats({
1988 branch => $branch,
1989 type => $stat_type,
1990 itemnumber => $item->{'itemnumber'},
1991 itemtype => $biblio->{'itemtype'},
1992 borrowernumber => $borrowernumber,
1993 ccode => $item->{'ccode'}}
1996 # Send a check-in slip. # NOTE: borrower may be undef. probably shouldn't try to send messages then.
1997 my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1998 my %conditions = (
1999 branchcode => $branch,
2000 categorycode => $borrower->{categorycode},
2001 item_type => $item->{itype},
2002 notification => 'CHECKIN',
2004 if ($doreturn && $circulation_alert->is_enabled_for(\%conditions)) {
2005 SendCirculationAlert({
2006 type => 'CHECKIN',
2007 item => $item,
2008 borrower => $borrower,
2009 branch => $branch,
2013 logaction("CIRCULATION", "RETURN", $borrowernumber, $item->{'itemnumber'})
2014 if C4::Context->preference("ReturnLog");
2016 # Remove any OVERDUES related debarment if the borrower has no overdues
2017 if ( $borrowernumber
2018 && $borrower->{'debarred'}
2019 && C4::Context->preference('AutoRemoveOverduesRestrictions')
2020 && !C4::Members::HasOverdues( $borrowernumber )
2021 && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
2023 DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
2026 # FIXME: make this comment intelligible.
2027 #adding message if holdingbranch is non equal a userenv branch to return the document to homebranch
2028 #we check, if we don't have reserv or transfert for this document, if not, return it to homebranch .
2030 if ( !$is_in_rotating_collection && ($doreturn or $messages->{'NotIssued'}) and !$resfound and ($branch ne $hbr) and not $messages->{'WrongTransfer'}){
2031 if ( C4::Context->preference("AutomaticItemReturn" ) or
2032 (C4::Context->preference("UseBranchTransferLimits") and
2033 ! IsBranchTransferAllowed($branch, $hbr, $item->{C4::Context->preference("BranchTransferLimitsType")} )
2034 )) {
2035 $debug and warn sprintf "about to call ModItemTransfer(%s, %s, %s)", $item->{'itemnumber'},$branch, $hbr;
2036 $debug and warn "item: " . Dumper($item);
2037 ModItemTransfer($item->{'itemnumber'}, $branch, $hbr);
2038 $messages->{'WasTransfered'} = 1;
2039 } else {
2040 $messages->{'NeedsTransfer'} = 1; # TODO: instead of 1, specify branchcode that the transfer SHOULD go to, $item->{homebranch}
2044 return ( $doreturn, $messages, $issue, $borrower );
2047 =head2 MarkIssueReturned
2049 MarkIssueReturned($borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy);
2051 Unconditionally marks an issue as being returned by
2052 moving the C<issues> row to C<old_issues> and
2053 setting C<returndate> to the current date, or
2054 the last non-holiday date of the branccode specified in
2055 C<dropbox_branch> . Assumes you've already checked that
2056 it's safe to do this, i.e. last non-holiday > issuedate.
2058 if C<$returndate> is specified (in iso format), it is used as the date
2059 of the return. It is ignored when a dropbox_branch is passed in.
2061 C<$privacy> contains the privacy parameter. If the patron has set privacy to 2,
2062 the old_issue is immediately anonymised
2064 Ideally, this function would be internal to C<C4::Circulation>,
2065 not exported, but it is currently needed by one
2066 routine in C<C4::Accounts>.
2068 =cut
2070 sub MarkIssueReturned {
2071 my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy ) = @_;
2073 my $dbh = C4::Context->dbh;
2074 my $query = 'UPDATE issues SET returndate=';
2075 my @bind;
2076 if ($dropbox_branch) {
2077 my $calendar = Koha::Calendar->new( branchcode => $dropbox_branch );
2078 my $dropboxdate = $calendar->addDate( DateTime->now( time_zone => C4::Context->tz), -1 );
2079 $query .= ' ? ';
2080 push @bind, $dropboxdate->strftime('%Y-%m-%d %H:%M');
2081 } elsif ($returndate) {
2082 $query .= ' ? ';
2083 push @bind, $returndate;
2084 } else {
2085 $query .= ' now() ';
2087 $query .= ' WHERE borrowernumber = ? AND itemnumber = ?';
2088 push @bind, $borrowernumber, $itemnumber;
2089 # FIXME transaction
2090 my $sth_upd = $dbh->prepare($query);
2091 $sth_upd->execute(@bind);
2092 my $sth_copy = $dbh->prepare('INSERT INTO old_issues SELECT * FROM issues
2093 WHERE borrowernumber = ?
2094 AND itemnumber = ?');
2095 $sth_copy->execute($borrowernumber, $itemnumber);
2096 # anonymise patron checkout immediately if $privacy set to 2 and AnonymousPatron is set to a valid borrowernumber
2097 if ( $privacy == 2) {
2098 # The default of 0 does not work due to foreign key constraints
2099 # The anonymisation will fail quietly if AnonymousPatron is not a valid entry
2100 # FIXME the above is unacceptable - bug 9942 relates
2101 my $anonymouspatron = (C4::Context->preference('AnonymousPatron')) ? C4::Context->preference('AnonymousPatron') : 0;
2102 my $sth_ano = $dbh->prepare("UPDATE old_issues SET borrowernumber=?
2103 WHERE borrowernumber = ?
2104 AND itemnumber = ?");
2105 $sth_ano->execute($anonymouspatron, $borrowernumber, $itemnumber);
2107 my $sth_del = $dbh->prepare("DELETE FROM issues
2108 WHERE borrowernumber = ?
2109 AND itemnumber = ?");
2110 $sth_del->execute($borrowernumber, $itemnumber);
2112 ModItem( { 'onloan' => undef }, undef, $itemnumber );
2115 =head2 _debar_user_on_return
2117 _debar_user_on_return($borrower, $item, $datedue, today);
2119 C<$borrower> borrower hashref
2121 C<$item> item hashref
2123 C<$datedue> date due DateTime object
2125 C<$today> DateTime object representing the return time
2127 Internal function, called only by AddReturn that calculates and updates
2128 the user fine days, and debars him if necessary.
2130 Should only be called for overdue returns
2132 =cut
2134 sub _debar_user_on_return {
2135 my ( $borrower, $item, $dt_due, $dt_today ) = @_;
2137 my $branchcode = _GetCircControlBranch( $item, $borrower );
2139 my $circcontrol = C4::Context->preference('CircControl');
2140 my $issuingrule =
2141 GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode );
2142 my $finedays = $issuingrule->{finedays};
2143 my $unit = $issuingrule->{lengthunit};
2144 my $chargeable_units = C4::Overdues::get_chargeable_units($unit, $dt_due, $dt_today, $branchcode);
2146 if ($finedays) {
2148 # finedays is in days, so hourly loans must multiply by 24
2149 # thus 1 hour late equals 1 day suspension * finedays rate
2150 $finedays = $finedays * 24 if ( $unit eq 'hours' );
2152 # grace period is measured in the same units as the loan
2153 my $grace =
2154 DateTime::Duration->new( $unit => $issuingrule->{firstremind} );
2156 my $deltadays = DateTime::Duration->new(
2157 days => $chargeable_units
2159 if ( $deltadays->subtract($grace)->is_positive() ) {
2160 my $suspension_days = $deltadays * $finedays;
2162 # If the max suspension days is < than the suspension days
2163 # the suspension days is limited to this maximum period.
2164 my $max_sd = $issuingrule->{maxsuspensiondays};
2165 if ( defined $max_sd ) {
2166 $max_sd = DateTime::Duration->new( days => $max_sd );
2167 $suspension_days = $max_sd
2168 if DateTime::Duration->compare( $max_sd, $suspension_days ) < 0;
2171 my $new_debar_dt =
2172 $dt_today->clone()->add_duration( $suspension_days );
2174 Koha::Borrower::Debarments::AddUniqueDebarment({
2175 borrowernumber => $borrower->{borrowernumber},
2176 expiration => $new_debar_dt->ymd(),
2177 type => 'SUSPENSION',
2179 # if borrower was already debarred but does not get an extra debarment
2180 if ( $borrower->{debarred} eq Koha::Borrower::Debarments::IsDebarred($borrower->{borrowernumber}) ) {
2181 return ($borrower->{debarred},1);
2183 return $new_debar_dt->ymd();
2186 return;
2189 =head2 _FixOverduesOnReturn
2191 &_FixOverduesOnReturn($brn,$itm, $exemptfine, $dropboxmode);
2193 C<$brn> borrowernumber
2195 C<$itm> itemnumber
2197 C<$exemptfine> BOOL -- remove overdue charge associated with this issue.
2198 C<$dropboxmode> BOOL -- remove lastincrement on overdue charge associated with this issue.
2200 Internal function, called only by AddReturn
2202 =cut
2204 sub _FixOverduesOnReturn {
2205 my ($borrowernumber, $item);
2206 unless ($borrowernumber = shift) {
2207 warn "_FixOverduesOnReturn() not supplied valid borrowernumber";
2208 return;
2210 unless ($item = shift) {
2211 warn "_FixOverduesOnReturn() not supplied valid itemnumber";
2212 return;
2214 my ($exemptfine, $dropbox) = @_;
2215 my $dbh = C4::Context->dbh;
2217 # check for overdue fine
2218 my $sth = $dbh->prepare(
2219 "SELECT * FROM accountlines WHERE (borrowernumber = ?) AND (itemnumber = ?) AND (accounttype='FU' OR accounttype='O')"
2221 $sth->execute( $borrowernumber, $item );
2223 # alter fine to show that the book has been returned
2224 my $data = $sth->fetchrow_hashref;
2225 return 0 unless $data; # no warning, there's just nothing to fix
2227 my $uquery;
2228 my @bind = ($data->{'accountlines_id'});
2229 if ($exemptfine) {
2230 $uquery = "update accountlines set accounttype='FFOR', amountoutstanding=0";
2231 if (C4::Context->preference("FinesLog")) {
2232 &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
2234 } elsif ($dropbox && $data->{lastincrement}) {
2235 my $outstanding = $data->{amountoutstanding} - $data->{lastincrement} ;
2236 my $amt = $data->{amount} - $data->{lastincrement} ;
2237 if (C4::Context->preference("FinesLog")) {
2238 &logaction("FINES", 'MODIFY',$borrowernumber,"Dropbox adjustment $amt, item $item");
2240 $uquery = "update accountlines set accounttype='F' ";
2241 if($outstanding >= 0 && $amt >=0) {
2242 $uquery .= ", amount = ? , amountoutstanding=? ";
2243 unshift @bind, ($amt, $outstanding) ;
2245 } else {
2246 $uquery = "update accountlines set accounttype='F' ";
2248 $uquery .= " where (accountlines_id = ?)";
2249 my $usth = $dbh->prepare($uquery);
2250 return $usth->execute(@bind);
2253 =head2 _FixAccountForLostAndReturned
2255 &_FixAccountForLostAndReturned($itemnumber, [$borrowernumber, $barcode]);
2257 Calculates the charge for a book lost and returned.
2259 Internal function, not exported, called only by AddReturn.
2261 FIXME: This function reflects how inscrutable fines logic is. Fix both.
2262 FIXME: Give a positive return value on success. It might be the $borrowernumber who received credit, or the amount forgiven.
2264 =cut
2266 sub _FixAccountForLostAndReturned {
2267 my $itemnumber = shift or return;
2268 my $borrowernumber = @_ ? shift : undef;
2269 my $item_id = @_ ? shift : $itemnumber; # Send the barcode if you want that logged in the description
2270 my $dbh = C4::Context->dbh;
2271 # check for charge made for lost book
2272 my $sth = $dbh->prepare("SELECT * FROM accountlines WHERE itemnumber = ? AND accounttype IN ('L', 'Rep', 'W') ORDER BY date DESC, accountno DESC");
2273 $sth->execute($itemnumber);
2274 my $data = $sth->fetchrow_hashref;
2275 $data or return; # bail if there is nothing to do
2276 $data->{accounttype} eq 'W' and return; # Written off
2278 # writeoff this amount
2279 my $offset;
2280 my $amount = $data->{'amount'};
2281 my $acctno = $data->{'accountno'};
2282 my $amountleft; # Starts off undef/zero.
2283 if ($data->{'amountoutstanding'} == $amount) {
2284 $offset = $data->{'amount'};
2285 $amountleft = 0; # Hey, it's zero here, too.
2286 } else {
2287 $offset = $amount - $data->{'amountoutstanding'}; # Um, isn't this the same as ZERO? We just tested those two things are ==
2288 $amountleft = $data->{'amountoutstanding'} - $amount; # Um, isn't this the same as ZERO? We just tested those two things are ==
2290 my $usth = $dbh->prepare("UPDATE accountlines SET accounttype = 'LR',amountoutstanding='0'
2291 WHERE (accountlines_id = ?)");
2292 $usth->execute($data->{'accountlines_id'}); # We might be adjusting an account for some OTHER borrowernumber now. Not the one we passed in.
2293 #check if any credit is left if so writeoff other accounts
2294 my $nextaccntno = getnextacctno($data->{'borrowernumber'});
2295 $amountleft *= -1 if ($amountleft < 0);
2296 if ($amountleft > 0) {
2297 my $msth = $dbh->prepare("SELECT * FROM accountlines WHERE (borrowernumber = ?)
2298 AND (amountoutstanding >0) ORDER BY date"); # might want to order by amountoustanding ASC (pay smallest first)
2299 $msth->execute($data->{'borrowernumber'});
2300 # offset transactions
2301 my $newamtos;
2302 my $accdata;
2303 while (($accdata=$msth->fetchrow_hashref) and ($amountleft>0)){
2304 if ($accdata->{'amountoutstanding'} < $amountleft) {
2305 $newamtos = 0;
2306 $amountleft -= $accdata->{'amountoutstanding'};
2307 } else {
2308 $newamtos = $accdata->{'amountoutstanding'} - $amountleft;
2309 $amountleft = 0;
2311 my $thisacct = $accdata->{'accountlines_id'};
2312 # FIXME: move prepares outside while loop!
2313 my $usth = $dbh->prepare("UPDATE accountlines SET amountoutstanding= ?
2314 WHERE (accountlines_id = ?)");
2315 $usth->execute($newamtos,$thisacct);
2316 $usth = $dbh->prepare("INSERT INTO accountoffsets
2317 (borrowernumber, accountno, offsetaccount, offsetamount)
2318 VALUES
2319 (?,?,?,?)");
2320 $usth->execute($data->{'borrowernumber'},$accdata->{'accountno'},$nextaccntno,$newamtos);
2323 $amountleft *= -1 if ($amountleft > 0);
2324 my $desc = "Item Returned " . $item_id;
2325 $usth = $dbh->prepare("INSERT INTO accountlines
2326 (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
2327 VALUES (?,?,now(),?,?,'CR',?)");
2328 $usth->execute($data->{'borrowernumber'},$nextaccntno,0-$amount,$desc,$amountleft);
2329 if ($borrowernumber) {
2330 # FIXME: same as query above. use 1 sth for both
2331 $usth = $dbh->prepare("INSERT INTO accountoffsets
2332 (borrowernumber, accountno, offsetaccount, offsetamount)
2333 VALUES (?,?,?,?)");
2334 $usth->execute($borrowernumber, $data->{'accountno'}, $nextaccntno, $offset);
2336 ModItem({ paidfor => '' }, undef, $itemnumber);
2337 return;
2340 =head2 _GetCircControlBranch
2342 my $circ_control_branch = _GetCircControlBranch($iteminfos, $borrower);
2344 Internal function :
2346 Return the library code to be used to determine which circulation
2347 policy applies to a transaction. Looks up the CircControl and
2348 HomeOrHoldingBranch system preferences.
2350 C<$iteminfos> is a hashref to iteminfo. Only {homebranch or holdingbranch} is used.
2352 C<$borrower> is a hashref to borrower. Only {branchcode} is used.
2354 =cut
2356 sub _GetCircControlBranch {
2357 my ($item, $borrower) = @_;
2358 my $circcontrol = C4::Context->preference('CircControl');
2359 my $branch;
2361 if ($circcontrol eq 'PickupLibrary' and (C4::Context->userenv and C4::Context->userenv->{'branch'}) ) {
2362 $branch= C4::Context->userenv->{'branch'};
2363 } elsif ($circcontrol eq 'PatronLibrary') {
2364 $branch=$borrower->{branchcode};
2365 } else {
2366 my $branchfield = C4::Context->preference('HomeOrHoldingBranch') || 'homebranch';
2367 $branch = $item->{$branchfield};
2368 # default to item home branch if holdingbranch is used
2369 # and is not defined
2370 if (!defined($branch) && $branchfield eq 'holdingbranch') {
2371 $branch = $item->{homebranch};
2374 return $branch;
2382 =head2 GetItemIssue
2384 $issue = &GetItemIssue($itemnumber);
2386 Returns patron currently having a book, or undef if not checked out.
2388 C<$itemnumber> is the itemnumber.
2390 C<$issue> is a hashref of the row from the issues table.
2392 =cut
2394 sub GetItemIssue {
2395 my ($itemnumber) = @_;
2396 return unless $itemnumber;
2397 my $sth = C4::Context->dbh->prepare(
2398 "SELECT items.*, issues.*
2399 FROM issues
2400 LEFT JOIN items ON issues.itemnumber=items.itemnumber
2401 WHERE issues.itemnumber=?");
2402 $sth->execute($itemnumber);
2403 my $data = $sth->fetchrow_hashref;
2404 return unless $data;
2405 $data->{issuedate_sql} = $data->{issuedate};
2406 $data->{date_due_sql} = $data->{date_due};
2407 $data->{issuedate} = dt_from_string($data->{issuedate}, 'sql');
2408 $data->{issuedate}->truncate(to => 'minute');
2409 $data->{date_due} = dt_from_string($data->{date_due}, 'sql');
2410 $data->{date_due}->truncate(to => 'minute');
2411 my $dt = DateTime->now( time_zone => C4::Context->tz)->truncate( to => 'minute');
2412 $data->{'overdue'} = DateTime->compare($data->{'date_due'}, $dt ) == -1 ? 1 : 0;
2413 return $data;
2416 =head2 GetOpenIssue
2418 $issue = GetOpenIssue( $itemnumber );
2420 Returns the row from the issues table if the item is currently issued, undef if the item is not currently issued
2422 C<$itemnumber> is the item's itemnumber
2424 Returns a hashref
2426 =cut
2428 sub GetOpenIssue {
2429 my ( $itemnumber ) = @_;
2430 return unless $itemnumber;
2431 my $dbh = C4::Context->dbh;
2432 my $sth = $dbh->prepare( "SELECT * FROM issues WHERE itemnumber = ? AND returndate IS NULL" );
2433 $sth->execute( $itemnumber );
2434 return $sth->fetchrow_hashref();
2438 =head2 GetIssues
2440 $issues = GetIssues({}); # return all issues!
2441 $issues = GetIssues({ borrowernumber => $borrowernumber, biblionumber => $biblionumber });
2443 Returns all pending issues that match given criteria.
2444 Returns a arrayref or undef if an error occurs.
2446 Allowed criteria are:
2448 =over 2
2450 =item * borrowernumber
2452 =item * biblionumber
2454 =item * itemnumber
2456 =back
2458 =cut
2460 sub GetIssues {
2461 my ($criteria) = @_;
2463 # Build filters
2464 my @filters;
2465 my @allowed = qw(borrowernumber biblionumber itemnumber);
2466 foreach (@allowed) {
2467 if (defined $criteria->{$_}) {
2468 push @filters, {
2469 field => $_,
2470 value => $criteria->{$_},
2475 # Do we need to join other tables ?
2476 my %join;
2477 if (defined $criteria->{biblionumber}) {
2478 $join{items} = 1;
2481 # Build SQL query
2482 my $where = '';
2483 if (@filters) {
2484 $where = "WHERE " . join(' AND ', map { "$_->{field} = ?" } @filters);
2486 my $query = q{
2487 SELECT issues.*
2488 FROM issues
2490 if (defined $join{items}) {
2491 $query .= q{
2492 LEFT JOIN items ON (issues.itemnumber = items.itemnumber)
2495 $query .= $where;
2497 # Execute SQL query
2498 my $dbh = C4::Context->dbh;
2499 my $sth = $dbh->prepare($query);
2500 my $rv = $sth->execute(map { $_->{value} } @filters);
2502 return $rv ? $sth->fetchall_arrayref({}) : undef;
2505 =head2 GetItemIssues
2507 $issues = &GetItemIssues($itemnumber, $history);
2509 Returns patrons that have issued a book
2511 C<$itemnumber> is the itemnumber
2512 C<$history> is false if you just want the current "issuer" (if any)
2513 and true if you want issues history from old_issues also.
2515 Returns reference to an array of hashes
2517 =cut
2519 sub GetItemIssues {
2520 my ( $itemnumber, $history ) = @_;
2522 my $today = DateTime->now( time_zome => C4::Context->tz); # get today date
2523 $today->truncate( to => 'minute' );
2524 my $sql = "SELECT * FROM issues
2525 JOIN borrowers USING (borrowernumber)
2526 JOIN items USING (itemnumber)
2527 WHERE issues.itemnumber = ? ";
2528 if ($history) {
2529 $sql .= "UNION ALL
2530 SELECT * FROM old_issues
2531 LEFT JOIN borrowers USING (borrowernumber)
2532 JOIN items USING (itemnumber)
2533 WHERE old_issues.itemnumber = ? ";
2535 $sql .= "ORDER BY date_due DESC";
2536 my $sth = C4::Context->dbh->prepare($sql);
2537 if ($history) {
2538 $sth->execute($itemnumber, $itemnumber);
2539 } else {
2540 $sth->execute($itemnumber);
2542 my $results = $sth->fetchall_arrayref({});
2543 foreach (@$results) {
2544 my $date_due = dt_from_string($_->{date_due},'sql');
2545 $date_due->truncate( to => 'minute' );
2547 $_->{overdue} = (DateTime->compare($date_due, $today) == -1) ? 1 : 0;
2549 return $results;
2552 =head2 GetBiblioIssues
2554 $issues = GetBiblioIssues($biblionumber);
2556 this function get all issues from a biblionumber.
2558 Return:
2559 C<$issues> is a reference to array which each value is ref-to-hash. This ref-to-hash containts all column from
2560 tables issues and the firstname,surname & cardnumber from borrowers.
2562 =cut
2564 sub GetBiblioIssues {
2565 my $biblionumber = shift;
2566 return unless $biblionumber;
2567 my $dbh = C4::Context->dbh;
2568 my $query = "
2569 SELECT issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2570 FROM issues
2571 LEFT JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
2572 LEFT JOIN items ON issues.itemnumber = items.itemnumber
2573 LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2574 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2575 WHERE biblio.biblionumber = ?
2576 UNION ALL
2577 SELECT old_issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2578 FROM old_issues
2579 LEFT JOIN borrowers ON borrowers.borrowernumber = old_issues.borrowernumber
2580 LEFT JOIN items ON old_issues.itemnumber = items.itemnumber
2581 LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2582 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2583 WHERE biblio.biblionumber = ?
2584 ORDER BY timestamp
2586 my $sth = $dbh->prepare($query);
2587 $sth->execute($biblionumber, $biblionumber);
2589 my @issues;
2590 while ( my $data = $sth->fetchrow_hashref ) {
2591 push @issues, $data;
2593 return \@issues;
2596 =head2 GetUpcomingDueIssues
2598 my $upcoming_dues = GetUpcomingDueIssues( { days_in_advance => 4 } );
2600 =cut
2602 sub GetUpcomingDueIssues {
2603 my $params = shift;
2605 $params->{'days_in_advance'} = 7 unless exists $params->{'days_in_advance'};
2606 my $dbh = C4::Context->dbh;
2608 my $statement = <<END_SQL;
2609 SELECT issues.*, items.itype as itemtype, items.homebranch, TO_DAYS( date_due )-TO_DAYS( NOW() ) as days_until_due, branches.branchemail
2610 FROM issues
2611 LEFT JOIN items USING (itemnumber)
2612 LEFT OUTER JOIN branches USING (branchcode)
2613 WHERE returndate is NULL
2614 HAVING days_until_due >= 0 AND days_until_due <= ?
2615 END_SQL
2617 my @bind_parameters = ( $params->{'days_in_advance'} );
2619 my $sth = $dbh->prepare( $statement );
2620 $sth->execute( @bind_parameters );
2621 my $upcoming_dues = $sth->fetchall_arrayref({});
2623 return $upcoming_dues;
2626 =head2 CanBookBeRenewed
2628 ($ok,$error) = &CanBookBeRenewed($borrowernumber, $itemnumber[, $override_limit]);
2630 Find out whether a borrowed item may be renewed.
2632 C<$borrowernumber> is the borrower number of the patron who currently
2633 has the item on loan.
2635 C<$itemnumber> is the number of the item to renew.
2637 C<$override_limit>, if supplied with a true value, causes
2638 the limit on the number of times that the loan can be renewed
2639 (as controlled by the item type) to be ignored. Overriding also allows
2640 to renew sooner than "No renewal before" and to manually renew loans
2641 that are automatically renewed.
2643 C<$CanBookBeRenewed> returns a true value if the item may be renewed. The
2644 item must currently be on loan to the specified borrower; renewals
2645 must be allowed for the item's type; and the borrower must not have
2646 already renewed the loan. $error will contain the reason the renewal can not proceed
2648 =cut
2650 sub CanBookBeRenewed {
2651 my ( $borrowernumber, $itemnumber, $override_limit ) = @_;
2653 my $dbh = C4::Context->dbh;
2654 my $renews = 1;
2656 my $item = GetItem($itemnumber) or return ( 0, 'no_item' );
2657 my $itemissue = GetItemIssue($itemnumber) or return ( 0, 'no_checkout' );
2659 $borrowernumber ||= $itemissue->{borrowernumber};
2660 my $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber )
2661 or return;
2663 my ( $resfound, $resrec, undef ) = C4::Reserves::CheckReserves($itemnumber);
2665 # This item can fill one or more unfilled reserve, can those unfilled reserves
2666 # all be filled by other available items?
2667 if ( $resfound
2668 && C4::Context->preference('AllowRenewalIfOtherItemsAvailable') )
2670 my $schema = Koha::Database->new()->schema();
2672 my $item_holds = $schema->resultset('Reserve')->search( { itemnumber => $itemnumber, found => undef } )->count();
2673 if ($item_holds) {
2674 # There is an item level hold on this item, no other item can fill the hold
2675 $resfound = 1;
2677 else {
2679 # Get all other items that could possibly fill reserves
2680 my @itemnumbers = $schema->resultset('Item')->search(
2682 biblionumber => $resrec->{biblionumber},
2683 onloan => undef,
2684 -not => { itemnumber => $itemnumber }
2686 { columns => 'itemnumber' }
2687 )->get_column('itemnumber')->all();
2689 # Get all other reserves that could have been filled by this item
2690 my @borrowernumbers;
2691 while (1) {
2692 my ( $reserve_found, $reserve, undef ) =
2693 C4::Reserves::CheckReserves( $itemnumber, undef, undef, \@borrowernumbers );
2695 if ($reserve_found) {
2696 push( @borrowernumbers, $reserve->{borrowernumber} );
2698 else {
2699 last;
2703 # If the count of the union of the lists of reservable items for each borrower
2704 # is equal or greater than the number of borrowers, we know that all reserves
2705 # can be filled with available items. We can get the union of the sets simply
2706 # by pushing all the elements onto an array and removing the duplicates.
2707 my @reservable;
2708 foreach my $b (@borrowernumbers) {
2709 my ($borr) = C4::Members::GetMemberDetails($b);
2710 foreach my $i (@itemnumbers) {
2711 my $item = GetItem($i);
2712 if ( IsAvailableForItemLevelRequest( $item, $borr )
2713 && CanItemBeReserved( $b, $i )
2714 && !IsItemOnHoldAndFound($i) )
2716 push( @reservable, $i );
2721 @reservable = uniq(@reservable);
2723 if ( @reservable >= @borrowernumbers ) {
2724 $resfound = 0;
2729 return ( 0, "on_reserve" ) if $resfound; # '' when no hold was found
2731 return ( 1, undef ) if $override_limit;
2733 my $branchcode = _GetCircControlBranch( $item, $borrower );
2734 my $issuingrule =
2735 GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode );
2737 return ( 0, "too_many" )
2738 if $issuingrule->{renewalsallowed} <= $itemissue->{renewals};
2740 if ( $issuingrule->{norenewalbefore} ) {
2742 # Get current time and add norenewalbefore.
2743 # If this is smaller than date_due, it's too soon for renewal.
2744 if (
2745 DateTime->now( time_zone => C4::Context->tz() )->add(
2746 $issuingrule->{lengthunit} => $issuingrule->{norenewalbefore}
2747 ) < $itemissue->{date_due}
2750 return ( 0, "auto_too_soon" ) if $itemissue->{auto_renew};
2751 return ( 0, "too_soon" );
2755 return ( 0, "auto_renew" ) if $itemissue->{auto_renew};
2756 return ( 1, undef );
2759 =head2 AddRenewal
2761 &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate]);
2763 Renews a loan.
2765 C<$borrowernumber> is the borrower number of the patron who currently
2766 has the item.
2768 C<$itemnumber> is the number of the item to renew.
2770 C<$branch> is the library where the renewal took place (if any).
2771 The library that controls the circ policies for the renewal is retrieved from the issues record.
2773 C<$datedue> can be a C4::Dates object used to set the due date.
2775 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate. If
2776 this parameter is not supplied, lastreneweddate is set to the current date.
2778 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
2779 from the book's item type.
2781 =cut
2783 sub AddRenewal {
2784 my $borrowernumber = shift;
2785 my $itemnumber = shift or return;
2786 my $branch = shift;
2787 my $datedue = shift;
2788 my $lastreneweddate = shift || DateTime->now(time_zone => C4::Context->tz)->ymd();
2790 my $item = GetItem($itemnumber) or return;
2791 my $biblio = GetBiblioFromItemNumber($itemnumber) or return;
2793 my $dbh = C4::Context->dbh;
2795 # Find the issues record for this book
2796 my $sth =
2797 $dbh->prepare("SELECT * FROM issues WHERE itemnumber = ?");
2798 $sth->execute( $itemnumber );
2799 my $issuedata = $sth->fetchrow_hashref;
2801 return unless ( $issuedata );
2803 $borrowernumber ||= $issuedata->{borrowernumber};
2805 if ( defined $datedue && ref $datedue ne 'DateTime' ) {
2806 carp 'Invalid date passed to AddRenewal.';
2807 return;
2810 # If the due date wasn't specified, calculate it by adding the
2811 # book's loan length to today's date or the current due date
2812 # based on the value of the RenewalPeriodBase syspref.
2813 unless ($datedue) {
2815 my $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber ) or return;
2816 my $itemtype = (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'};
2818 $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
2819 dt_from_string( $issuedata->{date_due} ) :
2820 DateTime->now( time_zone => C4::Context->tz());
2821 $datedue = CalcDateDue($datedue, $itemtype, $issuedata->{'branchcode'}, $borrower, 'is a renewal');
2824 # Update the issues record to have the new due date, and a new count
2825 # of how many times it has been renewed.
2826 my $renews = $issuedata->{'renewals'} + 1;
2827 $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, lastreneweddate = ?
2828 WHERE borrowernumber=?
2829 AND itemnumber=?"
2832 $sth->execute( $datedue->strftime('%Y-%m-%d %H:%M'), $renews, $lastreneweddate, $borrowernumber, $itemnumber );
2834 # Update the renewal count on the item, and tell zebra to reindex
2835 $renews = $biblio->{'renewals'} + 1;
2836 ModItem({ renewals => $renews, onloan => $datedue->strftime('%Y-%m-%d %H:%M')}, $biblio->{'biblionumber'}, $itemnumber);
2838 # Charge a new rental fee, if applicable?
2839 my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
2840 if ( $charge > 0 ) {
2841 my $accountno = getnextacctno( $borrowernumber );
2842 my $item = GetBiblioFromItemNumber($itemnumber);
2843 my $manager_id = 0;
2844 $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv;
2845 $sth = $dbh->prepare(
2846 "INSERT INTO accountlines
2847 (date, borrowernumber, accountno, amount, manager_id,
2848 description,accounttype, amountoutstanding, itemnumber)
2849 VALUES (now(),?,?,?,?,?,?,?,?)"
2851 $sth->execute( $borrowernumber, $accountno, $charge, $manager_id,
2852 "Renewal of Rental Item $item->{'title'} $item->{'barcode'}",
2853 'Rent', $charge, $itemnumber );
2856 # Send a renewal slip according to checkout alert preferencei
2857 if ( C4::Context->preference('RenewalSendNotice') eq '1') {
2858 my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 );
2859 my $circulation_alert = 'C4::ItemCirculationAlertPreference';
2860 my %conditions = (
2861 branchcode => $branch,
2862 categorycode => $borrower->{categorycode},
2863 item_type => $item->{itype},
2864 notification => 'CHECKOUT',
2866 if ($circulation_alert->is_enabled_for(\%conditions)) {
2867 SendCirculationAlert({
2868 type => 'RENEWAL',
2869 item => $item,
2870 borrower => $borrower,
2871 branch => $branch,
2876 # Remove any OVERDUES related debarment if the borrower has no overdues
2877 my $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber );
2878 if ( $borrowernumber
2879 && $borrower->{'debarred'}
2880 && !C4::Members::HasOverdues( $borrowernumber )
2881 && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
2883 DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
2886 # Log the renewal
2887 UpdateStats({branch => $branch,
2888 type => 'renew',
2889 amount => $charge,
2890 itemnumber => $itemnumber,
2891 itemtype => $item->{itype},
2892 borrowernumber => $borrowernumber,
2893 ccode => $item->{'ccode'}}
2895 return $datedue;
2898 sub GetRenewCount {
2899 # check renewal status
2900 my ( $bornum, $itemno ) = @_;
2901 my $dbh = C4::Context->dbh;
2902 my $renewcount = 0;
2903 my $renewsallowed = 0;
2904 my $renewsleft = 0;
2906 my $borrower = C4::Members::GetMember( borrowernumber => $bornum);
2907 my $item = GetItem($itemno);
2909 # Look in the issues table for this item, lent to this borrower,
2910 # and not yet returned.
2912 # FIXME - I think this function could be redone to use only one SQL call.
2913 my $sth = $dbh->prepare(
2914 "select * from issues
2915 where (borrowernumber = ?)
2916 and (itemnumber = ?)"
2918 $sth->execute( $bornum, $itemno );
2919 my $data = $sth->fetchrow_hashref;
2920 $renewcount = $data->{'renewals'} if $data->{'renewals'};
2921 # $item and $borrower should be calculated
2922 my $branchcode = _GetCircControlBranch($item, $borrower);
2924 my $issuingrule = GetIssuingRule($borrower->{categorycode}, $item->{itype}, $branchcode);
2926 $renewsallowed = $issuingrule->{'renewalsallowed'};
2927 $renewsleft = $renewsallowed - $renewcount;
2928 if($renewsleft < 0){ $renewsleft = 0; }
2929 return ( $renewcount, $renewsallowed, $renewsleft );
2932 =head2 GetSoonestRenewDate
2934 $NoRenewalBeforeThisDate = &GetSoonestRenewDate($borrowernumber, $itemnumber);
2936 Find out the soonest possible renew date of a borrowed item.
2938 C<$borrowernumber> is the borrower number of the patron who currently
2939 has the item on loan.
2941 C<$itemnumber> is the number of the item to renew.
2943 C<$GetSoonestRenewDate> returns the DateTime of the soonest possible
2944 renew date, based on the value "No renewal before" of the applicable
2945 issuing rule. Returns the current date if the item can already be
2946 renewed, and returns undefined if the borrower, loan, or item
2947 cannot be found.
2949 =cut
2951 sub GetSoonestRenewDate {
2952 my ( $borrowernumber, $itemnumber ) = @_;
2954 my $dbh = C4::Context->dbh;
2956 my $item = GetItem($itemnumber) or return;
2957 my $itemissue = GetItemIssue($itemnumber) or return;
2959 $borrowernumber ||= $itemissue->{borrowernumber};
2960 my $borrower = C4::Members::GetMemberDetails($borrowernumber)
2961 or return;
2963 my $branchcode = _GetCircControlBranch( $item, $borrower );
2964 my $issuingrule =
2965 GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode );
2967 my $now = DateTime->now( time_zone => C4::Context->tz() );
2969 if ( $issuingrule->{norenewalbefore} ) {
2970 my $soonestrenewal =
2971 $itemissue->{date_due}->subtract(
2972 $issuingrule->{lengthunit} => $issuingrule->{norenewalbefore} );
2974 $soonestrenewal = $now > $soonestrenewal ? $now : $soonestrenewal;
2975 return $soonestrenewal;
2977 return $now;
2980 =head2 GetIssuingCharges
2982 ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
2984 Calculate how much it would cost for a given patron to borrow a given
2985 item, including any applicable discounts.
2987 C<$itemnumber> is the item number of item the patron wishes to borrow.
2989 C<$borrowernumber> is the patron's borrower number.
2991 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
2992 and C<$item_type> is the code for the item's item type (e.g., C<VID>
2993 if it's a video).
2995 =cut
2997 sub GetIssuingCharges {
2999 # calculate charges due
3000 my ( $itemnumber, $borrowernumber ) = @_;
3001 my $charge = 0;
3002 my $dbh = C4::Context->dbh;
3003 my $item_type;
3005 # Get the book's item type and rental charge (via its biblioitem).
3006 my $charge_query = 'SELECT itemtypes.itemtype,rentalcharge FROM items
3007 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber';
3008 $charge_query .= (C4::Context->preference('item-level_itypes'))
3009 ? ' LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype'
3010 : ' LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype';
3012 $charge_query .= ' WHERE items.itemnumber =?';
3014 my $sth = $dbh->prepare($charge_query);
3015 $sth->execute($itemnumber);
3016 if ( my $item_data = $sth->fetchrow_hashref ) {
3017 $item_type = $item_data->{itemtype};
3018 $charge = $item_data->{rentalcharge};
3019 my $branch = C4::Branch::mybranch();
3020 my $discount_query = q|SELECT rentaldiscount,
3021 issuingrules.itemtype, issuingrules.branchcode
3022 FROM borrowers
3023 LEFT JOIN issuingrules ON borrowers.categorycode = issuingrules.categorycode
3024 WHERE borrowers.borrowernumber = ?
3025 AND (issuingrules.itemtype = ? OR issuingrules.itemtype = '*')
3026 AND (issuingrules.branchcode = ? OR issuingrules.branchcode = '*')|;
3027 my $discount_sth = $dbh->prepare($discount_query);
3028 $discount_sth->execute( $borrowernumber, $item_type, $branch );
3029 my $discount_rules = $discount_sth->fetchall_arrayref({});
3030 if (@{$discount_rules}) {
3031 # We may have multiple rules so get the most specific
3032 my $discount = _get_discount_from_rule($discount_rules, $branch, $item_type);
3033 $charge = ( $charge * ( 100 - $discount ) ) / 100;
3037 return ( $charge, $item_type );
3040 # Select most appropriate discount rule from those returned
3041 sub _get_discount_from_rule {
3042 my ($rules_ref, $branch, $itemtype) = @_;
3043 my $discount;
3045 if (@{$rules_ref} == 1) { # only 1 applicable rule use it
3046 $discount = $rules_ref->[0]->{rentaldiscount};
3047 return (defined $discount) ? $discount : 0;
3049 # could have up to 4 does one match $branch and $itemtype
3050 my @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq $itemtype } @{$rules_ref};
3051 if (@d) {
3052 $discount = $d[0]->{rentaldiscount};
3053 return (defined $discount) ? $discount : 0;
3055 # do we have item type + all branches
3056 @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq $itemtype } @{$rules_ref};
3057 if (@d) {
3058 $discount = $d[0]->{rentaldiscount};
3059 return (defined $discount) ? $discount : 0;
3061 # do we all item types + this branch
3062 @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq q{*} } @{$rules_ref};
3063 if (@d) {
3064 $discount = $d[0]->{rentaldiscount};
3065 return (defined $discount) ? $discount : 0;
3067 # so all and all (surely we wont get here)
3068 @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq q{*} } @{$rules_ref};
3069 if (@d) {
3070 $discount = $d[0]->{rentaldiscount};
3071 return (defined $discount) ? $discount : 0;
3073 # none of the above
3074 return 0;
3077 =head2 AddIssuingCharge
3079 &AddIssuingCharge( $itemno, $borrowernumber, $charge )
3081 =cut
3083 sub AddIssuingCharge {
3084 my ( $itemnumber, $borrowernumber, $charge ) = @_;
3085 my $dbh = C4::Context->dbh;
3086 my $nextaccntno = getnextacctno( $borrowernumber );
3087 my $manager_id = 0;
3088 $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv;
3089 my $query ="
3090 INSERT INTO accountlines
3091 (borrowernumber, itemnumber, accountno,
3092 date, amount, description, accounttype,
3093 amountoutstanding, manager_id)
3094 VALUES (?, ?, ?,now(), ?, 'Rental', 'Rent',?,?)
3096 my $sth = $dbh->prepare($query);
3097 $sth->execute( $borrowernumber, $itemnumber, $nextaccntno, $charge, $charge, $manager_id );
3100 =head2 GetTransfers
3102 GetTransfers($itemnumber);
3104 =cut
3106 sub GetTransfers {
3107 my ($itemnumber) = @_;
3109 my $dbh = C4::Context->dbh;
3111 my $query = '
3112 SELECT datesent,
3113 frombranch,
3114 tobranch
3115 FROM branchtransfers
3116 WHERE itemnumber = ?
3117 AND datearrived IS NULL
3119 my $sth = $dbh->prepare($query);
3120 $sth->execute($itemnumber);
3121 my @row = $sth->fetchrow_array();
3122 return @row;
3125 =head2 GetTransfersFromTo
3127 @results = GetTransfersFromTo($frombranch,$tobranch);
3129 Returns the list of pending transfers between $from and $to branch
3131 =cut
3133 sub GetTransfersFromTo {
3134 my ( $frombranch, $tobranch ) = @_;
3135 return unless ( $frombranch && $tobranch );
3136 my $dbh = C4::Context->dbh;
3137 my $query = "
3138 SELECT itemnumber,datesent,frombranch
3139 FROM branchtransfers
3140 WHERE frombranch=?
3141 AND tobranch=?
3142 AND datearrived IS NULL
3144 my $sth = $dbh->prepare($query);
3145 $sth->execute( $frombranch, $tobranch );
3146 my @gettransfers;
3148 while ( my $data = $sth->fetchrow_hashref ) {
3149 push @gettransfers, $data;
3151 return (@gettransfers);
3154 =head2 DeleteTransfer
3156 &DeleteTransfer($itemnumber);
3158 =cut
3160 sub DeleteTransfer {
3161 my ($itemnumber) = @_;
3162 return unless $itemnumber;
3163 my $dbh = C4::Context->dbh;
3164 my $sth = $dbh->prepare(
3165 "DELETE FROM branchtransfers
3166 WHERE itemnumber=?
3167 AND datearrived IS NULL "
3169 return $sth->execute($itemnumber);
3172 =head2 AnonymiseIssueHistory
3174 ($rows,$err_history_not_deleted) = AnonymiseIssueHistory($date,$borrowernumber)
3176 This function write NULL instead of C<$borrowernumber> given on input arg into the table issues.
3177 if C<$borrowernumber> is not set, it will delete the issue history for all borrower older than C<$date>.
3179 If c<$borrowernumber> is set, it will delete issue history for only that borrower, regardless of their opac privacy
3180 setting (force delete).
3182 return the number of affected rows and a value that evaluates to true if an error occurred deleting the history.
3184 =cut
3186 sub AnonymiseIssueHistory {
3187 my $date = shift;
3188 my $borrowernumber = shift;
3189 my $dbh = C4::Context->dbh;
3190 my $query = "
3191 UPDATE old_issues
3192 SET borrowernumber = ?
3193 WHERE returndate < ?
3194 AND borrowernumber IS NOT NULL
3197 # The default of 0 does not work due to foreign key constraints
3198 # The anonymisation will fail quietly if AnonymousPatron is not a valid entry
3199 my $anonymouspatron = (C4::Context->preference('AnonymousPatron')) ? C4::Context->preference('AnonymousPatron') : 0;
3200 my @bind_params = ($anonymouspatron, $date);
3201 if (defined $borrowernumber) {
3202 $query .= " AND borrowernumber = ?";
3203 push @bind_params, $borrowernumber;
3204 } else {
3205 $query .= " AND (SELECT privacy FROM borrowers WHERE borrowers.borrowernumber=old_issues.borrowernumber) <> 0";
3207 my $sth = $dbh->prepare($query);
3208 $sth->execute(@bind_params);
3209 my $anonymisation_err = $dbh->err;
3210 my $rows_affected = $sth->rows; ### doublecheck row count return function
3211 return ($rows_affected, $anonymisation_err);
3214 =head2 SendCirculationAlert
3216 Send out a C<check-in> or C<checkout> alert using the messaging system.
3218 B<Parameters>:
3220 =over 4
3222 =item type
3224 Valid values for this parameter are: C<CHECKIN> and C<CHECKOUT>.
3226 =item item
3228 Hashref of information about the item being checked in or out.
3230 =item borrower
3232 Hashref of information about the borrower of the item.
3234 =item branch
3236 The branchcode from where the checkout or check-in took place.
3238 =back
3240 B<Example>:
3242 SendCirculationAlert({
3243 type => 'CHECKOUT',
3244 item => $item,
3245 borrower => $borrower,
3246 branch => $branch,
3249 =cut
3251 sub SendCirculationAlert {
3252 my ($opts) = @_;
3253 my ($type, $item, $borrower, $branch) =
3254 ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch});
3255 my %message_name = (
3256 CHECKIN => 'Item_Check_in',
3257 CHECKOUT => 'Item_Checkout',
3258 RENEWAL => 'Item_Checkout',
3260 my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({
3261 borrowernumber => $borrower->{borrowernumber},
3262 message_name => $message_name{$type},
3264 my $issues_table = ( $type eq 'CHECKOUT' || $type eq 'RENEWAL' ) ? 'issues' : 'old_issues';
3266 my @transports = keys %{ $borrower_preferences->{transports} };
3267 # warn "no transports" unless @transports;
3268 for (@transports) {
3269 # warn "transport: $_";
3270 my $message = C4::Message->find_last_message($borrower, $type, $_);
3271 if (!$message) {
3272 #warn "create new message";
3273 my $letter = C4::Letters::GetPreparedLetter (
3274 module => 'circulation',
3275 letter_code => $type,
3276 branchcode => $branch,
3277 message_transport_type => $_,
3278 tables => {
3279 $issues_table => $item->{itemnumber},
3280 'items' => $item->{itemnumber},
3281 'biblio' => $item->{biblionumber},
3282 'biblioitems' => $item->{biblionumber},
3283 'borrowers' => $borrower,
3284 'branches' => $branch,
3286 ) or next;
3287 C4::Message->enqueue($letter, $borrower, $_);
3288 } else {
3289 #warn "append to old message";
3290 my $letter = C4::Letters::GetPreparedLetter (
3291 module => 'circulation',
3292 letter_code => $type,
3293 branchcode => $branch,
3294 message_transport_type => $_,
3295 tables => {
3296 $issues_table => $item->{itemnumber},
3297 'items' => $item->{itemnumber},
3298 'biblio' => $item->{biblionumber},
3299 'biblioitems' => $item->{biblionumber},
3300 'borrowers' => $borrower,
3301 'branches' => $branch,
3303 ) or next;
3304 $message->append($letter);
3305 $message->update;
3309 return;
3312 =head2 updateWrongTransfer
3314 $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
3316 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
3318 =cut
3320 sub updateWrongTransfer {
3321 my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
3322 my $dbh = C4::Context->dbh;
3323 # first step validate the actual line of transfert .
3324 my $sth =
3325 $dbh->prepare(
3326 "update branchtransfers set datearrived = now(),tobranch=?,comments='wrongtransfer' where itemnumber= ? AND datearrived IS NULL"
3328 $sth->execute($FromLibrary,$itemNumber);
3330 # second step create a new line of branchtransfer to the right location .
3331 ModItemTransfer($itemNumber, $FromLibrary, $waitingAtLibrary);
3333 #third step changing holdingbranch of item
3334 UpdateHoldingbranch($FromLibrary,$itemNumber);
3337 =head2 UpdateHoldingbranch
3339 $items = UpdateHoldingbranch($branch,$itmenumber);
3341 Simple methode for updating hodlingbranch in items BDD line
3343 =cut
3345 sub UpdateHoldingbranch {
3346 my ( $branch,$itemnumber ) = @_;
3347 ModItem({ holdingbranch => $branch }, undef, $itemnumber);
3350 =head2 CalcDateDue
3352 $newdatedue = CalcDateDue($startdate,$itemtype,$branchcode,$borrower);
3354 this function calculates the due date given the start date and configured circulation rules,
3355 checking against the holidays calendar as per the 'useDaysMode' syspref.
3356 C<$startdate> = C4::Dates object representing start date of loan period (assumed to be today)
3357 C<$itemtype> = itemtype code of item in question
3358 C<$branch> = location whose calendar to use
3359 C<$borrower> = Borrower object
3360 C<$isrenewal> = Boolean: is true if we want to calculate the date due for a renewal. Else is false.
3362 =cut
3364 sub CalcDateDue {
3365 my ( $startdate, $itemtype, $branch, $borrower, $isrenewal ) = @_;
3367 $isrenewal ||= 0;
3369 # loanlength now a href
3370 my $loanlength =
3371 GetLoanLength( $borrower->{'categorycode'}, $itemtype, $branch );
3373 my $length_key = ( $isrenewal and defined $loanlength->{renewalperiod} )
3374 ? qq{renewalperiod}
3375 : qq{issuelength};
3377 my $datedue;
3378 if ( $startdate ) {
3379 if (ref $startdate ne 'DateTime' ) {
3380 $datedue = dt_from_string($datedue);
3381 } else {
3382 $datedue = $startdate->clone;
3384 } else {
3385 $datedue =
3386 DateTime->now( time_zone => C4::Context->tz() )
3387 ->truncate( to => 'minute' );
3391 # calculate the datedue as normal
3392 if ( C4::Context->preference('useDaysMode') eq 'Days' )
3393 { # ignoring calendar
3394 if ( $loanlength->{lengthunit} eq 'hours' ) {
3395 $datedue->add( hours => $loanlength->{$length_key} );
3396 } else { # days
3397 $datedue->add( days => $loanlength->{$length_key} );
3398 $datedue->set_hour(23);
3399 $datedue->set_minute(59);
3401 } else {
3402 my $dur;
3403 if ($loanlength->{lengthunit} eq 'hours') {
3404 $dur = DateTime::Duration->new( hours => $loanlength->{$length_key});
3406 else { # days
3407 $dur = DateTime::Duration->new( days => $loanlength->{$length_key});
3409 my $calendar = Koha::Calendar->new( branchcode => $branch );
3410 $datedue = $calendar->addDate( $datedue, $dur, $loanlength->{lengthunit} );
3411 if ($loanlength->{lengthunit} eq 'days') {
3412 $datedue->set_hour(23);
3413 $datedue->set_minute(59);
3417 # if Hard Due Dates are used, retreive them and apply as necessary
3418 my ( $hardduedate, $hardduedatecompare ) =
3419 GetHardDueDate( $borrower->{'categorycode'}, $itemtype, $branch );
3420 if ($hardduedate) { # hardduedates are currently dates
3421 $hardduedate->truncate( to => 'minute' );
3422 $hardduedate->set_hour(23);
3423 $hardduedate->set_minute(59);
3424 my $cmp = DateTime->compare( $hardduedate, $datedue );
3426 # if the calculated due date is after the 'before' Hard Due Date (ceiling), override
3427 # if the calculated date is before the 'after' Hard Due Date (floor), override
3428 # if the hard due date is set to 'exactly', overrride
3429 if ( $hardduedatecompare == 0 || $hardduedatecompare == $cmp ) {
3430 $datedue = $hardduedate->clone;
3433 # in all other cases, keep the date due as it is
3437 # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
3438 if ( C4::Context->preference('ReturnBeforeExpiry') ) {
3439 my $expiry_dt = dt_from_string( $borrower->{dateexpiry}, 'iso' );
3440 $expiry_dt->set( hour => 23, minute => 59);
3441 if ( DateTime->compare( $datedue, $expiry_dt ) == 1 ) {
3442 $datedue = $expiry_dt->clone;
3446 return $datedue;
3450 =head2 CheckRepeatableHolidays
3452 $countrepeatable = CheckRepeatableHoliday($itemnumber,$week_day,$branchcode);
3454 This function checks if the date due is a repeatable holiday
3456 C<$date_due> = returndate calculate with no day check
3457 C<$itemnumber> = itemnumber
3458 C<$branchcode> = localisation of issue
3460 =cut
3462 sub CheckRepeatableHolidays{
3463 my($itemnumber,$week_day,$branchcode)=@_;
3464 my $dbh = C4::Context->dbh;
3465 my $query = qq|SELECT count(*)
3466 FROM repeatable_holidays
3467 WHERE branchcode=?
3468 AND weekday=?|;
3469 my $sth = $dbh->prepare($query);
3470 $sth->execute($branchcode,$week_day);
3471 my $result=$sth->fetchrow;
3472 return $result;
3476 =head2 CheckSpecialHolidays
3478 $countspecial = CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
3480 This function check if the date is a special holiday
3482 C<$years> = the years of datedue
3483 C<$month> = the month of datedue
3484 C<$day> = the day of datedue
3485 C<$itemnumber> = itemnumber
3486 C<$branchcode> = localisation of issue
3488 =cut
3490 sub CheckSpecialHolidays{
3491 my ($years,$month,$day,$itemnumber,$branchcode) = @_;
3492 my $dbh = C4::Context->dbh;
3493 my $query=qq|SELECT count(*)
3494 FROM `special_holidays`
3495 WHERE year=?
3496 AND month=?
3497 AND day=?
3498 AND branchcode=?
3500 my $sth = $dbh->prepare($query);
3501 $sth->execute($years,$month,$day,$branchcode);
3502 my $countspecial=$sth->fetchrow ;
3503 return $countspecial;
3506 =head2 CheckRepeatableSpecialHolidays
3508 $countspecial = CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
3510 This function check if the date is a repeatble special holidays
3512 C<$month> = the month of datedue
3513 C<$day> = the day of datedue
3514 C<$itemnumber> = itemnumber
3515 C<$branchcode> = localisation of issue
3517 =cut
3519 sub CheckRepeatableSpecialHolidays{
3520 my ($month,$day,$itemnumber,$branchcode) = @_;
3521 my $dbh = C4::Context->dbh;
3522 my $query=qq|SELECT count(*)
3523 FROM `repeatable_holidays`
3524 WHERE month=?
3525 AND day=?
3526 AND branchcode=?
3528 my $sth = $dbh->prepare($query);
3529 $sth->execute($month,$day,$branchcode);
3530 my $countspecial=$sth->fetchrow ;
3531 return $countspecial;
3536 sub CheckValidBarcode{
3537 my ($barcode) = @_;
3538 my $dbh = C4::Context->dbh;
3539 my $query=qq|SELECT count(*)
3540 FROM items
3541 WHERE barcode=?
3543 my $sth = $dbh->prepare($query);
3544 $sth->execute($barcode);
3545 my $exist=$sth->fetchrow ;
3546 return $exist;
3549 =head2 IsBranchTransferAllowed
3551 $allowed = IsBranchTransferAllowed( $toBranch, $fromBranch, $code );
3553 Code is either an itemtype or collection doe depending on the pref BranchTransferLimitsType
3555 =cut
3557 sub IsBranchTransferAllowed {
3558 my ( $toBranch, $fromBranch, $code ) = @_;
3560 if ( $toBranch eq $fromBranch ) { return 1; } ## Short circuit for speed.
3562 my $limitType = C4::Context->preference("BranchTransferLimitsType");
3563 my $dbh = C4::Context->dbh;
3565 my $sth = $dbh->prepare("SELECT * FROM branch_transfer_limits WHERE toBranch = ? AND fromBranch = ? AND $limitType = ?");
3566 $sth->execute( $toBranch, $fromBranch, $code );
3567 my $limit = $sth->fetchrow_hashref();
3569 ## If a row is found, then that combination is not allowed, if no matching row is found, then the combination *is allowed*
3570 if ( $limit->{'limitId'} ) {
3571 return 0;
3572 } else {
3573 return 1;
3577 =head2 CreateBranchTransferLimit
3579 CreateBranchTransferLimit( $toBranch, $fromBranch, $code );
3581 $code is either itemtype or collection code depending on what the pref BranchTransferLimitsType is set to.
3583 =cut
3585 sub CreateBranchTransferLimit {
3586 my ( $toBranch, $fromBranch, $code ) = @_;
3587 return unless defined($toBranch) && defined($fromBranch);
3588 my $limitType = C4::Context->preference("BranchTransferLimitsType");
3590 my $dbh = C4::Context->dbh;
3592 my $sth = $dbh->prepare("INSERT INTO branch_transfer_limits ( $limitType, toBranch, fromBranch ) VALUES ( ?, ?, ? )");
3593 return $sth->execute( $code, $toBranch, $fromBranch );
3596 =head2 DeleteBranchTransferLimits
3598 my $result = DeleteBranchTransferLimits($frombranch);
3600 Deletes all the library transfer limits for one library. Returns the
3601 number of limits deleted, 0e0 if no limits were deleted, or undef if
3602 no arguments are supplied.
3604 =cut
3606 sub DeleteBranchTransferLimits {
3607 my $branch = shift;
3608 return unless defined $branch;
3609 my $dbh = C4::Context->dbh;
3610 my $sth = $dbh->prepare("DELETE FROM branch_transfer_limits WHERE fromBranch = ?");
3611 return $sth->execute($branch);
3614 sub ReturnLostItem{
3615 my ( $borrowernumber, $itemnum ) = @_;
3617 MarkIssueReturned( $borrowernumber, $itemnum );
3618 my $borrower = C4::Members::GetMember( 'borrowernumber'=>$borrowernumber );
3619 my $item = C4::Items::GetItem( $itemnum );
3620 my $old_note = ($item->{'paidfor'} && ($item->{'paidfor'} ne q{})) ? $item->{'paidfor'}.' / ' : q{};
3621 my @datearr = localtime(time);
3622 my $date = ( 1900 + $datearr[5] ) . "-" . ( $datearr[4] + 1 ) . "-" . $datearr[3];
3623 my $bor = "$borrower->{'firstname'} $borrower->{'surname'} $borrower->{'cardnumber'}";
3624 ModItem({ paidfor => $old_note."Paid for by $bor $date" }, undef, $itemnum);
3628 sub LostItem{
3629 my ($itemnumber, $mark_returned) = @_;
3631 my $dbh = C4::Context->dbh();
3632 my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title
3633 FROM issues
3634 JOIN items USING (itemnumber)
3635 JOIN biblio USING (biblionumber)
3636 WHERE issues.itemnumber=?");
3637 $sth->execute($itemnumber);
3638 my $issues=$sth->fetchrow_hashref();
3640 # If a borrower lost the item, add a replacement cost to the their record
3641 if ( my $borrowernumber = $issues->{borrowernumber} ){
3642 my $borrower = C4::Members::GetMemberDetails( $borrowernumber );
3644 if (C4::Context->preference('WhenLostForgiveFine')){
3645 my $fix = _FixOverduesOnReturn($borrowernumber, $itemnumber, 1, 0); # 1, 0 = exemptfine, no-dropbox
3646 defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $itemnumber...) failed!"; # zero is OK, check defined
3648 if (C4::Context->preference('WhenLostChargeReplacementFee')){
3649 C4::Accounts::chargelostitem($borrowernumber, $itemnumber, $issues->{'replacementprice'}, "Lost Item $issues->{'title'} $issues->{'barcode'}");
3650 #FIXME : Should probably have a way to distinguish this from an item that really was returned.
3651 #warn " $issues->{'borrowernumber'} / $itemnumber ";
3654 MarkIssueReturned($borrowernumber,$itemnumber,undef,undef,$borrower->{'privacy'}) if $mark_returned;
3658 sub GetOfflineOperations {
3659 my $dbh = C4::Context->dbh;
3660 my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE branchcode=? ORDER BY timestamp");
3661 $sth->execute(C4::Context->userenv->{'branch'});
3662 my $results = $sth->fetchall_arrayref({});
3663 return $results;
3666 sub GetOfflineOperation {
3667 my $operationid = shift;
3668 return unless $operationid;
3669 my $dbh = C4::Context->dbh;
3670 my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE operationid=?");
3671 $sth->execute( $operationid );
3672 return $sth->fetchrow_hashref;
3675 sub AddOfflineOperation {
3676 my ( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount ) = @_;
3677 my $dbh = C4::Context->dbh;
3678 my $sth = $dbh->prepare("INSERT INTO pending_offline_operations (userid, branchcode, timestamp, action, barcode, cardnumber, amount) VALUES(?,?,?,?,?,?,?)");
3679 $sth->execute( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount );
3680 return "Added.";
3683 sub DeleteOfflineOperation {
3684 my $dbh = C4::Context->dbh;
3685 my $sth = $dbh->prepare("DELETE FROM pending_offline_operations WHERE operationid=?");
3686 $sth->execute( shift );
3687 return "Deleted.";
3690 sub ProcessOfflineOperation {
3691 my $operation = shift;
3693 my $report;
3694 if ( $operation->{action} eq 'return' ) {
3695 $report = ProcessOfflineReturn( $operation );
3696 } elsif ( $operation->{action} eq 'issue' ) {
3697 $report = ProcessOfflineIssue( $operation );
3698 } elsif ( $operation->{action} eq 'payment' ) {
3699 $report = ProcessOfflinePayment( $operation );
3702 DeleteOfflineOperation( $operation->{operationid} ) if $operation->{operationid};
3704 return $report;
3707 sub ProcessOfflineReturn {
3708 my $operation = shift;
3710 my $itemnumber = C4::Items::GetItemnumberFromBarcode( $operation->{barcode} );
3712 if ( $itemnumber ) {
3713 my $issue = GetOpenIssue( $itemnumber );
3714 if ( $issue ) {
3715 MarkIssueReturned(
3716 $issue->{borrowernumber},
3717 $itemnumber,
3718 undef,
3719 $operation->{timestamp},
3721 ModItem(
3722 { renewals => 0, onloan => undef },
3723 $issue->{'biblionumber'},
3724 $itemnumber
3726 return "Success.";
3727 } else {
3728 return "Item not issued.";
3730 } else {
3731 return "Item not found.";
3735 sub ProcessOfflineIssue {
3736 my $operation = shift;
3738 my $borrower = C4::Members::GetMemberDetails( undef, $operation->{cardnumber} ); # Get borrower from operation cardnumber
3740 if ( $borrower->{borrowernumber} ) {
3741 my $itemnumber = C4::Items::GetItemnumberFromBarcode( $operation->{barcode} );
3742 unless ($itemnumber) {
3743 return "Barcode not found.";
3745 my $issue = GetOpenIssue( $itemnumber );
3747 if ( $issue and ( $issue->{borrowernumber} ne $borrower->{borrowernumber} ) ) { # Item already issued to another borrower, mark it returned
3748 MarkIssueReturned(
3749 $issue->{borrowernumber},
3750 $itemnumber,
3751 undef,
3752 $operation->{timestamp},
3755 AddIssue(
3756 $borrower,
3757 $operation->{'barcode'},
3758 undef,
3760 $operation->{timestamp},
3761 undef,
3763 return "Success.";
3764 } else {
3765 return "Borrower not found.";
3769 sub ProcessOfflinePayment {
3770 my $operation = shift;
3772 my $borrower = C4::Members::GetMemberDetails( undef, $operation->{cardnumber} ); # Get borrower from operation cardnumber
3773 my $amount = $operation->{amount};
3775 recordpayment( $borrower->{borrowernumber}, $amount );
3777 return "Success."
3781 =head2 TransferSlip
3783 TransferSlip($user_branch, $itemnumber, $barcode, $to_branch)
3785 Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
3787 =cut
3789 sub TransferSlip {
3790 my ($branch, $itemnumber, $barcode, $to_branch) = @_;
3792 my $item = GetItem( $itemnumber, $barcode )
3793 or return;
3795 my $pulldate = C4::Dates->new();
3797 return C4::Letters::GetPreparedLetter (
3798 module => 'circulation',
3799 letter_code => 'TRANSFERSLIP',
3800 branchcode => $branch,
3801 tables => {
3802 'branches' => $to_branch,
3803 'biblio' => $item->{biblionumber},
3804 'items' => $item,
3809 =head2 CheckIfIssuedToPatron
3811 CheckIfIssuedToPatron($borrowernumber, $biblionumber)
3813 Return 1 if any record item is issued to patron, otherwise return 0
3815 =cut
3817 sub CheckIfIssuedToPatron {
3818 my ($borrowernumber, $biblionumber) = @_;
3820 my $dbh = C4::Context->dbh;
3821 my $query = q|
3822 SELECT COUNT(*) FROM issues
3823 LEFT JOIN items ON items.itemnumber = issues.itemnumber
3824 WHERE items.biblionumber = ?
3825 AND issues.borrowernumber = ?
3827 my $is_issued = $dbh->selectrow_array($query, {}, $biblionumber, $borrowernumber );
3828 return 1 if $is_issued;
3829 return;
3832 =head2 IsItemIssued
3834 IsItemIssued( $itemnumber )
3836 Return 1 if the item is on loan, otherwise return 0
3838 =cut
3840 sub IsItemIssued {
3841 my $itemnumber = shift;
3842 my $dbh = C4::Context->dbh;
3843 my $sth = $dbh->prepare(q{
3844 SELECT COUNT(*)
3845 FROM issues
3846 WHERE itemnumber = ?
3848 $sth->execute($itemnumber);
3849 return $sth->fetchrow;
3852 =head2 GetAgeRestriction
3854 my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions, $borrower);
3855 my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions);
3857 if($daysToAgeRestriction <= 0) { #Borrower is allowed to access this material, as he is older or as old as the agerestriction }
3858 if($daysToAgeRestriction > 0) { #Borrower is this many days from meeting the agerestriction }
3860 @PARAM1 the koha.biblioitems.agerestriction value, like K18, PEGI 13, ...
3861 @PARAM2 a borrower-object with koha.borrowers.dateofbirth. (OPTIONAL)
3862 @RETURNS The age restriction age in years and the days to fulfill the age restriction for the given borrower.
3863 Negative days mean the borrower has gone past the age restriction age.
3865 =cut
3867 sub GetAgeRestriction {
3868 my ($record_restrictions, $borrower) = @_;
3869 my $markers = C4::Context->preference('AgeRestrictionMarker');
3871 # Split $record_restrictions to something like FSK 16 or PEGI 6
3872 my @values = split ' ', uc($record_restrictions);
3873 return unless @values;
3875 # Search first occurence of one of the markers
3876 my @markers = split /\|/, uc($markers);
3877 return unless @markers;
3879 my $index = 0;
3880 my $restriction_year = 0;
3881 for my $value (@values) {
3882 $index++;
3883 for my $marker (@markers) {
3884 $marker =~ s/^\s+//; #remove leading spaces
3885 $marker =~ s/\s+$//; #remove trailing spaces
3886 if ( $marker eq $value ) {
3887 if ( $index <= $#values ) {
3888 $restriction_year += $values[$index];
3890 last;
3892 elsif ( $value =~ /^\Q$marker\E(\d+)$/ ) {
3894 # Perhaps it is something like "K16" (as in Finland)
3895 $restriction_year += $1;
3896 last;
3899 last if ( $restriction_year > 0 );
3902 #Check if the borrower is age restricted for this material and for how long.
3903 if ($restriction_year && $borrower) {
3904 if ( $borrower->{'dateofbirth'} ) {
3905 my @alloweddate = split /-/, $borrower->{'dateofbirth'};
3906 $alloweddate[0] += $restriction_year;
3908 #Prevent runime eror on leap year (invalid date)
3909 if ( ( $alloweddate[1] == 2 ) && ( $alloweddate[2] == 29 ) ) {
3910 $alloweddate[2] = 28;
3913 #Get how many days the borrower has to reach the age restriction
3914 my $daysToAgeRestriction = Date_to_Days(@alloweddate) - Date_to_Days(Today);
3915 #Negative days means the borrower went past the age restriction age
3916 return ($restriction_year, $daysToAgeRestriction);
3920 return ($restriction_year);
3925 =head2 GetPendingOnSiteCheckouts
3927 =cut
3929 sub GetPendingOnSiteCheckouts {
3930 my $dbh = C4::Context->dbh;
3931 return $dbh->selectall_arrayref(q|
3932 SELECT
3933 items.barcode,
3934 items.biblionumber,
3935 items.itemnumber,
3936 items.itemnotes,
3937 items.itemcallnumber,
3938 items.location,
3939 issues.date_due,
3940 issues.branchcode,
3941 issues.date_due < NOW() AS is_overdue,
3942 biblio.author,
3943 biblio.title,
3944 borrowers.firstname,
3945 borrowers.surname,
3946 borrowers.cardnumber,
3947 borrowers.borrowernumber
3948 FROM items
3949 LEFT JOIN issues ON items.itemnumber = issues.itemnumber
3950 LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
3951 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
3952 WHERE issues.onsite_checkout = 1
3953 |, { Slice => {} } );
3956 __END__
3958 =head1 AUTHOR
3960 Koha Development Team <http://koha-community.org/>
3962 =cut