Bug 29483: Check ItemsAnyAvailableAndNotRestricted once per patron
[koha.git] / C4 / Circulation.pm
1 package C4::Circulation;
2
3 # Copyright 2000-2002 Katipo Communications
4 # copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
17 #
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>.
20
21 use Modern::Perl;
22 use DateTime;
23 use POSIX qw( floor );
24 use YAML::XS;
25 use Encode;
26
27 use Koha::DateUtils qw( dt_from_string output_pref );
28 use C4::Context;
29 use C4::Stats qw( UpdateStats );
30 use C4::Reserves qw( CheckReserves CanItemBeReserved MoveReserve ModReserve ModReserveMinusPriority RevertWaitingStatus IsItemOnHoldAndFound IsAvailableForItemLevelRequest ItemsAnyAvailableAndNotRestricted );
31 use C4::Biblio qw( UpdateTotalIssues );
32 use C4::Items qw( ModItemTransfer ModDateLastSeen CartToShelf );
33 use C4::Accounts;
34 use C4::ItemCirculationAlertPreference;
35 use C4::Message;
36 use C4::Log qw( logaction ); # logaction
37 use C4::Overdues;
38 use C4::RotatingCollections qw(GetCollectionItemBranches);
39 use Algorithm::CheckDigits qw( CheckDigits );
40
41 use Data::Dumper qw( Dumper );
42 use Koha::Account;
43 use Koha::AuthorisedValues;
44 use Koha::Biblioitems;
45 use Koha::DateUtils qw( dt_from_string output_pref );
46 use Koha::Calendar;
47 use Koha::Checkouts;
48 use Koha::Illrequests;
49 use Koha::Items;
50 use Koha::Patrons;
51 use Koha::Patron::Debarments qw( DelUniqueDebarment GetDebarments AddUniqueDebarment );
52 use Koha::Database;
53 use Koha::Libraries;
54 use Koha::Account::Lines;
55 use Koha::Holds;
56 use Koha::Account::Lines;
57 use Koha::Account::Offsets;
58 use Koha::Config::SysPrefs;
59 use Koha::Charges::Fees;
60 use Koha::Config::SysPref;
61 use Koha::Checkouts::ReturnClaims;
62 use Koha::SearchEngine::Indexer;
63 use Koha::Exceptions::Checkout;
64 use Koha::Plugins;
65 use Koha::Recalls;
66 use Carp qw( carp );
67 use List::MoreUtils qw( any );
68 use Scalar::Util qw( looks_like_number );
69 use Date::Calc qw( Date_to_Days );
70 our (@ISA, @EXPORT_OK);
71 BEGIN {
72
73     require Exporter;
74     @ISA = qw(Exporter);
75
76     # FIXME subs that should probably be elsewhere
77     push @EXPORT_OK, qw(
78       barcodedecode
79       LostItem
80       ReturnLostItem
81       GetPendingOnSiteCheckouts
82
83       CanBookBeIssued
84       checkHighHolds
85       CanBookBeRenewed
86       AddIssue
87       GetLoanLength
88       GetHardDueDate
89       AddRenewal
90       GetRenewCount
91       GetSoonestRenewDate
92       GetLatestAutoRenewDate
93       GetIssuingCharges
94       AddIssuingCharge
95       GetBranchBorrowerCircRule
96       GetBranchItemRule
97       GetBiblioIssues
98       GetOpenIssue
99       GetUpcomingDueIssues
100       CheckIfIssuedToPatron
101       IsItemIssued
102       GetAgeRestriction
103       GetTopIssues
104
105       AddReturn
106       MarkIssueReturned
107
108       transferbook
109       TooMany
110       GetTransfers
111       GetTransfersFromTo
112       updateWrongTransfer
113       CalcDateDue
114       CheckValidBarcode
115       IsBranchTransferAllowed
116       CreateBranchTransferLimit
117       DeleteBranchTransferLimits
118       TransferSlip
119
120       GetOfflineOperations
121       GetOfflineOperation
122       AddOfflineOperation
123       DeleteOfflineOperation
124       ProcessOfflineOperation
125       ProcessOfflinePayment
126     );
127     push @EXPORT_OK, '_GetCircControlBranch';    # This is wrong!
128 }
129
130 =head1 NAME
131
132 C4::Circulation - Koha circulation module
133
134 =head1 SYNOPSIS
135
136 use C4::Circulation;
137
138 =head1 DESCRIPTION
139
140 The functions in this module deal with circulation, issues, and
141 returns, as well as general information about the library.
142 Also deals with inventory.
143
144 =head1 FUNCTIONS
145
146 =head2 barcodedecode
147
148   $str = &barcodedecode($barcode, [$filter]);
149
150 Generic filter function for barcode string.
151 Called on every circ if the System Pref itemBarcodeInputFilter is set.
152 Will do some manipulation of the barcode for systems that deliver a barcode
153 to circulation.pl that differs from the barcode stored for the item.
154 For proper functioning of this filter, calling the function on the 
155 correct barcode string (items.barcode) should return an unaltered barcode.
156
157 The optional $filter argument is to allow for testing or explicit 
158 behavior that ignores the System Pref.  Valid values are the same as the 
159 System Pref options.
160
161 =cut
162
163 # FIXME -- the &decode fcn below should be wrapped into this one.
164 # FIXME -- these plugins should be moved out of Circulation.pm
165 #
166 sub barcodedecode {
167     my ($barcode, $filter) = @_;
168     my $branch = C4::Context::mybranch();
169     $filter = C4::Context->preference('itemBarcodeInputFilter') unless $filter;
170     Koha::Plugins->call('item_barcode_transform',  \$barcode );
171     $filter or return $barcode;     # ensure filter is defined, else return untouched barcode
172         if ($filter eq 'whitespace') {
173                 $barcode =~ s/\s//g;
174         } elsif ($filter eq 'cuecat') {
175                 chomp($barcode);
176             my @fields = split( /\./, $barcode );
177             my @results = map( C4::Circulation::_decode($_), @fields[ 1 .. $#fields ] );
178             ($#results == 2) and return $results[2];
179         } elsif ($filter eq 'T-prefix') {
180                 if ($barcode =~ /^[Tt](\d)/) {
181                         (defined($1) and $1 eq '0') and return $barcode;
182             $barcode = substr($barcode, 2) + 0;     # FIXME: probably should be substr($barcode, 1)
183                 }
184         return sprintf("T%07d", $barcode);
185         # FIXME: $barcode could be "T1", causing warning: substr outside of string
186         # Why drop the nonzero digit after the T?
187         # Why pass non-digits (or empty string) to "T%07d"?
188         } elsif ($filter eq 'libsuite8') {
189                 unless($barcode =~ m/^($branch)-/i){    #if barcode starts with branch code its in Koha style. Skip it.
190                         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
191                                 $barcode =~ s/^[0]*(\d+)$/$branch-b-$1/i;
192                         }else{
193                                 $barcode =~ s/^(\D+)[0]*(\d+)$/$branch-$1-$2/i;
194                         }
195                 }
196     } elsif ($filter eq 'EAN13') {
197         my $ean = CheckDigits('ean');
198         if ( $ean->is_valid($barcode) ) {
199             #$barcode = sprintf('%013d',$barcode); # this doesn't work on 32-bit systems
200             $barcode = '0' x ( 13 - length($barcode) ) . $barcode;
201         } else {
202             warn "# [$barcode] not valid EAN-13/UPC-A\n";
203         }
204         }
205     return $barcode;    # return barcode, modified or not
206 }
207
208 =head2 _decode
209
210   $str = &_decode($chunk);
211
212 Decodes a segment of a string emitted by a CueCat barcode scanner and
213 returns it.
214
215 FIXME: Should be replaced with Barcode::Cuecat from CPAN
216 or Javascript based decoding on the client side.
217
218 =cut
219
220 sub _decode {
221     my ($encoded) = @_;
222     my $seq =
223       'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-';
224     my @s = map { index( $seq, $_ ); } split( //, $encoded );
225     my $l = ( $#s + 1 ) % 4;
226     if ($l) {
227         if ( $l == 1 ) {
228             # warn "Error: Cuecat decode parsing failed!";
229             return;
230         }
231         $l = 4 - $l;
232         $#s += $l;
233     }
234     my $r = '';
235     while ( $#s >= 0 ) {
236         my $n = ( ( $s[0] << 6 | $s[1] ) << 6 | $s[2] ) << 6 | $s[3];
237         $r .=
238             chr( ( $n >> 16 ) ^ 67 )
239          .chr( ( $n >> 8 & 255 ) ^ 67 )
240          .chr( ( $n & 255 ) ^ 67 );
241         @s = @s[ 4 .. $#s ];
242     }
243     $r = substr( $r, 0, length($r) - $l );
244     return $r;
245 }
246
247 =head2 transferbook
248
249   ($dotransfer, $messages, $iteminformation) = &transferbook({
250                                                    from_branch => $frombranch
251                                                    to_branch => $tobranch,
252                                                    barcode => $barcode,
253                                                    ignore_reserves => $ignore_reserves,
254                                                    trigger => $trigger
255                                                 });
256
257 Transfers an item to a new branch. If the item is currently on loan, it is automatically returned before the actual transfer.
258
259 C<$fbr> is the code for the branch initiating the transfer.
260 C<$tbr> is the code for the branch to which the item should be transferred.
261
262 C<$barcode> is the barcode of the item to be transferred.
263
264 If C<$ignore_reserves> is true, C<&transferbook> ignores reserves.
265 Otherwise, if an item is reserved, the transfer fails.
266
267 C<$trigger> is the enum value for what triggered the transfer.
268
269 Returns three values:
270
271 =over
272
273 =item $dotransfer 
274
275 is true if the transfer was successful.
276
277 =item $messages
278
279 is a reference-to-hash which may have any of the following keys:
280
281 =over
282
283 =item C<BadBarcode>
284
285 There is no item in the catalog with the given barcode. The value is C<$barcode>.
286
287 =item C<DestinationEqualsHolding>
288
289 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.
290
291 =item C<WasReturned>
292
293 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.
294
295 =item C<ResFound>
296
297 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>.
298
299 =item C<WasTransferred>
300
301 The item was eligible to be transferred. Barring problems communicating with the database, the transfer should indeed have succeeded. The value should be ignored.
302
303 =item C<RecallPlacedAtHoldingBranch>
304
305 A recall for this item was found, and the transfer has already been completed as the item's branch matches the recall's pickup branch.
306
307 =item C<RecallFound>
308
309 A recall for this item was found, and the item needs to be transferred to the recall's pickup branch.
310
311 =back
312
313 =back
314
315 =cut
316
317 sub transferbook {
318     my $params = shift;
319     my $tbr      = $params->{to_branch};
320     my $fbr      = $params->{from_branch};
321     my $ignoreRs = $params->{ignore_reserves};
322     my $barcode  = $params->{barcode};
323     my $trigger  = $params->{trigger};
324     my $messages;
325     my $dotransfer      = 1;
326     my $item = Koha::Items->find( { barcode => $barcode } );
327
328     Koha::Exceptions::MissingParameter->throw(
329         "Missing mandatory parameter: from_branch")
330       unless $fbr;
331
332     Koha::Exceptions::MissingParameter->throw(
333         "Missing mandatory parameter: to_branch")
334       unless $tbr;
335
336     # bad barcode..
337     unless ( $item ) {
338         $messages->{'BadBarcode'} = $barcode;
339         $dotransfer = 0;
340         return ( $dotransfer, $messages );
341     }
342
343     my $itemnumber = $item->itemnumber;
344     # get branches of book...
345     my $hbr = $item->homebranch;
346
347     # if using Branch Transfer Limits
348     if ( C4::Context->preference("UseBranchTransferLimits") == 1 ) {
349         my $code = C4::Context->preference("BranchTransferLimitsType") eq 'ccode' ? $item->ccode : $item->biblio->biblioitem->itemtype; # BranchTransferLimitsType is 'ccode' or 'itemtype'
350         if ( C4::Context->preference("item-level_itypes") && C4::Context->preference("BranchTransferLimitsType") eq 'itemtype' ) {
351             if ( ! IsBranchTransferAllowed( $tbr, $fbr, $item->itype ) ) {
352                 $messages->{'NotAllowed'} = $tbr . "::" . $item->itype;
353                 $dotransfer = 0;
354             }
355         } elsif ( ! IsBranchTransferAllowed( $tbr, $fbr, $code ) ) {
356             $messages->{'NotAllowed'} = $tbr . "::" . $code;
357             $dotransfer = 0;
358         }
359     }
360
361     # can't transfer book if is already there....
362     if ( $fbr eq $tbr ) {
363         $messages->{'DestinationEqualsHolding'} = 1;
364         $dotransfer = 0;
365     }
366
367     # check if it is still issued to someone, return it...
368     my $issue = Koha::Checkouts->find({ itemnumber => $itemnumber });
369     if ( $issue ) {
370         AddReturn( $barcode, $fbr );
371         $messages->{'WasReturned'} = $issue->borrowernumber;
372     }
373
374     # find reserves.....
375     # That'll save a database query.
376     my ( $resfound, $resrec, undef ) =
377       CheckReserves( $itemnumber );
378     if ( $resfound ) {
379         $resrec->{'ResFound'} = $resfound;
380         $messages->{'ResFound'} = $resrec;
381         $dotransfer = 0 unless $ignoreRs;
382     }
383
384     # find recall
385     if ( C4::Context->preference('UseRecalls') ) {
386         my $recall = Koha::Recalls->find({ itemnumber => $itemnumber, status => 'in_transit' });
387         if ( defined $recall ) {
388             # do a transfer if the recall branch is different to the item holding branch
389             if ( $recall->branchcode eq $fbr ) {
390                 $dotransfer = 0;
391                 $messages->{'RecallPlacedAtHoldingBranch'} = 1;
392             } else {
393                 $dotransfer = 1;
394                 $messages->{'RecallFound'} = $recall;
395             }
396         }
397     }
398
399     #actually do the transfer....
400     if ($dotransfer) {
401         ModItemTransfer( $itemnumber, $fbr, $tbr, $trigger );
402
403         # don't need to update MARC anymore, we do it in batch now
404         $messages->{'WasTransfered'} = $tbr;
405
406     }
407     ModDateLastSeen( $itemnumber );
408     return ( $dotransfer, $messages );
409 }
410
411
412 sub TooMany {
413     my $borrower        = shift;
414     my $item_object = shift;
415     my $params = shift;
416     my $onsite_checkout = $params->{onsite_checkout} || 0;
417     my $switch_onsite_checkout = $params->{switch_onsite_checkout} || 0;
418     my $cat_borrower    = $borrower->{'categorycode'};
419     my $dbh             = C4::Context->dbh;
420     # Get which branchcode we need
421     my $branch = _GetCircControlBranch($item_object->unblessed,$borrower);
422     my $type = $item_object->effective_itemtype;
423
424     my ($type_object, $parent_type, $parent_maxissueqty_rule);
425     $type_object = Koha::ItemTypes->find( $type );
426     $parent_type = $type_object->parent_type if $type_object;
427     my $child_types = Koha::ItemTypes->search({ parent_type => $type });
428     # Find any children if we are a parent_type;
429
430     # given branch, patron category, and item type, determine
431     # applicable issuing rule
432
433     $parent_maxissueqty_rule = Koha::CirculationRules->get_effective_rule(
434         {
435             categorycode => $cat_borrower,
436             itemtype     => $parent_type,
437             branchcode   => $branch,
438             rule_name    => 'maxissueqty',
439         }
440     ) if $parent_type;
441     # If the parent rule is for default type we discount it
442     $parent_maxissueqty_rule = undef if $parent_maxissueqty_rule && !defined $parent_maxissueqty_rule->itemtype;
443
444     my $maxissueqty_rule = Koha::CirculationRules->get_effective_rule(
445         {
446             categorycode => $cat_borrower,
447             itemtype     => $type,
448             branchcode   => $branch,
449             rule_name    => 'maxissueqty',
450         }
451     );
452
453     my $maxonsiteissueqty_rule = Koha::CirculationRules->get_effective_rule(
454         {
455             categorycode => $cat_borrower,
456             itemtype     => $type,
457             branchcode   => $branch,
458             rule_name    => 'maxonsiteissueqty',
459         }
460     );
461
462
463     my $patron = Koha::Patrons->find($borrower->{borrowernumber});
464     # if a rule is found and has a loan limit set, count
465     # how many loans the patron already has that meet that
466     # rule
467     if (defined($maxissueqty_rule) and $maxissueqty_rule->rule_value ne "") {
468
469         my $checkouts;
470         if ( $maxissueqty_rule->branchcode ) {
471             if ( C4::Context->preference('CircControl') eq 'PickupLibrary' ) {
472                 $checkouts = $patron->checkouts->search(
473                     { 'me.branchcode' => $maxissueqty_rule->branchcode } );
474             } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
475                 $checkouts = $patron->checkouts; # if branch is the patron's home branch, then count all loans by patron
476             } else {
477                 $checkouts = $patron->checkouts->search(
478                     { 'item.homebranch' => $maxissueqty_rule->branchcode } );
479             }
480         } else {
481             $checkouts = $patron->checkouts; # if rule is not branch specific then count all loans by patron
482         }
483         $checkouts = $checkouts->search(undef, { prefetch => 'item' });
484
485         my $sum_checkouts;
486         my $rule_itemtype = $maxissueqty_rule->itemtype;
487
488         my @types;
489         unless ( $rule_itemtype ) {
490             # matching rule has the default item type, so count only
491             # those existing loans that don't fall under a more
492             # specific rule
493             @types = Koha::CirculationRules->search(
494                 {
495                     branchcode => $maxissueqty_rule->branchcode,
496                     categorycode => [ $maxissueqty_rule->categorycode, $cat_borrower ],
497                     itemtype  => { '!=' => undef },
498                     rule_name => 'maxissueqty'
499                 }
500             )->get_column('itemtype');
501         } else {
502             if ( $parent_maxissueqty_rule ) {
503                 # if we have a parent item type then we count loans of the
504                 # specific item type or its siblings or parent
505                 my $children = Koha::ItemTypes->search({ parent_type => $parent_type });
506                 @types = $children->get_column('itemtype');
507                 push @types, $parent_type;
508             } elsif ( $child_types ) {
509                 # If we are a parent type, we need to count all child types and our own type
510                 @types = $child_types->get_column('itemtype');
511                 push @types, $type; # And don't forget to count our own types
512             } else {
513                 # Otherwise only count the specific itemtype
514                 push @types, $type;
515             }
516         }
517
518         while ( my $c = $checkouts->next ) {
519             my $itemtype = $c->item->effective_itemtype;
520
521             unless ( $rule_itemtype ) {
522                 next if grep {$_ eq $itemtype} @types;
523             } else {
524                 next unless grep {$_ eq $itemtype} @types;
525             }
526
527             $sum_checkouts->{total}++;
528             $sum_checkouts->{onsite_checkouts}++ if $c->onsite_checkout;
529             $sum_checkouts->{itemtype}->{$itemtype}++;
530         }
531
532         my $checkout_count_type = $sum_checkouts->{itemtype}->{$type} || 0;
533         my $checkout_count = $sum_checkouts->{total} || 0;
534         my $onsite_checkout_count = $sum_checkouts->{onsite_checkouts} || 0;
535
536         my $checkout_rules = {
537             checkout_count               => $checkout_count,
538             onsite_checkout_count        => $onsite_checkout_count,
539             onsite_checkout              => $onsite_checkout,
540             max_checkouts_allowed        => $maxissueqty_rule ? $maxissueqty_rule->rule_value : undef,
541             max_onsite_checkouts_allowed => $maxonsiteissueqty_rule ? $maxonsiteissueqty_rule->rule_value : undef,
542             switch_onsite_checkout       => $switch_onsite_checkout,
543         };
544         # If parent rules exists
545         if ( defined($parent_maxissueqty_rule) and defined($parent_maxissueqty_rule->rule_value) ){
546             $checkout_rules->{max_checkouts_allowed} = $parent_maxissueqty_rule ? $parent_maxissueqty_rule->rule_value : undef;
547             my $qty_over = _check_max_qty($checkout_rules);
548             return $qty_over if defined $qty_over;
549
550             # If the parent rule is less than or equal to the child, we only need check the parent
551             if( $maxissueqty_rule->rule_value < $parent_maxissueqty_rule->rule_value && defined($maxissueqty_rule->itemtype) ) {
552                 $checkout_rules->{checkout_count} = $checkout_count_type;
553                 $checkout_rules->{max_checkouts_allowed} = $maxissueqty_rule ? $maxissueqty_rule->rule_value : undef;
554                 my $qty_over = _check_max_qty($checkout_rules);
555                 return $qty_over if defined $qty_over;
556             }
557         } else {
558             my $qty_over = _check_max_qty($checkout_rules);
559             return $qty_over if defined $qty_over;
560         }
561     }
562
563     # Now count total loans against the limit for the branch
564     my $branch_borrower_circ_rule = GetBranchBorrowerCircRule($branch, $cat_borrower);
565     if (defined($branch_borrower_circ_rule->{patron_maxissueqty}) and $branch_borrower_circ_rule->{patron_maxissueqty} ne '') {
566         my $checkouts;
567         if ( C4::Context->preference('CircControl') eq 'PickupLibrary' ) {
568             $checkouts = $patron->checkouts->search(
569                 { 'me.branchcode' => $branch} );
570         } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
571             $checkouts = $patron->checkouts; # if branch is the patron's home branch, then count all loans by patron
572         } else {
573             $checkouts = $patron->checkouts->search(
574                 { 'item.homebranch' => $branch},
575                 { prefetch          => 'item' } );
576         }
577
578         my $checkout_count = $checkouts->count;
579         my $onsite_checkout_count = $checkouts->search({ onsite_checkout => 1 })->count;
580         my $max_checkouts_allowed = $branch_borrower_circ_rule->{patron_maxissueqty};
581         my $max_onsite_checkouts_allowed = $branch_borrower_circ_rule->{patron_maxonsiteissueqty} || undef;
582
583         my $qty_over = _check_max_qty(
584             {
585                 checkout_count               => $checkout_count,
586                 onsite_checkout_count        => $onsite_checkout_count,
587                 onsite_checkout              => $onsite_checkout,
588                 max_checkouts_allowed        => $max_checkouts_allowed,
589                 max_onsite_checkouts_allowed => $max_onsite_checkouts_allowed,
590                 switch_onsite_checkout       => $switch_onsite_checkout
591             }
592         );
593         return $qty_over if defined $qty_over;
594     }
595
596     if ( not defined( $maxissueqty_rule ) and not defined($branch_borrower_circ_rule->{patron_maxissueqty}) ) {
597         return { reason => 'NO_RULE_DEFINED', max_allowed => 0 };
598     }
599
600     # OK, the patron can issue !!!
601     return;
602 }
603
604 sub _check_max_qty {
605     my $params                       = shift;
606     my $checkout_count               = $params->{checkout_count};
607     my $onsite_checkout_count        = $params->{onsite_checkout_count};
608     my $onsite_checkout              = $params->{onsite_checkout};
609     my $max_checkouts_allowed        = $params->{max_checkouts_allowed};
610     my $max_onsite_checkouts_allowed = $params->{max_onsite_checkouts_allowed};
611     my $switch_onsite_checkout       = $params->{switch_onsite_checkout};
612
613     if ( $onsite_checkout and defined $max_onsite_checkouts_allowed ) {
614         if ( $max_onsite_checkouts_allowed eq '' ) { return; }
615         if ( $onsite_checkout_count >= $max_onsite_checkouts_allowed ) {
616             return {
617                 reason      => 'TOO_MANY_ONSITE_CHECKOUTS',
618                 count       => $onsite_checkout_count,
619                 max_allowed => $max_onsite_checkouts_allowed,
620             };
621         }
622     }
623     if ( C4::Context->preference('ConsiderOnSiteCheckoutsAsNormalCheckouts') ) {
624         if ( $max_checkouts_allowed eq '' ) { return; }
625         my $delta = $switch_onsite_checkout ? 1 : 0;
626         if ( $checkout_count >= $max_checkouts_allowed + $delta ) {
627             return {
628                 reason      => 'TOO_MANY_CHECKOUTS',
629                 count       => $checkout_count,
630                 max_allowed => $max_checkouts_allowed,
631             };
632         }
633     }
634     elsif ( not $onsite_checkout ) {
635         if ( $max_checkouts_allowed eq '' ) { return; }
636         if (
637             $checkout_count - $onsite_checkout_count >= $max_checkouts_allowed )
638         {
639             return {
640                 reason      => 'TOO_MANY_CHECKOUTS',
641                 count       => $checkout_count - $onsite_checkout_count,
642                 max_allowed => $max_checkouts_allowed,
643             };
644         }
645     }
646
647     return;
648 }
649
650 =head2 CanBookBeIssued
651
652   ( $issuingimpossible, $needsconfirmation, [ $alerts ] ) =  CanBookBeIssued( $patron,
653                       $barcode, $duedate, $inprocess, $ignore_reserves, $params );
654
655 Check if a book can be issued.
656
657 C<$issuingimpossible> and C<$needsconfirmation> are hashrefs.
658
659 IMPORTANT: The assumption by users of this routine is that causes blocking
660 the issue are keyed by uppercase labels and other returned
661 data is keyed in lower case!
662
663 =over 4
664
665 =item C<$patron> is a Koha::Patron
666
667 =item C<$barcode> is the bar code of the book being issued.
668
669 =item C<$duedates> is a DateTime object.
670
671 =item C<$inprocess> boolean switch
672
673 =item C<$ignore_reserves> boolean switch
674
675 =item C<$params> Hashref of additional parameters
676
677 Available keys:
678     override_high_holds - Ignore high holds
679     onsite_checkout     - Checkout is an onsite checkout that will not leave the library
680
681 =back
682
683 Returns :
684
685 =over 4
686
687 =item C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
688 Possible values are :
689
690 =back
691
692 =head3 INVALID_DATE 
693
694 sticky due date is invalid
695
696 =head3 GNA
697
698 borrower gone with no address
699
700 =head3 CARD_LOST
701
702 borrower declared it's card lost
703
704 =head3 DEBARRED
705
706 borrower debarred
707
708 =head3 UNKNOWN_BARCODE
709
710 barcode unknown
711
712 =head3 NOT_FOR_LOAN
713
714 item is not for loan
715
716 =head3 WTHDRAWN
717
718 item withdrawn.
719
720 =head3 RESTRICTED
721
722 item is restricted (set by ??)
723
724 C<$needsconfirmation> a reference to a hash. It contains reasons why the loan 
725 could be prevented, but ones that can be overriden by the operator.
726
727 Possible values are :
728
729 =head3 DEBT
730
731 borrower has debts.
732
733 =head3 RENEW_ISSUE
734
735 renewing, not issuing
736
737 =head3 ISSUED_TO_ANOTHER
738
739 issued to someone else.
740
741 =head3 RESERVED
742
743 reserved for someone else.
744
745 =head3 TRANSFERRED
746
747 reserved and being transferred for someone else.
748
749 =head3 INVALID_DATE
750
751 sticky due date is invalid or due date in the past
752
753 =head3 TOO_MANY
754
755 if the borrower borrows to much things
756
757 =head3 RECALLED
758
759 recalled by someone else
760
761 =cut
762
763 sub CanBookBeIssued {
764     my ( $patron, $barcode, $duedate, $inprocess, $ignore_reserves, $params ) = @_;
765     my %needsconfirmation;    # filled with problems that needs confirmations
766     my %issuingimpossible;    # filled with problems that causes the issue to be IMPOSSIBLE
767     my %alerts;               # filled with messages that shouldn't stop issuing, but the librarian should be aware of.
768     my %messages;             # filled with information messages that should be displayed.
769
770     my $onsite_checkout     = $params->{onsite_checkout}     || 0;
771     my $override_high_holds = $params->{override_high_holds} || 0;
772
773     my $item_object = Koha::Items->find({barcode => $barcode });
774
775     # MANDATORY CHECKS - unless item exists, nothing else matters
776     unless ( $item_object ) {
777         $issuingimpossible{UNKNOWN_BARCODE} = 1;
778     }
779     return ( \%issuingimpossible, \%needsconfirmation ) if %issuingimpossible;
780
781     my $item_unblessed = $item_object->unblessed; # Transition...
782     my $issue = $item_object->checkout;
783     my $biblio = $item_object->biblio;
784
785     my $biblioitem = $biblio->biblioitem;
786     my $effective_itemtype = $item_object->effective_itemtype;
787     my $dbh             = C4::Context->dbh;
788     my $patron_unblessed = $patron->unblessed;
789
790     my $circ_library = Koha::Libraries->find( _GetCircControlBranch($item_unblessed, $patron_unblessed) );
791     #
792     # DUE DATE is OK ? -- should already have checked.
793     #
794     if ($duedate && ref $duedate ne 'DateTime') {
795         $duedate = dt_from_string($duedate);
796     }
797     my $now = dt_from_string();
798     unless ( $duedate ) {
799         my $issuedate = $now->clone();
800
801         $duedate = CalcDateDue( $issuedate, $effective_itemtype, $circ_library->branchcode, $patron_unblessed );
802
803         # Offline circ calls AddIssue directly, doesn't run through here
804         #  So issuingimpossible should be ok.
805     }
806
807     my $fees = Koha::Charges::Fees->new(
808         {
809             patron    => $patron,
810             library   => $circ_library,
811             item      => $item_object,
812             to_date   => $duedate,
813         }
814     );
815
816     if ($duedate) {
817         my $today = $now->clone();
818         $today->truncate( to => 'minute');
819         if (DateTime->compare($duedate,$today) == -1 ) { # duedate cannot be before now
820             $needsconfirmation{INVALID_DATE} = output_pref($duedate);
821         }
822     } else {
823             $issuingimpossible{INVALID_DATE} = output_pref($duedate);
824     }
825
826     #
827     # BORROWER STATUS
828     #
829     if ( $patron->category->category_type eq 'X' && (  $item_object->barcode  )) {
830         # stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1  .
831         C4::Stats::UpdateStats({
832                      branch => C4::Context->userenv->{'branch'},
833                      type => 'localuse',
834                      itemnumber => $item_object->itemnumber,
835                      itemtype => $effective_itemtype,
836                      borrowernumber => $patron->borrowernumber,
837                      ccode => $item_object->ccode}
838                     );
839         ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item
840         return( { STATS => 1 }, {});
841     }
842
843     if ( $patron->gonenoaddress && $patron->gonenoaddress == 1 ) {
844         $issuingimpossible{GNA} = 1;
845     }
846
847     if ( $patron->lost && $patron->lost == 1 ) {
848         $issuingimpossible{CARD_LOST} = 1;
849     }
850     if ( $patron->is_debarred ) {
851         $issuingimpossible{DEBARRED} = 1;
852     }
853
854     if ( $patron->is_expired ) {
855         $issuingimpossible{EXPIRED} = 1;
856     }
857
858     #
859     # BORROWER STATUS
860     #
861
862     # DEBTS
863     my $account = $patron->account;
864     my $balance = $account->balance;
865     my $non_issues_charges = $account->non_issues_charges;
866     my $other_charges = $balance - $non_issues_charges;
867
868     my $amountlimit = C4::Context->preference("noissuescharge");
869     my $allowfineoverride = C4::Context->preference("AllowFineOverride");
870     my $allfinesneedoverride = C4::Context->preference("AllFinesNeedOverride");
871
872     # Check the debt of this patrons guarantees
873     my $no_issues_charge_guarantees = C4::Context->preference("NoIssuesChargeGuarantees");
874     $no_issues_charge_guarantees = undef unless looks_like_number( $no_issues_charge_guarantees );
875     if ( defined $no_issues_charge_guarantees ) {
876         my @guarantees = map { $_->guarantee } $patron->guarantee_relationships->as_list;
877         my $guarantees_non_issues_charges = 0;
878         foreach my $g ( @guarantees ) {
879             $guarantees_non_issues_charges += $g->account->non_issues_charges;
880         }
881
882         if ( $guarantees_non_issues_charges > $no_issues_charge_guarantees && !$inprocess && !$allowfineoverride) {
883             $issuingimpossible{DEBT_GUARANTEES} = $guarantees_non_issues_charges;
884         } elsif ( $guarantees_non_issues_charges > $no_issues_charge_guarantees && !$inprocess && $allowfineoverride) {
885             $needsconfirmation{DEBT_GUARANTEES} = $guarantees_non_issues_charges;
886         } elsif ( $allfinesneedoverride && $guarantees_non_issues_charges > 0 && $guarantees_non_issues_charges <= $no_issues_charge_guarantees && !$inprocess ) {
887             $needsconfirmation{DEBT_GUARANTEES} = $guarantees_non_issues_charges;
888         }
889     }
890
891     # Check the debt of this patrons guarantors *and* the guarantees of those guarantors
892     my $no_issues_charge_guarantors = C4::Context->preference("NoIssuesChargeGuarantorsWithGuarantees");
893     $no_issues_charge_guarantors = undef unless looks_like_number( $no_issues_charge_guarantors );
894     if ( defined $no_issues_charge_guarantors ) {
895         my $guarantors_non_issues_charges = $patron->relationships_debt({ include_guarantors => 1, only_this_guarantor => 0, include_this_patron => 1 });
896
897         if ( $guarantors_non_issues_charges > $no_issues_charge_guarantors && !$inprocess && !$allowfineoverride) {
898             $issuingimpossible{DEBT_GUARANTORS} = $guarantors_non_issues_charges;
899         } elsif ( $guarantors_non_issues_charges > $no_issues_charge_guarantors && !$inprocess && $allowfineoverride) {
900             $needsconfirmation{DEBT_GUARANTORS} = $guarantors_non_issues_charges;
901         } elsif ( $allfinesneedoverride && $guarantors_non_issues_charges > 0 && $guarantors_non_issues_charges <= $no_issues_charge_guarantors && !$inprocess ) {
902             $needsconfirmation{DEBT_GUARANTORS} = $guarantors_non_issues_charges;
903         }
904     }
905
906     if ( C4::Context->preference("IssuingInProcess") ) {
907         if ( $non_issues_charges > $amountlimit && !$inprocess && !$allowfineoverride) {
908             $issuingimpossible{DEBT} = $non_issues_charges;
909         } elsif ( $non_issues_charges > $amountlimit && !$inprocess && $allowfineoverride) {
910             $needsconfirmation{DEBT} = $non_issues_charges;
911         } elsif ( $allfinesneedoverride && $non_issues_charges > 0 && $non_issues_charges <= $amountlimit && !$inprocess ) {
912             $needsconfirmation{DEBT} = $non_issues_charges;
913         }
914     }
915     else {
916         if ( $non_issues_charges > $amountlimit && $allowfineoverride ) {
917             $needsconfirmation{DEBT} = $non_issues_charges;
918         } elsif ( $non_issues_charges > $amountlimit && !$allowfineoverride) {
919             $issuingimpossible{DEBT} = $non_issues_charges;
920         } elsif ( $non_issues_charges > 0 && $allfinesneedoverride ) {
921             $needsconfirmation{DEBT} = $non_issues_charges;
922         }
923     }
924
925     if ($balance > 0 && $other_charges > 0) {
926         $alerts{OTHER_CHARGES} = sprintf( "%.2f", $other_charges );
927     }
928
929     $patron = Koha::Patrons->find( $patron->borrowernumber ); # FIXME Refetch just in case, to avoid regressions. But must not be needed
930     $patron_unblessed = $patron->unblessed;
931
932     if ( my $debarred_date = $patron->is_debarred ) {
933          # patron has accrued fine days or has a restriction. $count is a date
934         if ($debarred_date eq '9999-12-31') {
935             $issuingimpossible{USERBLOCKEDNOENDDATE} = $debarred_date;
936         }
937         else {
938             $issuingimpossible{USERBLOCKEDWITHENDDATE} = $debarred_date;
939         }
940     } elsif ( my $num_overdues = $patron->has_overdues ) {
941         ## patron has outstanding overdue loans
942         if ( C4::Context->preference("OverduesBlockCirc") eq 'block'){
943             $issuingimpossible{USERBLOCKEDOVERDUE} = $num_overdues;
944         }
945         elsif ( C4::Context->preference("OverduesBlockCirc") eq 'confirmation'){
946             $needsconfirmation{USERBLOCKEDOVERDUE} = $num_overdues;
947         }
948     }
949
950     # Additional Materials Check
951     if ( C4::Context->preference("CircConfirmItemParts")
952         && $item_object->materials )
953     {
954         $needsconfirmation{ADDITIONAL_MATERIALS} = $item_object->materials;
955     }
956
957     #
958     # CHECK IF BOOK ALREADY ISSUED TO THIS BORROWER
959     #
960     if ( $issue && $issue->borrowernumber eq $patron->borrowernumber ){
961
962         # Already issued to current borrower.
963         # If it is an on-site checkout if it can be switched to a normal checkout
964         # or ask whether the loan should be renewed
965
966         if ( $issue->onsite_checkout
967                 and C4::Context->preference('SwitchOnSiteCheckouts') ) {
968             $messages{ONSITE_CHECKOUT_WILL_BE_SWITCHED} = 1;
969         } else {
970             my ($CanBookBeRenewed,$renewerror) = CanBookBeRenewed(
971                 $patron->borrowernumber,
972                 $item_object->itemnumber,
973             );
974             if ( $CanBookBeRenewed == 0 ) {    # no more renewals allowed
975                 if ( $renewerror eq 'onsite_checkout' ) {
976                     $issuingimpossible{NO_RENEWAL_FOR_ONSITE_CHECKOUTS} = 1;
977                 }
978                 else {
979                     $issuingimpossible{NO_MORE_RENEWALS} = 1;
980                 }
981             }
982             else {
983                 $needsconfirmation{RENEW_ISSUE} = 1;
984             }
985         }
986     }
987     elsif ( $issue ) {
988
989         # issued to someone else
990
991         my $patron = Koha::Patrons->find( $issue->borrowernumber );
992
993         my ( $can_be_returned, $message ) = CanBookBeReturned( $item_unblessed, C4::Context->userenv->{branch} );
994
995         unless ( $can_be_returned ) {
996             $issuingimpossible{RETURN_IMPOSSIBLE} = 1;
997             $issuingimpossible{branch_to_return} = $message;
998         } else {
999             if ( C4::Context->preference('AutoReturnCheckedOutItems') ) {
1000                 $alerts{RETURNED_FROM_ANOTHER} = { patron => $patron };
1001             } else {
1002             $needsconfirmation{ISSUED_TO_ANOTHER} = 1;
1003             $needsconfirmation{issued_firstname} = $patron->firstname;
1004             $needsconfirmation{issued_surname} = $patron->surname;
1005             $needsconfirmation{issued_cardnumber} = $patron->cardnumber;
1006             $needsconfirmation{issued_borrowernumber} = $patron->borrowernumber;
1007             }
1008         }
1009     }
1010
1011     # JB34 CHECKS IF BORROWERS DON'T HAVE ISSUE TOO MANY BOOKS
1012     #
1013     my $switch_onsite_checkout = (
1014           C4::Context->preference('SwitchOnSiteCheckouts')
1015       and $issue
1016       and $issue->onsite_checkout
1017       and $issue->borrowernumber == $patron->borrowernumber ? 1 : 0 );
1018     my $toomany = TooMany( $patron_unblessed, $item_object, { onsite_checkout => $onsite_checkout, switch_onsite_checkout => $switch_onsite_checkout, } );
1019     # if TooMany max_allowed returns 0 the user doesn't have permission to check out this book
1020     if ( $toomany && not exists $needsconfirmation{RENEW_ISSUE} ) {
1021         if ( $toomany->{max_allowed} == 0 ) {
1022             $needsconfirmation{PATRON_CANT} = 1;
1023         }
1024         if ( C4::Context->preference("AllowTooManyOverride") ) {
1025             $needsconfirmation{TOO_MANY} = $toomany->{reason};
1026             $needsconfirmation{current_loan_count} = $toomany->{count};
1027             $needsconfirmation{max_loans_allowed} = $toomany->{max_allowed};
1028         } else {
1029             $issuingimpossible{TOO_MANY} = $toomany->{reason};
1030             $issuingimpossible{current_loan_count} = $toomany->{count};
1031             $issuingimpossible{max_loans_allowed} = $toomany->{max_allowed};
1032         }
1033     }
1034
1035     #
1036     # CHECKPREVCHECKOUT: CHECK IF ITEM HAS EVER BEEN LENT TO PATRON
1037     #
1038     $patron = Koha::Patrons->find( $patron->borrowernumber ); # FIXME Refetch just in case, to avoid regressions. But must not be needed
1039     my $wants_check = $patron->wants_check_for_previous_checkout;
1040     $needsconfirmation{PREVISSUE} = 1
1041         if ($wants_check and $patron->do_check_for_previous_checkout($item_unblessed));
1042
1043     #
1044     # ITEM CHECKING
1045     #
1046     if ( $item_object->notforloan )
1047     {
1048         if(!C4::Context->preference("AllowNotForLoanOverride")){
1049             $issuingimpossible{NOT_FOR_LOAN} = 1;
1050             $issuingimpossible{item_notforloan} = $item_object->notforloan;
1051         }else{
1052             $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
1053             $needsconfirmation{item_notforloan} = $item_object->notforloan;
1054         }
1055     }
1056     else {
1057         # we have to check itemtypes.notforloan also
1058         if (C4::Context->preference('item-level_itypes')){
1059             # this should probably be a subroutine
1060             my $sth = $dbh->prepare("SELECT notforloan FROM itemtypes WHERE itemtype = ?");
1061             $sth->execute($effective_itemtype);
1062             my $notforloan=$sth->fetchrow_hashref();
1063             if ($notforloan->{'notforloan'}) {
1064                 if (!C4::Context->preference("AllowNotForLoanOverride")) {
1065                     $issuingimpossible{NOT_FOR_LOAN} = 1;
1066                     $issuingimpossible{itemtype_notforloan} = $effective_itemtype;
1067                 } else {
1068                     $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
1069                     $needsconfirmation{itemtype_notforloan} = $effective_itemtype;
1070                 }
1071             }
1072         }
1073         else {
1074             my $itemtype = Koha::ItemTypes->find($biblioitem->itemtype);
1075             if ( $itemtype && defined $itemtype->notforloan && $itemtype->notforloan == 1){
1076                 if (!C4::Context->preference("AllowNotForLoanOverride")) {
1077                     $issuingimpossible{NOT_FOR_LOAN} = 1;
1078                     $issuingimpossible{itemtype_notforloan} = $effective_itemtype;
1079                 } else {
1080                     $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
1081                     $needsconfirmation{itemtype_notforloan} = $effective_itemtype;
1082                 }
1083             }
1084         }
1085     }
1086     if ( $item_object->withdrawn && $item_object->withdrawn > 0 )
1087     {
1088         $issuingimpossible{WTHDRAWN} = 1;
1089     }
1090     if (   $item_object->restricted
1091         && $item_object->restricted == 1 )
1092     {
1093         $issuingimpossible{RESTRICTED} = 1;
1094     }
1095     if ( $item_object->itemlost && C4::Context->preference("IssueLostItem") ne 'nothing' ) {
1096         my $av = Koha::AuthorisedValues->search({ category => 'LOST', authorised_value => $item_object->itemlost });
1097         my $code = $av->count ? $av->next->lib : '';
1098         $needsconfirmation{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'confirm' );
1099         $alerts{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'alert' );
1100     }
1101     if ( C4::Context->preference("IndependentBranches") ) {
1102         my $userenv = C4::Context->userenv;
1103         unless ( C4::Context->IsSuperLibrarian() ) {
1104             my $HomeOrHoldingBranch = C4::Context->preference("HomeOrHoldingBranch");
1105             if ( $item_object->$HomeOrHoldingBranch ne $userenv->{branch} ){
1106                 $issuingimpossible{ITEMNOTSAMEBRANCH} = 1;
1107                 $issuingimpossible{'itemhomebranch'} = $item_object->$HomeOrHoldingBranch;
1108             }
1109             $needsconfirmation{BORRNOTSAMEBRANCH} = $patron->branchcode
1110               if ( $patron->branchcode ne $userenv->{branch} );
1111         }
1112     }
1113
1114     #
1115     # CHECK IF THERE IS RENTAL CHARGES. RENTAL MUST BE CONFIRMED BY THE BORROWER
1116     #
1117     my $rentalConfirmation = C4::Context->preference("RentalFeesCheckoutConfirmation");
1118     if ($rentalConfirmation) {
1119         my ($rentalCharge) = GetIssuingCharges( $item_object->itemnumber, $patron->borrowernumber );
1120
1121         my $itemtype_object = Koha::ItemTypes->find( $item_object->effective_itemtype );
1122         if ($itemtype_object) {
1123             my $accumulate_charge = $fees->accumulate_rentalcharge();
1124             if ( $accumulate_charge > 0 ) {
1125                 $rentalCharge += $accumulate_charge;
1126             }
1127         }
1128
1129         if ( $rentalCharge > 0 ) {
1130             $needsconfirmation{RENTALCHARGE} = $rentalCharge;
1131         }
1132     }
1133
1134     my $recall;
1135     # CHECK IF ITEM HAS BEEN RECALLED BY ANOTHER PATRON
1136     # Only bother doing this if UseRecalls is enabled and the item is recallable
1137     # Don't look at recalls that are in transit
1138     if ( C4::Context->preference('UseRecalls') and $item_object->can_be_waiting_recall ) {
1139         my @recalls = $biblio->recalls({},{ order_by => { -asc => 'recalldate' } })->filter_by_current->as_list;
1140
1141         foreach my $r ( @recalls ) {
1142             if ( $r->itemnumber and
1143                 $r->itemnumber == $item_object->itemnumber and
1144                 $r->borrowernumber == $patron->borrowernumber and
1145                 ( $r->waiting or $r->requested ) ) {
1146                 $messages{RECALLED} = $r->recall_id;
1147                 $recall = $r;
1148                 # this item is recalled by or already waiting for this borrower and the recall can be fulfilled
1149                 last;
1150             }
1151             elsif ( $r->itemnumber and
1152                 $r->itemnumber == $item_object->itemnumber and
1153                 $r->in_transit ) {
1154                 # recalled item is in transit
1155                 $issuingimpossible{RECALLED_INTRANSIT} = $r->branchcode;
1156             }
1157             elsif ( $r->item_level_recall and
1158                 $r->itemnumber == $item_object->itemnumber and
1159                 $r->borrowernumber != $patron->borrowernumber and
1160                 !$r->in_transit ) {
1161                 # this specific item has been recalled by a different patron
1162                 $needsconfirmation{RECALLED} = $r;
1163                 $recall = $r;
1164                 last;
1165             }
1166             elsif ( !$r->item_level_recall and
1167                 $r->borrowernumber != $patron->borrowernumber and
1168                 !$r->in_transit ) {
1169                 # a different patron has placed a biblio-level recall and this item is eligible to fill it
1170                 $needsconfirmation{RECALLED} = $r;
1171                 $recall = $r;
1172                 last;
1173             }
1174         }
1175     }
1176
1177     unless ( $ignore_reserves and defined $recall ) {
1178         # See if the item is on reserve.
1179         my ( $restype, $res ) = C4::Reserves::CheckReserves( $item_object->itemnumber );
1180         if ($restype) {
1181             my $resbor = $res->{'borrowernumber'};
1182             if ( $resbor ne $patron->borrowernumber ) {
1183                 my $patron = Koha::Patrons->find( $resbor );
1184                 if ( $restype eq "Waiting" )
1185                 {
1186                     # The item is on reserve and waiting, but has been
1187                     # reserved by some other patron.
1188                     $needsconfirmation{RESERVE_WAITING} = 1;
1189                     $needsconfirmation{'resfirstname'} = $patron->firstname;
1190                     $needsconfirmation{'ressurname'} = $patron->surname;
1191                     $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1192                     $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1193                     $needsconfirmation{'resbranchcode'} = $res->{branchcode};
1194                     $needsconfirmation{'reswaitingdate'} = $res->{'waitingdate'};
1195                     $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1196                 }
1197                 elsif ( $restype eq "Reserved" ) {
1198                     # The item is on reserve for someone else.
1199                     $needsconfirmation{RESERVED} = 1;
1200                     $needsconfirmation{'resfirstname'} = $patron->firstname;
1201                     $needsconfirmation{'ressurname'} = $patron->surname;
1202                     $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1203                     $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1204                     $needsconfirmation{'resbranchcode'} = $patron->branchcode;
1205                     $needsconfirmation{'resreservedate'} = $res->{reservedate};
1206                     $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1207                 }
1208                 elsif ( $restype eq "Transferred" ) {
1209                     # The item is determined hold being transferred for someone else.
1210                     $needsconfirmation{TRANSFERRED} = 1;
1211                     $needsconfirmation{'resfirstname'} = $patron->firstname;
1212                     $needsconfirmation{'ressurname'} = $patron->surname;
1213                     $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1214                     $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1215                     $needsconfirmation{'resbranchcode'} = $patron->branchcode;
1216                     $needsconfirmation{'resreservedate'} = $res->{reservedate};
1217                     $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1218                 }
1219                 elsif ( $restype eq "Processing" ) {
1220                     # The item is determined hold being processed for someone else.
1221                     $needsconfirmation{PROCESSING} = 1;
1222                     $needsconfirmation{'resfirstname'} = $patron->firstname;
1223                     $needsconfirmation{'ressurname'} = $patron->surname;
1224                     $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1225                     $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1226                     $needsconfirmation{'resbranchcode'} = $patron->branchcode;
1227                     $needsconfirmation{'resreservedate'} = $res->{reservedate};
1228                     $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1229                 }
1230             }
1231         }
1232     }
1233
1234     ## CHECK AGE RESTRICTION
1235     my $agerestriction  = $biblioitem->agerestriction;
1236     my ($restriction_age, $daysToAgeRestriction) = GetAgeRestriction( $agerestriction, $patron->unblessed );
1237     if ( $daysToAgeRestriction && $daysToAgeRestriction > 0 ) {
1238         if ( C4::Context->preference('AgeRestrictionOverride') ) {
1239             $needsconfirmation{AGE_RESTRICTION} = "$agerestriction";
1240         }
1241         else {
1242             $issuingimpossible{AGE_RESTRICTION} = "$agerestriction";
1243         }
1244     }
1245
1246     ## check for high holds decreasing loan period
1247     if ( C4::Context->preference('decreaseLoanHighHolds') ) {
1248         my $check = checkHighHolds( $item_object, $patron );
1249
1250         if ( $check->{exceeded} ) {
1251             if ($override_high_holds) {
1252                 $alerts{HIGHHOLDS} = {
1253                     num_holds  => $check->{outstanding},
1254                     duration   => $check->{duration},
1255                     returndate => output_pref( { dt => dt_from_string($check->{due_date}), dateformat => 'iso', timeformat => '24hr' }),
1256                 };
1257             }
1258             else {
1259                 $needsconfirmation{HIGHHOLDS} = {
1260                     num_holds  => $check->{outstanding},
1261                     duration   => $check->{duration},
1262                     returndate => output_pref( { dt => dt_from_string($check->{due_date}), dateformat => 'iso', timeformat => '24hr' }),
1263                 };
1264             }
1265         }
1266     }
1267
1268     if (
1269         !C4::Context->preference('AllowMultipleIssuesOnABiblio') &&
1270         # don't do the multiple loans per bib check if we've
1271         # already determined that we've got a loan on the same item
1272         !$issuingimpossible{NO_MORE_RENEWALS} &&
1273         !$needsconfirmation{RENEW_ISSUE}
1274     ) {
1275         # Check if borrower has already issued an item from the same biblio
1276         # Only if it's not a subscription
1277         my $biblionumber = $item_object->biblionumber;
1278         require C4::Serials;
1279         my $is_a_subscription = C4::Serials::CountSubscriptionFromBiblionumber($biblionumber);
1280         unless ($is_a_subscription) {
1281             # FIXME Should be $patron->checkouts($args);
1282             my $checkouts = Koha::Checkouts->search(
1283                 {
1284                     borrowernumber => $patron->borrowernumber,
1285                     biblionumber   => $biblionumber,
1286                 },
1287                 {
1288                     join => 'item',
1289                 }
1290             );
1291             # if we get here, we don't already have a loan on this item,
1292             # so if there are any loans on this bib, ask for confirmation
1293             if ( $checkouts->count ) {
1294                 $needsconfirmation{BIBLIO_ALREADY_ISSUED} = 1;
1295             }
1296         }
1297     }
1298
1299     return ( \%issuingimpossible, \%needsconfirmation, \%alerts, \%messages, );
1300 }
1301
1302 =head2 CanBookBeReturned
1303
1304   ($returnallowed, $message) = CanBookBeReturned($item, $branch)
1305
1306 Check whether the item can be returned to the provided branch
1307
1308 =over 4
1309
1310 =item C<$item> is a hash of item information as returned Koha::Items->find->unblessed (Temporary, should be a Koha::Item instead)
1311
1312 =item C<$branch> is the branchcode where the return is taking place
1313
1314 =back
1315
1316 Returns:
1317
1318 =over 4
1319
1320 =item C<$returnallowed> is 0 or 1, corresponding to whether the return is allowed (1) or not (0)
1321
1322 =item C<$message> is the branchcode where the item SHOULD be returned, if the return is not allowed
1323
1324 =back
1325
1326 =cut
1327
1328 sub CanBookBeReturned {
1329   my ($item, $branch) = @_;
1330   my $allowreturntobranch = C4::Context->preference("AllowReturnToBranch") || 'anywhere';
1331
1332   # assume return is allowed to start
1333   my $allowed = 1;
1334   my $message;
1335
1336   # identify all cases where return is forbidden
1337   if ($allowreturntobranch eq 'homebranch' && $branch ne $item->{'homebranch'}) {
1338      $allowed = 0;
1339      $message = $item->{'homebranch'};
1340   } elsif ($allowreturntobranch eq 'holdingbranch' && $branch ne $item->{'holdingbranch'}) {
1341      $allowed = 0;
1342      $message = $item->{'holdingbranch'};
1343   } elsif ($allowreturntobranch eq 'homeorholdingbranch' && $branch ne $item->{'homebranch'} && $branch ne $item->{'holdingbranch'}) {
1344      $allowed = 0;
1345      $message = $item->{'homebranch'}; # FIXME: choice of homebranch is arbitrary
1346   }
1347
1348   return ($allowed, $message);
1349 }
1350
1351 =head2 CheckHighHolds
1352
1353     used when syspref decreaseLoanHighHolds is active. Returns 1 or 0 to define whether the minimum value held in
1354     decreaseLoanHighHoldsValue is exceeded, the total number of outstanding holds, the number of days the loan
1355     has been decreased to (held in syspref decreaseLoanHighHoldsValue), and the new due date
1356
1357 =cut
1358
1359 sub checkHighHolds {
1360     my ( $item, $patron ) = @_;
1361     my $branchcode = _GetCircControlBranch( $item->unblessed, $patron->unblessed );
1362
1363     my $return_data = {
1364         exceeded    => 0,
1365         outstanding => 0,
1366         duration    => 0,
1367         due_date    => undef,
1368     };
1369
1370     my $holds = Koha::Holds->search( { biblionumber => $item->biblionumber } );
1371
1372     if ( $holds->count() ) {
1373         $return_data->{outstanding} = $holds->count();
1374
1375         my $decreaseLoanHighHoldsControl        = C4::Context->preference('decreaseLoanHighHoldsControl');
1376         my $decreaseLoanHighHoldsValue          = C4::Context->preference('decreaseLoanHighHoldsValue');
1377         my $decreaseLoanHighHoldsIgnoreStatuses = C4::Context->preference('decreaseLoanHighHoldsIgnoreStatuses');
1378
1379         my @decreaseLoanHighHoldsIgnoreStatuses = split( /,/, $decreaseLoanHighHoldsIgnoreStatuses );
1380
1381         if ( $decreaseLoanHighHoldsControl eq 'static' ) {
1382
1383             # static means just more than a given number of holds on the record
1384
1385             # If the number of holds is less than the threshold, we can stop here
1386             if ( $holds->count() < $decreaseLoanHighHoldsValue ) {
1387                 return $return_data;
1388             }
1389         }
1390         elsif ( $decreaseLoanHighHoldsControl eq 'dynamic' ) {
1391
1392             # dynamic means X more than the number of holdable items on the record
1393
1394             # let's get the items
1395             my @items = $holds->next()->biblio()->items()->as_list;
1396
1397             # Remove any items with status defined to be ignored even if the would not make item unholdable
1398             foreach my $status (@decreaseLoanHighHoldsIgnoreStatuses) {
1399                 @items = grep { !$_->$status } @items;
1400             }
1401
1402             # Remove any items that are not holdable for this patron
1403             @items = grep { CanItemBeReserved( $patron , $_, undef, { ignore_found_holds => 1 } )->{status} eq 'OK' } @items;
1404
1405             my $items_count = scalar @items;
1406
1407             my $threshold = $items_count + $decreaseLoanHighHoldsValue;
1408
1409             # If the number of holds is less than the count of items we have
1410             # plus the number of holds allowed above that count, we can stop here
1411             if ( $holds->count() <= $threshold ) {
1412                 return $return_data;
1413             }
1414         }
1415
1416         my $issuedate = dt_from_string();
1417
1418         my $itype = $item->effective_itemtype;
1419         my $daysmode = Koha::CirculationRules->get_effective_daysmode(
1420             {
1421                 categorycode => $patron->categorycode,
1422                 itemtype     => $itype,
1423                 branchcode   => $branchcode,
1424             }
1425         );
1426         my $calendar = Koha::Calendar->new( branchcode => $branchcode, days_mode => $daysmode );
1427
1428         my $orig_due = C4::Circulation::CalcDateDue( $issuedate, $itype, $branchcode, $patron->unblessed );
1429
1430         my $rule = Koha::CirculationRules->get_effective_rule(
1431             {
1432                 categorycode => $patron->categorycode,
1433                 itemtype     => $item->effective_itemtype,
1434                 branchcode   => $branchcode,
1435                 rule_name    => 'decreaseloanholds',
1436             }
1437         );
1438
1439         my $duration;
1440         if ( defined($rule) && $rule->rule_value ne '' ){
1441             # overrides decreaseLoanHighHoldsDuration syspref
1442             $duration = $rule->rule_value;
1443         } else {
1444             $duration = C4::Context->preference('decreaseLoanHighHoldsDuration');
1445         }
1446         my $reduced_datedue = $calendar->addDuration( $issuedate, $duration );
1447         $reduced_datedue->set_hour($orig_due->hour);
1448         $reduced_datedue->set_minute($orig_due->minute);
1449         $reduced_datedue->truncate( to => 'minute' );
1450
1451         if ( DateTime->compare( $reduced_datedue, $orig_due ) == -1 ) {
1452             $return_data->{exceeded} = 1;
1453             $return_data->{duration} = $duration;
1454             $return_data->{due_date} = $reduced_datedue;
1455         }
1456     }
1457
1458     return $return_data;
1459 }
1460
1461 =head2 AddIssue
1462
1463   &AddIssue($borrower, $barcode, [$datedue], [$cancelreserve], [$issuedate])
1464
1465 Issue a book. Does no check, they are done in CanBookBeIssued. If we reach this sub, it means the user confirmed if needed.
1466
1467 =over 4
1468
1469 =item C<$borrower> is a hash with borrower informations (from Koha::Patron->unblessed).
1470
1471 =item C<$barcode> is the barcode of the item being issued.
1472
1473 =item C<$datedue> is a DateTime object for the max date of return, i.e. the date due (optional).
1474 Calculated if empty.
1475
1476 =item C<$cancelreserve> is 1 to override and cancel any pending reserves for the item (optional).
1477
1478 =item C<$issuedate> is the date to issue the item in iso (YYYY-MM-DD) format (optional).
1479 Defaults to today.  Unlike C<$datedue>, NOT a DateTime object, unfortunately.
1480
1481 AddIssue does the following things :
1482
1483   - step 01: check that there is a borrowernumber & a barcode provided
1484   - check for RENEWAL (book issued & being issued to the same patron)
1485       - renewal YES = Calculate Charge & renew
1486       - renewal NO  =
1487           * BOOK ACTUALLY ISSUED ? do a return if book is actually issued (but to someone else)
1488           * RESERVE PLACED ?
1489               - fill reserve if reserve to this patron
1490               - cancel reserve or not, otherwise
1491           * RECALL PLACED ?
1492               - fill recall if recall to this patron
1493               - cancel recall or not
1494               - revert recall's waiting status or not
1495           * TRANSFERT PENDING ?
1496               - complete the transfert
1497           * ISSUE THE BOOK
1498
1499 =back
1500
1501 =cut
1502
1503 sub AddIssue {
1504     my ( $borrower, $barcode, $datedue, $cancelreserve, $issuedate, $sipmode, $params ) = @_;
1505
1506     my $onsite_checkout = $params && $params->{onsite_checkout} ? 1 : 0;
1507     my $switch_onsite_checkout = $params && $params->{switch_onsite_checkout};
1508     my $auto_renew = $params && $params->{auto_renew};
1509     my $cancel_recall = $params && $params->{cancel_recall};
1510     my $recall_id = $params && $params->{recall_id};
1511     my $dbh          = C4::Context->dbh;
1512     my $barcodecheck = CheckValidBarcode($barcode);
1513
1514     my $issue;
1515
1516     if ( $datedue && ref $datedue ne 'DateTime' ) {
1517         $datedue = dt_from_string($datedue);
1518     }
1519
1520     # $issuedate defaults to today.
1521     if ( !defined $issuedate ) {
1522         $issuedate = dt_from_string();
1523     }
1524     else {
1525         if ( ref $issuedate ne 'DateTime' ) {
1526             $issuedate = dt_from_string($issuedate);
1527
1528         }
1529     }
1530
1531     # Stop here if the patron or barcode doesn't exist
1532     if ( $borrower && $barcode && $barcodecheck ) {
1533         # find which item we issue
1534         my $item_object = Koha::Items->find({ barcode => $barcode })
1535           or return;    # if we don't get an Item, abort.
1536         my $item_unblessed = $item_object->unblessed;
1537
1538         my $branchcode = _GetCircControlBranch( $item_unblessed, $borrower );
1539
1540         # get actual issuing if there is one
1541         my $actualissue = $item_object->checkout;
1542
1543         # check if we just renew the issue.
1544         if ( $actualissue and $actualissue->borrowernumber eq $borrower->{'borrowernumber'}
1545                 and not $switch_onsite_checkout ) {
1546             $datedue = AddRenewal(
1547                 $borrower->{'borrowernumber'},
1548                 $item_object->itemnumber,
1549                 $branchcode,
1550                 $datedue,
1551                 $issuedate,    # here interpreted as the renewal date
1552             );
1553         }
1554         else {
1555             unless ($datedue) {
1556                 my $itype = $item_object->effective_itemtype;
1557                 $datedue = CalcDateDue( $issuedate, $itype, $branchcode, $borrower );
1558
1559             }
1560             $datedue->truncate( to => 'minute' );
1561
1562             my $patron = Koha::Patrons->find( $borrower );
1563             my $library = Koha::Libraries->find( $branchcode );
1564             my $fees = Koha::Charges::Fees->new(
1565                 {
1566                     patron    => $patron,
1567                     library   => $library,
1568                     item      => $item_object,
1569                     to_date   => $datedue,
1570                 }
1571             );
1572
1573             # it's NOT a renewal
1574             if ( $actualissue and not $switch_onsite_checkout ) {
1575                 # This book is currently on loan, but not to the person
1576                 # who wants to borrow it now. mark it returned before issuing to the new borrower
1577                 my ( $allowed, $message ) = CanBookBeReturned( $item_unblessed, C4::Context->userenv->{branch} );
1578                 return unless $allowed;
1579                 AddReturn( $item_object->barcode, C4::Context->userenv->{'branch'} );
1580                 # AddReturn certainly has side-effects, like onloan => undef
1581                 $item_object->discard_changes;
1582             }
1583
1584             if ( C4::Context->preference('UseRecalls') ) {
1585                 Koha::Recalls->move_recall(
1586                     {
1587                         action         => $cancel_recall,
1588                         recall_id      => $recall_id,
1589                         item           => $item_object,
1590                         borrowernumber => $borrower->{borrowernumber},
1591                     }
1592                 );
1593             }
1594
1595             C4::Reserves::MoveReserve( $item_object->itemnumber, $borrower->{'borrowernumber'}, $cancelreserve );
1596
1597             # Starting process for transfer job (checking transfert and validate it if we have one)
1598             if ( my $transfer = $item_object->get_transfer ) {
1599                 # updating line of branchtranfert to finish it, and changing the to branch value, implement a comment for visibility of this case (maybe for stats ....)
1600                 $transfer->set(
1601                     {
1602                         datearrived => dt_from_string,
1603                         tobranch    => C4::Context->userenv->{branch},
1604                         comments    => 'Forced branchtransfer'
1605                     }
1606                 )->store;
1607                 if ( $transfer->reason && $transfer->reason eq 'Reserve' ) {
1608                     my $hold = $item_object->holds->search( { found => 'T' } )->next;
1609                     if ( $hold ) { # Is this really needed?
1610                         $hold->set( { found => undef } )->store;
1611                         C4::Reserves::ModReserveMinusPriority($item_object->itemnumber, $hold->reserve_id);
1612                     }
1613                 }
1614             }
1615
1616             # If automatic renewal wasn't selected while issuing, set the value according to the issuing rule.
1617             unless ($auto_renew) {
1618                 my $rule = Koha::CirculationRules->get_effective_rule(
1619                     {
1620                         categorycode => $borrower->{categorycode},
1621                         itemtype     => $item_object->effective_itemtype,
1622                         branchcode   => $branchcode,
1623                         rule_name    => 'auto_renew'
1624                     }
1625                 );
1626
1627                 $auto_renew = $rule->rule_value if $rule;
1628             }
1629
1630             my $issue_attributes = {
1631                 borrowernumber  => $borrower->{'borrowernumber'},
1632                 issuedate       => $issuedate->strftime('%Y-%m-%d %H:%M:%S'),
1633                 date_due        => $datedue->strftime('%Y-%m-%d %H:%M:%S'),
1634                 branchcode      => C4::Context->userenv->{'branch'},
1635                 onsite_checkout => $onsite_checkout,
1636                 auto_renew      => $auto_renew ? 1 : 0,
1637             };
1638
1639             # Get ID of logged in user.  if called from a batch job,
1640             # no user session exists and C4::Context->userenv() returns
1641             # the scalar '0'. Only do this if the syspref says so
1642             if ( C4::Context->preference('RecordStaffUserOnCheckout') ) {
1643                 my $userenv = C4::Context->userenv();
1644                 my $usernumber = (ref($userenv) eq 'HASH') ? $userenv->{'number'} : undef;
1645                 if ($usernumber) {
1646                     $issue_attributes->{issuer_id} = $usernumber;
1647                 }
1648             }
1649
1650             # In the case that the borrower has an on-site checkout
1651             # and SwitchOnSiteCheckouts is enabled this converts it to a regular checkout
1652             $issue = Koha::Checkouts->find( { itemnumber => $item_object->itemnumber } );
1653             if ($issue) {
1654                 $issue->set($issue_attributes)->store;
1655             }
1656             else {
1657                 $issue = Koha::Checkout->new(
1658                     {
1659                         itemnumber => $item_object->itemnumber,
1660                         %$issue_attributes,
1661                     }
1662                 )->store;
1663             }
1664             $issue->discard_changes;
1665             C4::Auth::track_login_daily( $borrower->{userid} );
1666             if ( $item_object->location && $item_object->location eq 'CART'
1667                 && ( !$item_object->permanent_location || $item_object->permanent_location ne 'CART' ) ) {
1668             ## Item was moved to cart via UpdateItemLocationOnCheckin, anything issued should be taken off the cart.
1669                 CartToShelf( $item_object->itemnumber );
1670             }
1671
1672             if ( C4::Context->preference('UpdateTotalIssuesOnCirc') ) {
1673                 UpdateTotalIssues( $item_object->biblionumber, 1 );
1674             }
1675
1676             # Record if item was lost
1677             my $was_lost = $item_object->itemlost;
1678
1679             $item_object->issues( ( $item_object->issues || 0 ) + 1);
1680             $item_object->holdingbranch(C4::Context->userenv->{'branch'});
1681             $item_object->itemlost(0);
1682             $item_object->onloan($datedue->ymd());
1683             $item_object->datelastborrowed( dt_from_string()->ymd() );
1684             $item_object->datelastseen( dt_from_string()->ymd() );
1685             $item_object->store({log_action => 0});
1686
1687             # If the item was lost, it has now been found, charge the overdue if necessary
1688             if ($was_lost) {
1689                 if ( $item_object->{_charge} ) {
1690                     $actualissue //= Koha::Old::Checkouts->search(
1691                         { itemnumber => $item_unblessed->{itemnumber} },
1692                         {
1693                             order_by => { '-desc' => 'returndate' },
1694                             rows     => 1
1695                         }
1696                     )->single;
1697                     unless ( exists( $borrower->{branchcode} ) ) {
1698                         my $patron = $actualissue->patron;
1699                         $borrower = $patron->unblessed;
1700                     }
1701                     _CalculateAndUpdateFine(
1702                         {
1703                             issue       => $actualissue,
1704                             item        => $item_unblessed,
1705                             borrower    => $borrower,
1706                             return_date => $issuedate
1707                         }
1708                     );
1709                     _FixOverduesOnReturn( $borrower->{borrowernumber},
1710                         $item_object->itemnumber, undef, 'RENEWED' );
1711                 }
1712             }
1713
1714             # If it costs to borrow this book, charge it to the patron's account.
1715             my ( $charge, $itemtype ) = GetIssuingCharges( $item_object->itemnumber, $borrower->{'borrowernumber'} );
1716             if ( $charge && $charge > 0 ) {
1717                 AddIssuingCharge( $issue, $charge, 'RENT' );
1718             }
1719
1720             my $itemtype_object = Koha::ItemTypes->find( $item_object->effective_itemtype );
1721             if ( $itemtype_object ) {
1722                 my $accumulate_charge = $fees->accumulate_rentalcharge();
1723                 if ( $accumulate_charge > 0 ) {
1724                     AddIssuingCharge( $issue, $accumulate_charge, 'RENT_DAILY' );
1725                     $charge += $accumulate_charge;
1726                     $item_unblessed->{charge} = $charge;
1727                 }
1728             }
1729
1730             # Record the fact that this book was issued.
1731             C4::Stats::UpdateStats(
1732                 {
1733                     branch => C4::Context->userenv->{'branch'},
1734                     type => ( $onsite_checkout ? 'onsite_checkout' : 'issue' ),
1735                     amount         => $charge,
1736                     other          => ( $sipmode ? "SIP-$sipmode" : '' ),
1737                     itemnumber     => $item_object->itemnumber,
1738                     itemtype       => $item_object->effective_itemtype,
1739                     location       => $item_object->location,
1740                     borrowernumber => $borrower->{'borrowernumber'},
1741                     ccode          => $item_object->ccode,
1742                 }
1743             );
1744
1745             # Send a checkout slip.
1746             my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1747             my %conditions        = (
1748                 branchcode   => $branchcode,
1749                 categorycode => $borrower->{categorycode},
1750                 item_type    => $item_object->effective_itemtype,
1751                 notification => 'CHECKOUT',
1752             );
1753             if ( $circulation_alert->is_enabled_for( \%conditions ) ) {
1754                 SendCirculationAlert(
1755                     {
1756                         type     => 'CHECKOUT',
1757                         item     => $item_object->unblessed,
1758                         borrower => $borrower,
1759                         branch   => $branchcode,
1760                     }
1761                 );
1762             }
1763             logaction(
1764                 "CIRCULATION", "ISSUE",
1765                 $borrower->{'borrowernumber'},
1766                 $item_object->itemnumber,
1767             ) if C4::Context->preference("IssueLog");
1768
1769             Koha::Plugins->call('after_circ_action', {
1770                 action  => 'checkout',
1771                 payload => {
1772                     type     => ( $onsite_checkout ? 'onsite_checkout' : 'issue' ),
1773                     checkout => $issue->get_from_storage
1774                 }
1775             });
1776         }
1777     }
1778     return $issue;
1779 }
1780
1781 =head2 GetLoanLength
1782
1783   my $loanlength = &GetLoanLength($borrowertype,$itemtype,branchcode)
1784
1785 Get loan length for an itemtype, a borrower type and a branch
1786
1787 =cut
1788
1789 sub GetLoanLength {
1790     my ( $categorycode, $itemtype, $branchcode ) = @_;
1791
1792     # Initialize default values
1793     my $rules = {
1794         issuelength   => 0,
1795         renewalperiod => 0,
1796         lengthunit    => 'days',
1797     };
1798
1799     my $found = Koha::CirculationRules->get_effective_rules( {
1800         branchcode => $branchcode,
1801         categorycode => $categorycode,
1802         itemtype => $itemtype,
1803         rules => [
1804             'issuelength',
1805             'renewalperiod',
1806             'lengthunit'
1807         ],
1808     } );
1809
1810     # Search for rules!
1811     foreach my $rule_name (keys %$found) {
1812         $rules->{$rule_name} = $found->{$rule_name};
1813     }
1814
1815     return $rules;
1816 }
1817
1818
1819 =head2 GetHardDueDate
1820
1821   my ($hardduedate,$hardduedatecompare) = &GetHardDueDate($borrowertype,$itemtype,branchcode)
1822
1823 Get the Hard Due Date and it's comparison for an itemtype, a borrower type and a branch
1824
1825 =cut
1826
1827 sub GetHardDueDate {
1828     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1829
1830     my $rules = Koha::CirculationRules->get_effective_rules(
1831         {
1832             categorycode => $borrowertype,
1833             itemtype     => $itemtype,
1834             branchcode   => $branchcode,
1835             rules        => [ 'hardduedate', 'hardduedatecompare' ],
1836         }
1837     );
1838
1839     if ( defined( $rules->{hardduedate} ) ) {
1840         if ( $rules->{hardduedate} ) {
1841             return ( dt_from_string( $rules->{hardduedate}, 'iso' ), $rules->{hardduedatecompare} );
1842         }
1843         else {
1844             return ( undef, undef );
1845         }
1846     }
1847 }
1848
1849 =head2 GetBranchBorrowerCircRule
1850
1851   my $branch_cat_rule = GetBranchBorrowerCircRule($branchcode, $categorycode);
1852
1853 Retrieves circulation rule attributes that apply to the given
1854 branch and patron category, regardless of item type.  
1855 The return value is a hashref containing the following key:
1856
1857 patron_maxissueqty - maximum number of loans that a
1858 patron of the given category can have at the given
1859 branch.  If the value is undef, no limit.
1860
1861 patron_maxonsiteissueqty - maximum of on-site checkouts that a
1862 patron of the given category can have at the given
1863 branch.  If the value is undef, no limit.
1864
1865 This will check for different branch/category combinations in the following order:
1866 branch and category
1867 branch only
1868 category only
1869 default branch and category
1870
1871 If no rule has been found in the database, it will default to
1872 the buillt in rule:
1873
1874 patron_maxissueqty - undef
1875 patron_maxonsiteissueqty - undef
1876
1877 C<$branchcode> and C<$categorycode> should contain the
1878 literal branch code and patron category code, respectively - no
1879 wildcards.
1880
1881 =cut
1882
1883 sub GetBranchBorrowerCircRule {
1884     my ( $branchcode, $categorycode ) = @_;
1885
1886     # Initialize default values
1887     my $rules = {
1888         patron_maxissueqty       => undef,
1889         patron_maxonsiteissueqty => undef,
1890     };
1891
1892     # Search for rules!
1893     foreach my $rule_name (qw( patron_maxissueqty patron_maxonsiteissueqty )) {
1894         my $rule = Koha::CirculationRules->get_effective_rule(
1895             {
1896                 categorycode => $categorycode,
1897                 itemtype     => undef,
1898                 branchcode   => $branchcode,
1899                 rule_name    => $rule_name,
1900             }
1901         );
1902
1903         $rules->{$rule_name} = $rule->rule_value if defined $rule;
1904     }
1905
1906     return $rules;
1907 }
1908
1909 =head2 GetBranchItemRule
1910
1911   my $branch_item_rule = GetBranchItemRule($branchcode, $itemtype);
1912
1913 Retrieves circulation rule attributes that apply to the given
1914 branch and item type, regardless of patron category.
1915
1916 The return value is a hashref containing the following keys:
1917
1918 holdallowed => Hold policy for this branch and itemtype. Possible values:
1919   not_allowed:           No holds allowed.
1920   from_home_library:     Holds allowed only by patrons that have the same homebranch as the item.
1921   from_any_library:      Holds allowed from any patron.
1922   from_local_hold_group: Holds allowed from libraries in hold group
1923
1924 returnbranch => branch to which to return item.  Possible values:
1925   noreturn: do not return, let item remain where checked in (floating collections)
1926   homebranch: return to item's home branch
1927   holdingbranch: return to issuer branch
1928
1929 This searches branchitemrules in the following order:
1930
1931   * Same branchcode and itemtype
1932   * Same branchcode, itemtype '*'
1933   * branchcode '*', same itemtype
1934   * branchcode and itemtype '*'
1935
1936 Neither C<$branchcode> nor C<$itemtype> should be '*'.
1937
1938 =cut
1939
1940 sub GetBranchItemRule {
1941     my ( $branchcode, $itemtype ) = @_;
1942
1943     # Search for rules!
1944     my $rules = Koha::CirculationRules->get_effective_rules({
1945         branchcode => $branchcode,
1946         itemtype => $itemtype,
1947         rules => ['holdallowed', 'hold_fulfillment_policy', 'returnbranch']
1948     });
1949
1950     # built-in default circulation rule
1951     $rules->{holdallowed} //= 'from_any_library';
1952     $rules->{hold_fulfillment_policy} //= 'any';
1953     $rules->{returnbranch} //= 'homebranch';
1954
1955     return $rules;
1956 }
1957
1958 =head2 AddReturn
1959
1960   ($doreturn, $messages, $iteminformation, $borrower) =
1961       &AddReturn( $barcode, $branch [,$exemptfine] [,$returndate] );
1962
1963 Returns a book.
1964
1965 =over 4
1966
1967 =item C<$barcode> is the bar code of the book being returned.
1968
1969 =item C<$branch> is the code of the branch where the book is being returned.
1970
1971 =item C<$exemptfine> indicates that overdue charges for the item will be
1972 removed. Optional.
1973
1974 =item C<$return_date> allows the default return date to be overridden
1975 by the given return date. Optional.
1976
1977 =back
1978
1979 C<&AddReturn> returns a list of four items:
1980
1981 C<$doreturn> is true iff the return succeeded.
1982
1983 C<$messages> is a reference-to-hash giving feedback on the operation.
1984 The keys of the hash are:
1985
1986 =over 4
1987
1988 =item C<BadBarcode>
1989
1990 No item with this barcode exists. The value is C<$barcode>.
1991
1992 =item C<NotIssued>
1993
1994 The book is not currently on loan. The value is C<$barcode>.
1995
1996 =item C<withdrawn>
1997
1998 This book has been withdrawn/cancelled. The value should be ignored.
1999
2000 =item C<Wrongbranch>
2001
2002 This book has was returned to the wrong branch.  The value is a hashref
2003 so that C<$messages->{Wrongbranch}->{Wrongbranch}> and C<$messages->{Wrongbranch}->{Rightbranch}>
2004 contain the branchcode of the incorrect and correct return library, respectively.
2005
2006 =item C<ResFound>
2007
2008 The item was reserved. The value is a reference-to-hash whose keys are
2009 fields from the reserves table of the Koha database, and
2010 C<biblioitemnumber>. It also has the key C<ResFound>, whose value is
2011 either C<Waiting>, C<Reserved>, or 0.
2012
2013 =item C<WasReturned>
2014
2015 Value 1 if return is successful.
2016
2017 =item C<NeedsTransfer>
2018
2019 If AutomaticItemReturn is disabled, return branch is given as value of NeedsTransfer.
2020
2021 =item C<RecallFound>
2022
2023 This item can fill a recall. The recall object is returned. If the recall pickup branch differs from
2024 the branch this item is being returned at, C<RecallNeedsTransfer> is also returned which contains this
2025 branchcode.
2026
2027 =item C<TransferredRecall>
2028
2029 This item has been transferred to this branch to fill a recall. The recall object is returned.
2030
2031 =back
2032
2033 C<$iteminformation> is a reference-to-hash, giving information about the
2034 returned item from the issues table.
2035
2036 C<$borrower> is a reference-to-hash, giving information about the
2037 patron who last borrowed the book.
2038
2039 =cut
2040
2041 sub AddReturn {
2042     my ( $barcode, $branch, $exemptfine, $return_date ) = @_;
2043
2044     if ($branch and not Koha::Libraries->find($branch)) {
2045         warn "AddReturn error: branch '$branch' not found.  Reverting to " . C4::Context->userenv->{'branch'};
2046         undef $branch;
2047     }
2048     $branch = C4::Context->userenv->{'branch'} unless $branch;  # we trust userenv to be a safe fallback/default
2049     my $return_date_specified = !!$return_date;
2050     $return_date //= dt_from_string();
2051     my $messages;
2052     my $patron;
2053     my $doreturn       = 1;
2054     my $validTransfer = 1;
2055     my $stat_type = 'return';
2056
2057     # get information on item
2058     my $item = Koha::Items->find({ barcode => $barcode });
2059     unless ($item) {
2060         return ( 0, { BadBarcode => $barcode } );    # no barcode means no item or borrower.  bail out.
2061     }
2062
2063     my $itemnumber = $item->itemnumber;
2064     my $itemtype = $item->effective_itemtype;
2065
2066     my $issue  = $item->checkout;
2067     if ( $issue ) {
2068         $patron = $issue->patron
2069             or die "Data inconsistency: barcode $barcode (itemnumber:$itemnumber) claims to be issued to non-existent borrowernumber '" . $issue->borrowernumber . "'\n"
2070                 . Dumper($issue->unblessed) . "\n";
2071     } else {
2072         $messages->{'NotIssued'} = $barcode;
2073         $item->onloan(undef)->store({skip_record_index=>1}) if defined $item->onloan;
2074
2075         # even though item is not on loan, it may still be transferred;  therefore, get current branch info
2076         $doreturn = 0;
2077         # No issue, no borrowernumber.  ONLY if $doreturn, *might* you have a $borrower later.
2078         # Record this as a local use, instead of a return, if the RecordLocalUseOnReturn is on
2079         if (C4::Context->preference("RecordLocalUseOnReturn")) {
2080            $messages->{'LocalUse'} = 1;
2081            $stat_type = 'localuse';
2082         }
2083     }
2084
2085         # full item data, but no borrowernumber or checkout info (no issue)
2086     my $hbr = GetBranchItemRule($item->homebranch, $itemtype)->{'returnbranch'} || "homebranch";
2087         # get the proper branch to which to return the item
2088     my $returnbranch = $hbr ne 'noreturn' ? $item->$hbr : $branch;
2089         # if $hbr was "noreturn" or any other non-item table value, then it should 'float' (i.e. stay at this branch)
2090     my $transfer_trigger = $hbr eq 'homebranch' ? 'ReturnToHome' : $hbr eq 'holdingbranch' ? 'ReturnToHolding' : undef;
2091
2092     my $borrowernumber = $patron ? $patron->borrowernumber : undef;    # we don't know if we had a borrower or not
2093     my $patron_unblessed = $patron ? $patron->unblessed : {};
2094
2095     my $update_loc_rules = Koha::Config::SysPrefs->find('UpdateItemLocationOnCheckin')->get_yaml_pref_hash();
2096     map { $update_loc_rules->{$_} = $update_loc_rules->{$_}[0] } keys %$update_loc_rules; #We can only move to one location so we flatten the arrays
2097     if ($update_loc_rules) {
2098         if (defined $update_loc_rules->{_ALL_}) {
2099             if ($update_loc_rules->{_ALL_} eq '_PERM_') { $update_loc_rules->{_ALL_} = $item->permanent_location; }
2100             if ($update_loc_rules->{_ALL_} eq '_BLANK_') { $update_loc_rules->{_ALL_} = ''; }
2101             if (
2102                 ( defined $item->location && $item->location ne $update_loc_rules->{_ALL_}) ||
2103                 (!defined $item->location && $update_loc_rules->{_ALL_} ne "")
2104                ) {
2105                 $messages->{'ItemLocationUpdated'} = { from => $item->location, to => $update_loc_rules->{_ALL_} };
2106                 $item->location($update_loc_rules->{_ALL_})->store({skip_record_index=>1});
2107             }
2108         }
2109         else {
2110             foreach my $key ( keys %$update_loc_rules ) {
2111                 if ( $update_loc_rules->{$key} eq '_PERM_' ) { $update_loc_rules->{$key} = $item->permanent_location; }
2112                 if ( $update_loc_rules->{$key} eq '_BLANK_') { $update_loc_rules->{$key} = '' ;}
2113                 if ( ($item->location eq $key && $item->location ne $update_loc_rules->{$key}) || ($key eq '_BLANK_' && $item->location eq '' && $update_loc_rules->{$key} ne '') ) {
2114                     $messages->{'ItemLocationUpdated'} = { from => $item->location, to => $update_loc_rules->{$key} };
2115                     $item->location($update_loc_rules->{$key})->store({skip_record_index=>1});
2116                     last;
2117                 }
2118             }
2119         }
2120     }
2121
2122     my $yaml = C4::Context->preference('UpdateNotForLoanStatusOnCheckin');
2123     if ($yaml) {
2124         $yaml = "$yaml\n\n";  # YAML is anal on ending \n. Surplus does not hurt
2125         my $rules;
2126         eval { $rules = YAML::XS::Load(Encode::encode_utf8($yaml)); };
2127         if ($@) {
2128             warn "Unable to parse UpdateNotForLoanStatusOnCheckin syspref : $@";
2129         }
2130         else {
2131             foreach my $key ( keys %$rules ) {
2132                 if ( $item->notforloan eq $key ) {
2133                     $messages->{'NotForLoanStatusUpdated'} = { from => $item->notforloan, to => $rules->{$key} };
2134                     $item->notforloan($rules->{$key})->store({ log_action => 0, skip_record_index => 1 });
2135                     last;
2136                 }
2137             }
2138         }
2139     }
2140
2141     # check if the return is allowed at this branch
2142     my ($returnallowed, $message) = CanBookBeReturned($item->unblessed, $branch);
2143     unless ($returnallowed){
2144         $messages->{'Wrongbranch'} = {
2145             Wrongbranch => $branch,
2146             Rightbranch => $message
2147         };
2148         $doreturn = 0;
2149         my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
2150         $indexer->index_records( $item->biblionumber, "specialUpdate", "biblioserver" );
2151         return ( $doreturn, $messages, $issue, $patron_unblessed);
2152     }
2153
2154     if ( $item->withdrawn ) { # book has been cancelled
2155         $messages->{'withdrawn'} = 1;
2156         $doreturn = 0 if C4::Context->preference("BlockReturnOfWithdrawnItems");
2157     }
2158
2159     if ( $item->itemlost and C4::Context->preference("BlockReturnOfLostItems") ) {
2160         $doreturn = 0;
2161     }
2162
2163     # case of a return of document (deal with issues and holdingbranch)
2164     if ($doreturn) {
2165         die "The item is not issed and cannot be returned" unless $issue; # Just in case...
2166         $patron or warn "AddReturn without current borrower";
2167
2168         if ($patron) {
2169             eval {
2170                 MarkIssueReturned( $borrowernumber, $item->itemnumber, $return_date, $patron->privacy, { skip_record_index => 1} );
2171             };
2172             unless ( $@ ) {
2173                 if (
2174                     (
2175                         C4::Context->preference('CalculateFinesOnReturn')
2176                         || ( $return_date_specified && C4::Context->preference('CalculateFinesOnBackdate') )
2177                     )
2178                     && !$item->itemlost
2179                   )
2180                 {
2181                     _CalculateAndUpdateFine( { issue => $issue, item => $item->unblessed, borrower => $patron_unblessed, return_date => $return_date } );
2182                 }
2183             } else {
2184                 carp "The checkin for the following issue failed, Please go to the about page and check all messages on the 'System information' to see if there are configuration / data issues ($@)" . Dumper( $issue->unblessed );
2185
2186                 my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
2187                 $indexer->index_records( $item->biblionumber, "specialUpdate", "biblioserver" );
2188
2189                 return ( 0, { WasReturned => 0, DataCorrupted => 1 }, $issue, $patron_unblessed );
2190             }
2191
2192             # FIXME is the "= 1" right?  This could be the borrower hash.
2193             $messages->{'WasReturned'} = 1;
2194
2195         } else {
2196             $item->onloan(undef)->store({ log_action => 0 , skip_record_index => 1 });
2197         }
2198     }
2199
2200     # the holdingbranch is updated if the document is returned to another location.
2201     # this is always done regardless of whether the item was on loan or not
2202     if ($item->holdingbranch ne $branch) {
2203         $item->holdingbranch($branch)->store({ skip_record_index => 1 });
2204     }
2205
2206     my $item_was_lost = $item->itemlost;
2207     my $leave_item_lost = C4::Context->preference("BlockReturnOfLostItems") ? 1 : 0;
2208     my $updated_item = ModDateLastSeen( $item->itemnumber, $leave_item_lost, { skip_record_index => 1 } ); # will unset itemlost if needed
2209
2210     # fix up the accounts.....
2211     if ($item_was_lost) {
2212         $messages->{'WasLost'} = 1;
2213         unless ( C4::Context->preference("BlockReturnOfLostItems") ) {
2214             my @object_messages = @{ $updated_item->object_messages };
2215             for my $message (@object_messages) {
2216                 $messages->{'LostItemFeeRefunded'} = 1
2217                   if $message->message eq 'lost_refunded';
2218                 $messages->{'LostItemFeeRestored'} = 1
2219                   if $message->message eq 'lost_restored';
2220
2221                 if ( $message->message eq 'lost_charge' ) {
2222                     $issue //= Koha::Old::Checkouts->search(
2223                         { itemnumber => $item->itemnumber },
2224                         { order_by   => { '-desc' => 'returndate' }, rows => 1 }
2225                     )->single;
2226                     unless ( exists( $patron_unblessed->{branchcode} ) ) {
2227                         my $patron = $issue->patron;
2228                         $patron_unblessed = $patron->unblessed;
2229                     }
2230                     _CalculateAndUpdateFine(
2231                         {
2232                             issue       => $issue,
2233                             item        => $item->unblessed,
2234                             borrower    => $patron_unblessed,
2235                             return_date => $return_date
2236                         }
2237                     );
2238                     _FixOverduesOnReturn( $patron_unblessed->{borrowernumber},
2239                         $item->itemnumber, undef, 'RETURNED' );
2240                     $messages->{'LostItemFeeCharged'} = 1;
2241                 }
2242             }
2243         }
2244     }
2245
2246     # check if we have a transfer for this document
2247     my $transfer = $item->get_transfer;
2248
2249     # if we have a transfer to complete, we update the line of transfers with the datearrived
2250     if ($transfer) {
2251         $validTransfer = 0;
2252         if ( $transfer->in_transit ) {
2253             if ( $transfer->tobranch eq $branch ) {
2254                 $transfer->receive;
2255                 $messages->{'TransferArrived'} = $transfer->frombranch;
2256                 # validTransfer=1 allows us returning the item back if the reserve is cancelled
2257                 $validTransfer = 1 if $transfer->reason eq 'Reserve';
2258             }
2259             else {
2260                 $messages->{'WrongTransfer'}     = $transfer->tobranch;
2261                 $messages->{'WrongTransferItem'} = $item->itemnumber;
2262                 $messages->{'TransferTrigger'}   = $transfer->reason;
2263             }
2264         }
2265         else {
2266             if ( $transfer->tobranch eq $branch ) {
2267                 $transfer->receive;
2268                 $messages->{'TransferArrived'} = $transfer->frombranch;
2269                 # validTransfer=1 allows us returning the item back if the reserve is cancelled
2270                 $validTransfer = 1 if $transfer->reason eq 'Reserve';
2271             }
2272             else {
2273                 $messages->{'WasTransfered'}   = $transfer->tobranch;
2274                 $messages->{'TransferTrigger'} = $transfer->reason;
2275             }
2276         }
2277     }
2278
2279     # fix up the overdues in accounts...
2280     if ($borrowernumber) {
2281         my $fix = _FixOverduesOnReturn( $borrowernumber, $item->itemnumber, $exemptfine, 'RETURNED' );
2282         defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, ".$item->itemnumber."...) failed!";  # zero is OK, check defined
2283
2284         if ( $issue and $issue->is_overdue($return_date) ) {
2285         # fix fine days
2286             my ($debardate,$reminder) = _debar_user_on_return( $patron_unblessed, $item->unblessed, dt_from_string($issue->date_due), $return_date );
2287             if ($reminder){
2288                 $messages->{'PrevDebarred'} = $debardate;
2289             } else {
2290                 $messages->{'Debarred'} = $debardate if $debardate;
2291             }
2292         # there's no overdue on the item but borrower had been previously debarred
2293         } elsif ( $issue->date_due and $patron->debarred ) {
2294              if ( $patron->debarred eq "9999-12-31") {
2295                 $messages->{'ForeverDebarred'} = $patron->debarred;
2296              } else {
2297                   my $borrower_debar_dt = dt_from_string( $patron->debarred );
2298                   $borrower_debar_dt->truncate(to => 'day');
2299                   my $today_dt = $return_date->clone()->truncate(to => 'day');
2300                   if ( DateTime->compare( $borrower_debar_dt, $today_dt ) != -1 ) {
2301                       $messages->{'PrevDebarred'} = $patron->debarred;
2302                   }
2303              }
2304         }
2305     }
2306
2307     # find recalls...
2308     if ( C4::Context->preference('UseRecalls') ) {
2309         # check if this item is recallable first, which includes checking if UseRecalls syspref is enabled
2310         my $recall = undef;
2311         $recall = $item->check_recalls if $item->can_be_waiting_recall;
2312         if ( defined $recall ) {
2313             $messages->{RecallFound} = $recall;
2314             if ( $recall->branchcode ne $branch ) {
2315                 $messages->{RecallNeedsTransfer} = $branch;
2316             }
2317         }
2318     }
2319
2320     # find reserves.....
2321     # launch the Checkreserves routine to find any holds
2322     my ($resfound, $resrec);
2323     my $lookahead= C4::Context->preference('ConfirmFutureHolds'); #number of days to look for future holds
2324     ($resfound, $resrec, undef) = C4::Reserves::CheckReserves( $item->itemnumber, undef, $lookahead ) unless ( $item->withdrawn );
2325     # if a hold is found and is waiting at another branch, change the priority back to 1 and trigger the hold (this will trigger a transfer and update the hold status properly)
2326     if ( $resfound and $resfound eq "Waiting" and $branch ne $resrec->{branchcode} ) {
2327         my $hold = C4::Reserves::RevertWaitingStatus( { itemnumber => $item->itemnumber } );
2328         $resfound = 'Reserved';
2329         $resrec = $hold->unblessed;
2330     }
2331     if ($resfound) {
2332           $resrec->{'ResFound'} = $resfound;
2333         $messages->{'ResFound'} = $resrec;
2334     }
2335
2336     # Record the fact that this book was returned.
2337     C4::Stats::UpdateStats({
2338         branch         => $branch,
2339         type           => $stat_type,
2340         itemnumber     => $itemnumber,
2341         itemtype       => $itemtype,
2342         location       => $item->location,
2343         borrowernumber => $borrowernumber,
2344         ccode          => $item->ccode,
2345     });
2346
2347     # Send a check-in slip. # NOTE: borrower may be undef. Do not try to send messages then.
2348     if ( $patron ) {
2349         my $circulation_alert = 'C4::ItemCirculationAlertPreference';
2350         my %conditions = (
2351             branchcode   => $branch,
2352             categorycode => $patron->categorycode,
2353             item_type    => $itemtype,
2354             notification => 'CHECKIN',
2355         );
2356         if ($doreturn && $circulation_alert->is_enabled_for(\%conditions)) {
2357             SendCirculationAlert({
2358                 type     => 'CHECKIN',
2359                 item     => $item->unblessed,
2360                 borrower => $patron->unblessed,
2361                 branch   => $branch,
2362                 issue    => $issue
2363             });
2364         }
2365
2366         logaction("CIRCULATION", "RETURN", $borrowernumber, $item->itemnumber)
2367             if C4::Context->preference("ReturnLog");
2368         }
2369
2370     # Check if this item belongs to a biblio record that is attached to an
2371     # ILL request, if it is we need to update the ILL request's status
2372     if ( $doreturn and C4::Context->preference('CirculateILL')) {
2373         my $request = Koha::Illrequests->find(
2374             { biblio_id => $item->biblio->biblionumber }
2375         );
2376         $request->status('RET') if $request;
2377     }
2378
2379     if ( C4::Context->preference('UseRecalls') ) {
2380         # all recalls that have triggered a transfer will have an allocated itemnumber
2381         my $transfer_recall = Koha::Recalls->find({ itemnumber => $item->itemnumber, status => 'in_transit' });
2382         if ( $transfer_recall and $transfer_recall->branchcode eq $branch ) {
2383             $messages->{TransferredRecall} = $transfer_recall;
2384         }
2385     }
2386
2387     # Transfer to returnbranch if Automatic transfer set or append message NeedsTransfer
2388     if ( $validTransfer && !C4::RotatingCollections::isItemInAnyCollection( $item->itemnumber )
2389         && ( $doreturn or $messages->{'NotIssued'} )
2390         and !$resfound
2391         and ( $branch ne $returnbranch )
2392         and not $messages->{'WrongTransfer'}
2393         and not $messages->{'WasTransfered'}
2394         and not $messages->{TransferredRecall}
2395         and not $messages->{RecallNeedsTransfer} )
2396     {
2397         my $BranchTransferLimitsType = C4::Context->preference("BranchTransferLimitsType") eq 'itemtype' ? 'effective_itemtype' : 'ccode';
2398         if  (C4::Context->preference("AutomaticItemReturn"    ) or
2399             (C4::Context->preference("UseBranchTransferLimits") and
2400              ! IsBranchTransferAllowed($branch, $returnbranch, $item->$BranchTransferLimitsType )
2401            )) {
2402             ModItemTransfer($item->itemnumber, $branch, $returnbranch, $transfer_trigger, { skip_record_index => 1 });
2403             $messages->{'WasTransfered'} = $returnbranch;
2404             $messages->{'TransferTrigger'} = $transfer_trigger;
2405         } else {
2406             $messages->{'NeedsTransfer'} = $returnbranch;
2407             $messages->{'TransferTrigger'} = $transfer_trigger;
2408         }
2409     }
2410
2411     if ( C4::Context->preference('ClaimReturnedLostValue') ) {
2412         my $claims = Koha::Checkouts::ReturnClaims->search(
2413            {
2414                itemnumber => $item->id,
2415                resolution => undef,
2416            }
2417         );
2418
2419         if ( $claims->count ) {
2420             $messages->{ReturnClaims} = $claims;
2421         }
2422     }
2423
2424     my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
2425     $indexer->index_records( $item->biblionumber, "specialUpdate", "biblioserver" );
2426
2427     if ( $doreturn and $issue ) {
2428         my $checkin = Koha::Old::Checkouts->find($issue->id);
2429
2430         Koha::Plugins->call('after_circ_action', {
2431             action  => 'checkin',
2432             payload => {
2433                 checkout=> $checkin
2434             }
2435         });
2436     }
2437
2438     return ( $doreturn, $messages, $issue, ( $patron ? $patron->unblessed : {} ));
2439 }
2440
2441 =head2 MarkIssueReturned
2442
2443   MarkIssueReturned($borrowernumber, $itemnumber, $returndate, $privacy, [$params] );
2444
2445 Unconditionally marks an issue as being returned by
2446 moving the C<issues> row to C<old_issues> and
2447 setting C<returndate> to the current date.
2448
2449 if C<$returndate> is specified (in iso format), it is used as the date
2450 of the return.
2451
2452 C<$privacy> contains the privacy parameter. If the patron has set privacy to 2,
2453 the old_issue is immediately anonymised
2454
2455 Ideally, this function would be internal to C<C4::Circulation>,
2456 not exported, but it is currently used in misc/cronjobs/longoverdue.pl
2457 and offline_circ/process_koc.pl.
2458
2459 The last optional parameter allos passing skip_record_index to the item store call.
2460
2461 =cut
2462
2463 sub MarkIssueReturned {
2464     my ( $borrowernumber, $itemnumber, $returndate, $privacy, $params ) = @_;
2465
2466     # Retrieve the issue
2467     my $issue = Koha::Checkouts->find( { itemnumber => $itemnumber } ) or return;
2468
2469     return unless $issue->borrowernumber == $borrowernumber; # If the item is checked out to another patron we do not return it
2470
2471     my $issue_id = $issue->issue_id;
2472
2473     my $schema = Koha::Database->schema;
2474
2475     # FIXME Improve the return value and handle it from callers
2476     $schema->txn_do(sub {
2477
2478         my $patron = Koha::Patrons->find( $borrowernumber );
2479
2480         # Update the returndate value
2481         if ( $returndate ) {
2482             $issue->returndate( $returndate )->store->discard_changes; # update and refetch
2483         }
2484         else {
2485             $issue->returndate( \'NOW()' )->store->discard_changes; # update and refetch
2486         }
2487
2488         # Create the old_issues entry
2489         my $old_checkout = Koha::Old::Checkout->new($issue->unblessed)->store;
2490
2491         # anonymise patron checkout immediately if $privacy set to 2 and AnonymousPatron is set to a valid borrowernumber
2492         if ( $privacy && $privacy == 2) {
2493             $old_checkout->anonymize;
2494         }
2495
2496         # And finally delete the issue
2497         $issue->delete;
2498
2499         $issue->item->onloan(undef)->store({ log_action => 0, skip_record_index => $params->{skip_record_index} });
2500
2501         if ( C4::Context->preference('StoreLastBorrower') ) {
2502             my $item = Koha::Items->find( $itemnumber );
2503             $item->last_returned_by( $patron );
2504         }
2505
2506         # Remove any OVERDUES related debarment if the borrower has no overdues
2507         if ( C4::Context->preference('AutoRemoveOverduesRestrictions')
2508           && $patron->debarred
2509           && !$patron->has_overdues
2510           && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
2511         ) {
2512             DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
2513         }
2514
2515     });
2516
2517     return $issue_id;
2518 }
2519
2520 =head2 _debar_user_on_return
2521
2522     _debar_user_on_return($borrower, $item, $datedue, $returndate);
2523
2524 C<$borrower> borrower hashref
2525
2526 C<$item> item hashref
2527
2528 C<$datedue> date due DateTime object
2529
2530 C<$returndate> DateTime object representing the return time
2531
2532 Internal function, called only by AddReturn that calculates and updates
2533  the user fine days, and debars them if necessary.
2534
2535 Should only be called for overdue returns
2536
2537 Calculation of the debarment date has been moved to a separate subroutine _calculate_new_debar_dt
2538 to ease testing.
2539
2540 =cut
2541
2542 sub _calculate_new_debar_dt {
2543     my ( $borrower, $item, $dt_due, $return_date ) = @_;
2544
2545     my $branchcode = _GetCircControlBranch( $item, $borrower );
2546     my $circcontrol = C4::Context->preference('CircControl');
2547     my $issuing_rule = Koha::CirculationRules->get_effective_rules(
2548         {   categorycode => $borrower->{categorycode},
2549             itemtype     => $item->{itype},
2550             branchcode   => $branchcode,
2551             rules => [
2552                 'finedays',
2553                 'lengthunit',
2554                 'firstremind',
2555                 'maxsuspensiondays',
2556                 'suspension_chargeperiod',
2557             ]
2558         }
2559     );
2560     my $finedays = $issuing_rule ? $issuing_rule->{finedays} : undef;
2561     my $unit     = $issuing_rule ? $issuing_rule->{lengthunit} : undef;
2562     my $chargeable_units = C4::Overdues::get_chargeable_units($unit, $dt_due, $return_date, $branchcode);
2563
2564     return unless $finedays;
2565
2566     # finedays is in days, so hourly loans must multiply by 24
2567     # thus 1 hour late equals 1 day suspension * finedays rate
2568     $finedays = $finedays * 24 if ( $unit eq 'hours' );
2569
2570     # grace period is measured in the same units as the loan
2571     my $grace =
2572       DateTime::Duration->new( $unit => $issuing_rule->{firstremind} // 0);
2573
2574     my $deltadays = DateTime::Duration->new(
2575         days => $chargeable_units
2576     );
2577
2578     if ( $deltadays->subtract($grace)->is_positive() ) {
2579         my $suspension_days = $deltadays * $finedays;
2580
2581         if ( defined $issuing_rule->{suspension_chargeperiod} && $issuing_rule->{suspension_chargeperiod} > 1 ) {
2582             # No need to / 1 and do not consider / 0
2583             $suspension_days = DateTime::Duration->new(
2584                 days => floor( $suspension_days->in_units('days') / $issuing_rule->{suspension_chargeperiod} )
2585             );
2586         }
2587
2588         # If the max suspension days is < than the suspension days
2589         # the suspension days is limited to this maximum period.
2590         my $max_sd = $issuing_rule->{maxsuspensiondays};
2591         if ( defined $max_sd && $max_sd ne '' ) {
2592             $max_sd = DateTime::Duration->new( days => $max_sd );
2593             $suspension_days = $max_sd
2594               if DateTime::Duration->compare( $max_sd, $suspension_days ) < 0;
2595         }
2596
2597         my ( $has_been_extended );
2598         if ( C4::Context->preference('CumulativeRestrictionPeriods') and $borrower->{debarred} ) {
2599             my $debarment = @{ GetDebarments( { borrowernumber => $borrower->{borrowernumber}, type => 'SUSPENSION' } ) }[0];
2600             if ( $debarment ) {
2601                 $return_date = dt_from_string( $debarment->{expiration}, 'sql' );
2602                 $has_been_extended = 1;
2603             }
2604         }
2605
2606         my $new_debar_dt;
2607         # Use the calendar or not to calculate the debarment date
2608         if ( C4::Context->preference('SuspensionsCalendar') eq 'noSuspensionsWhenClosed' ) {
2609             my $calendar = Koha::Calendar->new(
2610                 branchcode => $branchcode,
2611                 days_mode  => 'Calendar'
2612             );
2613             $new_debar_dt = $calendar->addDuration( $return_date, $suspension_days );
2614         }
2615         else {
2616             $new_debar_dt = $return_date->clone()->add_duration($suspension_days);
2617         }
2618         return $new_debar_dt;
2619     }
2620     return;
2621 }
2622
2623 sub _debar_user_on_return {
2624     my ( $borrower, $item, $dt_due, $return_date ) = @_;
2625
2626     $return_date //= dt_from_string();
2627
2628     my $new_debar_dt = _calculate_new_debar_dt ($borrower, $item, $dt_due, $return_date);
2629
2630     return unless $new_debar_dt;
2631
2632     Koha::Patron::Debarments::AddUniqueDebarment({
2633         borrowernumber => $borrower->{borrowernumber},
2634         expiration     => $new_debar_dt->ymd(),
2635         type           => 'SUSPENSION',
2636     });
2637     # if borrower was already debarred but does not get an extra debarment
2638     my $patron = Koha::Patrons->find( $borrower->{borrowernumber} );
2639     my ($new_debarment_str, $is_a_reminder);
2640     if ( $borrower->{debarred} && $borrower->{debarred} eq $patron->is_debarred ) {
2641         $is_a_reminder = 1;
2642         $new_debarment_str = $borrower->{debarred};
2643     } else {
2644         $new_debarment_str = $new_debar_dt->ymd();
2645     }
2646     # FIXME Should return a DateTime object
2647     return $new_debarment_str, $is_a_reminder;
2648 }
2649
2650 =head2 _FixOverduesOnReturn
2651
2652    &_FixOverduesOnReturn($borrowernumber, $itemnumber, $exemptfine, $status);
2653
2654 C<$borrowernumber> borrowernumber
2655
2656 C<$itemnumber> itemnumber
2657
2658 C<$exemptfine> BOOL -- remove overdue charge associated with this issue. 
2659
2660 C<$status> ENUM -- reason for fix [ RETURNED, RENEWED, LOST, FORGIVEN ]
2661
2662 Internal function
2663
2664 =cut
2665
2666 sub _FixOverduesOnReturn {
2667     my ( $borrowernumber, $item, $exemptfine, $status ) = @_;
2668     unless( $borrowernumber ) {
2669         warn "_FixOverduesOnReturn() not supplied valid borrowernumber";
2670         return;
2671     }
2672     unless( $item ) {
2673         warn "_FixOverduesOnReturn() not supplied valid itemnumber";
2674         return;
2675     }
2676     unless( $status ) {
2677         warn "_FixOverduesOnReturn() not supplied valid status";
2678         return;
2679     }
2680
2681     my $schema = Koha::Database->schema;
2682
2683     my $result = $schema->txn_do(
2684         sub {
2685             # check for overdue fine
2686             my $accountlines = Koha::Account::Lines->search(
2687                 {
2688                     borrowernumber  => $borrowernumber,
2689                     itemnumber      => $item,
2690                     debit_type_code => 'OVERDUE',
2691                     status          => 'UNRETURNED'
2692                 }
2693             );
2694             return 0 unless $accountlines->count; # no warning, there's just nothing to fix
2695
2696             my $accountline = $accountlines->next;
2697             my $payments = $accountline->credits;
2698
2699             my $amountoutstanding = $accountline->amountoutstanding;
2700             if ( $accountline->amount == 0 && $payments->count == 0 ) {
2701                 $accountline->delete;
2702                 return 0; # no warning, we've just removed a zero value fine (backdated return)
2703             } elsif ($exemptfine && ($amountoutstanding != 0)) {
2704                 my $account = Koha::Account->new({patron_id => $borrowernumber});
2705                 my $credit = $account->add_credit(
2706                     {
2707                         amount     => $amountoutstanding,
2708                         user_id    => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
2709                         library_id => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
2710                         interface  => C4::Context->interface,
2711                         type       => 'FORGIVEN',
2712                         item_id    => $item
2713                     }
2714                 );
2715
2716                 $credit->apply({ debits => [ $accountline ] });
2717
2718                 if (C4::Context->preference("FinesLog")) {
2719                     &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
2720                 }
2721             }
2722
2723             $accountline->status($status);
2724             return $accountline->store();
2725         }
2726     );
2727
2728     return $result;
2729 }
2730
2731 =head2 _GetCircControlBranch
2732
2733    my $circ_control_branch = _GetCircControlBranch($iteminfos, $borrower);
2734
2735 Internal function : 
2736
2737 Return the library code to be used to determine which circulation
2738 policy applies to a transaction.  Looks up the CircControl and
2739 HomeOrHoldingBranch system preferences.
2740
2741 C<$iteminfos> is a hashref to iteminfo. Only {homebranch or holdingbranch} is used.
2742
2743 C<$borrower> is a hashref to borrower. Only {branchcode} is used.
2744
2745 =cut
2746
2747 sub _GetCircControlBranch {
2748     my ($item, $borrower) = @_;
2749     my $circcontrol = C4::Context->preference('CircControl');
2750     my $branch;
2751
2752     if ($circcontrol eq 'PickupLibrary' and (C4::Context->userenv and C4::Context->userenv->{'branch'}) ) {
2753         $branch= C4::Context->userenv->{'branch'};
2754     } elsif ($circcontrol eq 'PatronLibrary') {
2755         $branch=$borrower->{branchcode};
2756     } else {
2757         my $branchfield = C4::Context->preference('HomeOrHoldingBranch') || 'homebranch';
2758         $branch = $item->{$branchfield};
2759         # default to item home branch if holdingbranch is used
2760         # and is not defined
2761         if (!defined($branch) && $branchfield eq 'holdingbranch') {
2762             $branch = $item->{homebranch};
2763         }
2764     }
2765     return $branch;
2766 }
2767
2768 =head2 GetOpenIssue
2769
2770   $issue = GetOpenIssue( $itemnumber );
2771
2772 Returns the row from the issues table if the item is currently issued, undef if the item is not currently issued
2773
2774 C<$itemnumber> is the item's itemnumber
2775
2776 Returns a hashref
2777
2778 =cut
2779
2780 sub GetOpenIssue {
2781   my ( $itemnumber ) = @_;
2782   return unless $itemnumber;
2783   my $dbh = C4::Context->dbh;  
2784   my $sth = $dbh->prepare( "SELECT * FROM issues WHERE itemnumber = ? AND returndate IS NULL" );
2785   $sth->execute( $itemnumber );
2786   return $sth->fetchrow_hashref();
2787
2788 }
2789
2790 =head2 GetUpcomingDueIssues
2791
2792   my $upcoming_dues = GetUpcomingDueIssues( { days_in_advance => 4 } );
2793
2794 =cut
2795
2796 sub GetUpcomingDueIssues {
2797     my $params = shift;
2798
2799     $params->{'days_in_advance'} = 7 unless exists $params->{'days_in_advance'};
2800     my $dbh = C4::Context->dbh;
2801     my $statement;
2802     $statement = q{
2803         SELECT issues.*, items.itype as itemtype, items.homebranch, TO_DAYS( date_due )-TO_DAYS( NOW() ) as days_until_due, branches.branchemail
2804         FROM issues
2805         LEFT JOIN items USING (itemnumber)
2806         LEFT JOIN branches ON branches.branchcode =
2807     };
2808     $statement .= $params->{'owning_library'} ? " items.homebranch " : " issues.branchcode ";
2809     $statement .= " WHERE returndate is NULL AND TO_DAYS( date_due )-TO_DAYS( NOW() ) BETWEEN 0 AND ?";
2810     my @bind_parameters = ( $params->{'days_in_advance'} );
2811     
2812     my $sth = $dbh->prepare( $statement );
2813     $sth->execute( @bind_parameters );
2814     my $upcoming_dues = $sth->fetchall_arrayref({});
2815
2816     return $upcoming_dues;
2817 }
2818
2819 =head2 CanBookBeRenewed
2820
2821   ($ok,$error) = &CanBookBeRenewed($borrowernumber, $itemnumber[, $override_limit]);
2822
2823 Find out whether a borrowed item may be renewed.
2824
2825 C<$borrowernumber> is the borrower number of the patron who currently
2826 has the item on loan.
2827
2828 C<$itemnumber> is the number of the item to renew.
2829
2830 C<$override_limit>, if supplied with a true value, causes
2831 the limit on the number of times that the loan can be renewed
2832 (as controlled by the item type) to be ignored. Overriding also allows
2833 to renew sooner than "No renewal before" and to manually renew loans
2834 that are automatically renewed.
2835
2836 C<$CanBookBeRenewed> returns a true value if the item may be renewed. The
2837 item must currently be on loan to the specified borrower; renewals
2838 must be allowed for the item's type; and the borrower must not have
2839 already renewed the loan. $error will contain the reason the renewal can not proceed
2840
2841 =cut
2842
2843 sub CanBookBeRenewed {
2844     my ( $borrowernumber, $itemnumber, $override_limit, $cron ) = @_;
2845
2846     my $auto_renew = "no";
2847
2848     my $item      = Koha::Items->find($itemnumber)      or return ( 0, 'no_item' );
2849     my $issue = $item->checkout or return ( 0, 'no_checkout' );
2850     return ( 0, 'onsite_checkout' ) if $issue->onsite_checkout;
2851     return ( 0, 'item_denied_renewal') if _item_denied_renewal({ item => $item });
2852
2853     my $patron = $issue->patron or return;
2854
2855     # override_limit will override anything else except on_reserve
2856     unless ( $override_limit ){
2857         my $branchcode = _GetCircControlBranch( $item->unblessed, $patron->unblessed );
2858         my $issuing_rule = Koha::CirculationRules->get_effective_rules(
2859             {
2860                 categorycode => $patron->categorycode,
2861                 itemtype     => $item->effective_itemtype,
2862                 branchcode   => $branchcode,
2863                 rules => [
2864                     'renewalsallowed',
2865                     'lengthunit',
2866                     'unseen_renewals_allowed'
2867                 ]
2868             }
2869         );
2870
2871         return ( 0, "too_many" )
2872           if not $issuing_rule->{renewalsallowed} or $issuing_rule->{renewalsallowed} <= $issue->renewals;
2873
2874         return ( 0, "too_unseen" )
2875           if C4::Context->preference('UnseenRenewals') &&
2876             $issuing_rule->{unseen_renewals_allowed} &&
2877             $issuing_rule->{unseen_renewals_allowed} <= $issue->unseen_renewals;
2878
2879         my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
2880         my $restrictionblockrenewing = C4::Context->preference('RestrictionBlockRenewing');
2881         $patron         = Koha::Patrons->find($borrowernumber); # FIXME Is this really useful?
2882         my $restricted  = $patron->is_debarred;
2883         my $hasoverdues = $patron->has_overdues;
2884
2885         if ( $restricted and $restrictionblockrenewing ) {
2886             return ( 0, 'restriction');
2887         } elsif ( ($hasoverdues and $overduesblockrenewing eq 'block') || ($issue->is_overdue and $overduesblockrenewing eq 'blockitem') ) {
2888             return ( 0, 'overdue');
2889         }
2890
2891         $auto_renew = _CanBookBeAutoRenewed({
2892             patron     => $patron,
2893             item       => $item,
2894             branchcode => $branchcode,
2895             issue      => $issue
2896         });
2897         return ( 0, $auto_renew  ) if $auto_renew =~ 'auto_too_soon' && $cron;
2898         # cron wants 'too_soon' over 'on_reserve' for performance and to avoid
2899         # extra notices being sent. Cron also implies no override
2900         return ( 0, $auto_renew  ) if $auto_renew =~ 'auto_account_expired';
2901         return ( 0, $auto_renew  ) if $auto_renew =~ 'auto_too_late';
2902         return ( 0, $auto_renew  ) if $auto_renew =~ 'auto_too_much_oweing';
2903     }
2904
2905     if ( C4::Context->preference('UseRecalls') ) {
2906         my $recall = undef;
2907         $recall = $item->check_recalls if $item->can_be_waiting_recall;
2908         if ( defined $recall ) {
2909             if ( $recall->item_level_recall ) {
2910                 # item-level recall. check if this item is the recalled item, otherwise renewal will be allowed
2911                 return ( 0, 'recalled' ) if ( $recall->itemnumber == $item->itemnumber );
2912             } else {
2913                 # biblio-level recall, so only disallow renewal if the biblio-level recall has been fulfilled by a different item
2914                 return ( 0, 'recalled' ) unless ( $recall->waiting );
2915             }
2916         }
2917     }
2918
2919     my ( $resfound, $resrec, $possible_reserves ) = C4::Reserves::CheckReserves($itemnumber);
2920
2921     # If next hold is non priority, then check if any hold with priority (non_priority = 0) exists for the same biblionumber.
2922     if ( $resfound && $resrec->{non_priority} ) {
2923         $resfound = Koha::Holds->search(
2924             { biblionumber => $resrec->{biblionumber}, non_priority => 0 } )
2925           ->count > 0;
2926     }
2927
2928
2929
2930     # This item can fill one or more unfilled reserve, can those unfilled reserves
2931     # all be filled by other available items?
2932     if ( $resfound
2933         && C4::Context->preference('AllowRenewalIfOtherItemsAvailable') )
2934     {
2935         my $item_holds = Koha::Holds->search( { itemnumber => $itemnumber, found => undef } )->count();
2936         if ($item_holds) {
2937             # There is an item level hold on this item, no other item can fill the hold
2938             $resfound = 1;
2939         }
2940         else {
2941
2942             # Get all other items that could possibly fill reserves
2943             my $items = Koha::Items->search({
2944                 biblionumber => $resrec->{biblionumber},
2945                 onloan       => undef,
2946                 notforloan   => 0,
2947                 -not         => { itemnumber => $itemnumber }
2948             });
2949
2950             # Get all other reserves that could have been filled by this item
2951             my @borrowernumbers = map { $_->{borrowernumber} } @$possible_reserves;
2952             my $patrons = Koha::Patrons->search({
2953                 borrowernumber => { -in => \@borrowernumbers }
2954             });
2955
2956             # If the count of the union of the lists of reservable items for each borrower
2957             # is equal or greater than the number of borrowers, we know that all reserves
2958             # can be filled with available items. We can get the union of the sets simply
2959             # by pushing all the elements onto an array and removing the duplicates.
2960             my @reservable;
2961             my %matched_items;
2962             PATRON: while ( my $patron = $patrons->next ) {
2963                 my $items_any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $item->biblionumber, patron => $patron });
2964                 while ( my $other_item = $items->next ) {
2965                     next if $matched_items{$other_item->itemnumber} == 1;
2966                     next if IsItemOnHoldAndFound( $other_item->itemnumber );
2967                     next unless IsAvailableForItemLevelRequest($other_item, $patron, undef, $items_any_available);
2968                     next unless CanItemBeReserved($patron,$other_item,undef,{ignore_hold_counts=>1})->{status} eq 'OK';
2969                     push @reservable, $other_item->itemnumber;
2970                     if (@reservable >= @borrowernumbers) {
2971                         $resfound = 0;
2972                         last PATRON;
2973                     }
2974                     $matched_items{$other_item->itemnumber} = 1;
2975                     last;
2976                 }
2977                 $items->reset;
2978             }
2979         }
2980     }
2981
2982     return ( 0, "on_reserve" ) if $resfound;    # '' when no hold was found
2983     return ( 0, $auto_renew  ) if $auto_renew =~ 'too_soon';#$auto_renew ne "no" && $auto_renew ne "ok";
2984     if ( GetSoonestRenewDate($borrowernumber, $itemnumber) > dt_from_string() ){
2985         return (0, "too_soon") unless $override_limit;
2986     }
2987
2988     return ( 0, "auto_renew" ) if $auto_renew eq "ok" && !$override_limit; # 0 if auto-renewal should not succeed
2989
2990     return ( 1, undef );
2991 }
2992
2993 =head2 AddRenewal
2994
2995   &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate], [$seen]);
2996
2997 Renews a loan.
2998
2999 C<$borrowernumber> is the borrower number of the patron who currently
3000 has the item.
3001
3002 C<$itemnumber> is the number of the item to renew.
3003
3004 C<$branch> is the library where the renewal took place (if any).
3005            The library that controls the circ policies for the renewal is retrieved from the issues record.
3006
3007 C<$datedue> can be a DateTime object used to set the due date.
3008
3009 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate.  If
3010 this parameter is not supplied, lastreneweddate is set to the current date.
3011
3012 C<$skipfinecalc> is an optional boolean. There may be circumstances where, even if the
3013 CalculateFinesOnReturn syspref is enabled, we don't want to calculate fines upon renew,
3014 for example, when we're renewing as a result of a fine being paid (see RenewAccruingItemWhenPaid
3015 syspref)
3016
3017 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
3018 from the book's item type.
3019
3020 C<$seen> is a boolean flag indicating if the item was seen or not during the renewal. This
3021 informs the incrementing of the unseen_renewals column. If this flag is not supplied, we
3022 fallback to a true value
3023
3024 =cut
3025
3026 sub AddRenewal {
3027     my $borrowernumber  = shift;
3028     my $itemnumber      = shift or return;
3029     my $branch          = shift;
3030     my $datedue         = shift;
3031     my $lastreneweddate = shift || dt_from_string();
3032     my $skipfinecalc    = shift;
3033     my $seen            = shift;
3034
3035     # Fallback on a 'seen' renewal
3036     $seen = defined $seen && $seen == 0 ? 0 : 1;
3037
3038     my $item_object   = Koha::Items->find($itemnumber) or return;
3039     my $biblio = $item_object->biblio;
3040     my $issue  = $item_object->checkout;
3041     my $item_unblessed = $item_object->unblessed;
3042
3043     my $dbh = C4::Context->dbh;
3044
3045     return unless $issue;
3046
3047     $borrowernumber ||= $issue->borrowernumber;
3048
3049     if ( defined $datedue && ref $datedue ne 'DateTime' ) {
3050         carp 'Invalid date passed to AddRenewal.';
3051         return;
3052     }
3053
3054     my $patron = Koha::Patrons->find( $borrowernumber ) or return; # FIXME Should do more than just return
3055     my $patron_unblessed = $patron->unblessed;
3056
3057     my $circ_library = Koha::Libraries->find( _GetCircControlBranch($item_unblessed, $patron_unblessed) );
3058
3059     my $schema = Koha::Database->schema;
3060     $schema->txn_do(sub{
3061
3062         if ( !$skipfinecalc && C4::Context->preference('CalculateFinesOnReturn') ) {
3063             _CalculateAndUpdateFine( { issue => $issue, item => $item_unblessed, borrower => $patron_unblessed } );
3064         }
3065         _FixOverduesOnReturn( $borrowernumber, $itemnumber, undef, 'RENEWED' );
3066
3067         # If the due date wasn't specified, calculate it by adding the
3068         # book's loan length to today's date or the current due date
3069         # based on the value of the RenewalPeriodBase syspref.
3070         my $itemtype = $item_object->effective_itemtype;
3071         unless ($datedue) {
3072
3073             $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
3074                                             dt_from_string( $issue->date_due, 'sql' ) :
3075                                             dt_from_string();
3076             $datedue =  CalcDateDue($datedue, $itemtype, $circ_library->branchcode, $patron_unblessed, 'is a renewal');
3077         }
3078
3079         my $fees = Koha::Charges::Fees->new(
3080             {
3081                 patron    => $patron,
3082                 library   => $circ_library,
3083                 item      => $item_object,
3084                 from_date => dt_from_string( $issue->date_due, 'sql' ),
3085                 to_date   => dt_from_string($datedue),
3086             }
3087         );
3088
3089         # Increment the unseen renewals, if appropriate
3090         # We only do so if the syspref is enabled and
3091         # a maximum value has been set in the circ rules
3092         my $unseen_renewals = $issue->unseen_renewals;
3093         if (C4::Context->preference('UnseenRenewals')) {
3094             my $rule = Koha::CirculationRules->get_effective_rule(
3095                 {   categorycode => $patron->categorycode,
3096                     itemtype     => $item_object->effective_itemtype,
3097                     branchcode   => $circ_library->branchcode,
3098                     rule_name    => 'unseen_renewals_allowed'
3099                 }
3100             );
3101             if (!$seen && $rule && $rule->rule_value) {
3102                 $unseen_renewals++;
3103             } else {
3104                 # If the renewal is seen, unseen should revert to 0
3105                 $unseen_renewals = 0;
3106             }
3107         }
3108
3109         # Update the issues record to have the new due date, and a new count
3110         # of how many times it has been renewed.
3111         my $renews = ( $issue->renewals || 0 ) + 1;
3112         my $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, unseen_renewals = ?, lastreneweddate = ? WHERE issue_id = ?");
3113
3114         eval{
3115             $sth->execute( $datedue->strftime('%Y-%m-%d %H:%M'), $renews, $unseen_renewals, $lastreneweddate, $issue->issue_id );
3116         };
3117         if( $sth->err ){
3118             Koha::Exceptions::Checkout::FailedRenewal->throw(
3119                 error => 'Update of issue# ' . $issue->issue_id . ' failed with error: ' . $sth->errstr
3120             );
3121         }
3122
3123         # Update the renewal count on the item, and tell zebra to reindex
3124         $renews = ( $item_object->renewals || 0 ) + 1;
3125         $item_object->renewals($renews);
3126         $item_object->onloan($datedue);
3127         $item_object->store({ log_action => 0 });
3128
3129         # Charge a new rental fee, if applicable
3130         my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
3131         if ( $charge > 0 ) {
3132             AddIssuingCharge($issue, $charge, 'RENT_RENEW');
3133         }
3134
3135         # Charge a new accumulate rental fee, if applicable
3136         my $itemtype_object = Koha::ItemTypes->find( $itemtype );
3137         if ( $itemtype_object ) {
3138             my $accumulate_charge = $fees->accumulate_rentalcharge();
3139             if ( $accumulate_charge > 0 ) {
3140                 AddIssuingCharge( $issue, $accumulate_charge, 'RENT_DAILY_RENEW' )
3141             }
3142             $charge += $accumulate_charge;
3143         }
3144
3145         # Send a renewal slip according to checkout alert preferencei
3146         if ( C4::Context->preference('RenewalSendNotice') eq '1' ) {
3147             my $circulation_alert = 'C4::ItemCirculationAlertPreference';
3148             my %conditions        = (
3149                 branchcode   => $branch,
3150                 categorycode => $patron->categorycode,
3151                 item_type    => $itemtype,
3152                 notification => 'CHECKOUT',
3153             );
3154             if ( $circulation_alert->is_enabled_for( \%conditions ) ) {
3155                 SendCirculationAlert(
3156                     {
3157                         type     => 'RENEWAL',
3158                         item     => $item_unblessed,
3159                         borrower => $patron->unblessed,
3160                         branch   => $branch,
3161                     }
3162                 );
3163             }
3164         }
3165
3166         # Remove any OVERDUES related debarment if the borrower has no overdues
3167         if ( $patron
3168           && $patron->is_debarred
3169           && ! $patron->has_overdues
3170           && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
3171         ) {
3172             DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3173         }
3174
3175         # Add the renewal to stats
3176         C4::Stats::UpdateStats(
3177             {
3178                 branch         => $item_object->renewal_branchcode({branch => $branch}),
3179                 type           => 'renew',
3180                 amount         => $charge,
3181                 itemnumber     => $itemnumber,
3182                 itemtype       => $itemtype,
3183                 location       => $item_object->location,
3184                 borrowernumber => $borrowernumber,
3185                 ccode          => $item_object->ccode,
3186             }
3187         );
3188
3189         #Log the renewal
3190         logaction("CIRCULATION", "RENEWAL", $borrowernumber, $itemnumber) if C4::Context->preference("RenewalLog");
3191
3192         Koha::Plugins->call('after_circ_action', {
3193             action  => 'renewal',
3194             payload => {
3195                 checkout  => $issue->get_from_storage
3196             }
3197         });
3198     });
3199
3200     return $datedue;
3201 }
3202
3203 sub GetRenewCount {
3204     # check renewal status
3205     my ( $bornum, $itemno ) = @_;
3206     my $dbh           = C4::Context->dbh;
3207     my $renewcount    = 0;
3208     my $unseencount    = 0;
3209     my $renewsallowed = 0;
3210     my $unseenallowed = 0;
3211     my $renewsleft    = 0;
3212     my $unseenleft    = 0;
3213
3214     my $patron = Koha::Patrons->find( $bornum );
3215     my $item   = Koha::Items->find($itemno);
3216
3217     return (0, 0, 0, 0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3218
3219     # Look in the issues table for this item, lent to this borrower,
3220     # and not yet returned.
3221
3222     # FIXME - I think this function could be redone to use only one SQL call.
3223     my $sth = $dbh->prepare(
3224         "select * from issues
3225                                 where (borrowernumber = ?)
3226                                 and (itemnumber = ?)"
3227     );
3228     $sth->execute( $bornum, $itemno );
3229     my $data = $sth->fetchrow_hashref;
3230     $renewcount = $data->{'renewals'} if $data->{'renewals'};
3231     $unseencount = $data->{'unseen_renewals'} if $data->{'unseen_renewals'};
3232     # $item and $borrower should be calculated
3233     my $branchcode = _GetCircControlBranch($item->unblessed, $patron->unblessed);
3234
3235     my $rules = Koha::CirculationRules->get_effective_rules(
3236         {
3237             categorycode => $patron->categorycode,
3238             itemtype     => $item->effective_itemtype,
3239             branchcode   => $branchcode,
3240             rules        => [ 'renewalsallowed', 'unseen_renewals_allowed' ]
3241         }
3242     );
3243     $renewsallowed = $rules ? $rules->{renewalsallowed} : 0;
3244     $unseenallowed = $rules->{unseen_renewals_allowed} ?
3245         $rules->{unseen_renewals_allowed} :
3246         0;
3247     $renewsleft    = $renewsallowed - $renewcount;
3248     $unseenleft    = $unseenallowed - $unseencount;
3249     if($renewsleft < 0){ $renewsleft = 0; }
3250     if($unseenleft < 0){ $unseenleft = 0; }
3251     return (
3252         $renewcount,
3253         $renewsallowed,
3254         $renewsleft,
3255         $unseencount,
3256         $unseenallowed,
3257         $unseenleft
3258     );
3259 }
3260
3261 =head2 GetSoonestRenewDate
3262
3263   $NoRenewalBeforeThisDate = &GetSoonestRenewDate($borrowernumber, $itemnumber);
3264
3265 Find out the soonest possible renew date of a borrowed item.
3266
3267 C<$borrowernumber> is the borrower number of the patron who currently
3268 has the item on loan.
3269
3270 C<$itemnumber> is the number of the item to renew.
3271
3272 C<$GetSoonestRenewDate> returns the DateTime of the soonest possible
3273 renew date, based on the value "No renewal before" of the applicable
3274 issuing rule. Returns the current date if the item can already be
3275 renewed, and returns undefined if the borrower, loan, or item
3276 cannot be found.
3277
3278 =cut
3279
3280 sub GetSoonestRenewDate {
3281     my ( $borrowernumber, $itemnumber ) = @_;
3282
3283     my $dbh = C4::Context->dbh;
3284
3285     my $item      = Koha::Items->find($itemnumber)      or return;
3286     my $itemissue = $item->checkout or return;
3287
3288     $borrowernumber ||= $itemissue->borrowernumber;
3289     my $patron = Koha::Patrons->find( $borrowernumber )
3290       or return;
3291
3292     my $branchcode = _GetCircControlBranch( $item->unblessed, $patron->unblessed );
3293     my $issuing_rule = Koha::CirculationRules->get_effective_rules(
3294         {   categorycode => $patron->categorycode,
3295             itemtype     => $item->effective_itemtype,
3296             branchcode   => $branchcode,
3297             rules => [
3298                 'norenewalbefore',
3299                 'lengthunit',
3300             ]
3301         }
3302     );
3303
3304     my $now = dt_from_string;
3305
3306     if ( defined $issuing_rule->{norenewalbefore}
3307         and $issuing_rule->{norenewalbefore} ne "" )
3308     {
3309         my $soonestrenewal =
3310           dt_from_string( $itemissue->date_due )->subtract(
3311             $issuing_rule->{lengthunit} => $issuing_rule->{norenewalbefore} );
3312
3313         if ( C4::Context->preference('NoRenewalBeforePrecision') eq 'date'
3314             and $issuing_rule->{lengthunit} eq 'days' )
3315         {
3316             $soonestrenewal->truncate( to => 'day' );
3317         }
3318         return $soonestrenewal if $now < $soonestrenewal;
3319     } elsif ( $itemissue->auto_renew && $patron->autorenew_checkouts ) {
3320         # Checkouts with auto-renewing fall back to due date
3321         my $soonestrenewal = dt_from_string( $itemissue->date_due );
3322         if ( C4::Context->preference('NoRenewalBeforePrecision') eq 'date'
3323             and $issuing_rule->{lengthunit} eq 'days' )
3324         {
3325             $soonestrenewal->truncate( to => 'day' );
3326         }
3327         return $soonestrenewal;
3328     }
3329     return $now;
3330 }
3331
3332 =head2 GetLatestAutoRenewDate
3333
3334   $NoAutoRenewalAfterThisDate = &GetLatestAutoRenewDate($borrowernumber, $itemnumber);
3335
3336 Find out the latest possible auto renew date of a borrowed item.
3337
3338 C<$borrowernumber> is the borrower number of the patron who currently
3339 has the item on loan.
3340
3341 C<$itemnumber> is the number of the item to renew.
3342
3343 C<$GetLatestAutoRenewDate> returns the DateTime of the latest possible
3344 auto renew date, based on the value "No auto renewal after" and the "No auto
3345 renewal after (hard limit) of the applicable issuing rule.
3346 Returns undef if there is no date specify in the circ rules or if the patron, loan,
3347 or item cannot be found.
3348
3349 =cut
3350
3351 sub GetLatestAutoRenewDate {
3352     my ( $borrowernumber, $itemnumber ) = @_;
3353
3354     my $dbh = C4::Context->dbh;
3355
3356     my $item      = Koha::Items->find($itemnumber)  or return;
3357     my $itemissue = $item->checkout                 or return;
3358
3359     $borrowernumber ||= $itemissue->borrowernumber;
3360     my $patron = Koha::Patrons->find( $borrowernumber )
3361       or return;
3362
3363     my $branchcode = _GetCircControlBranch( $item->unblessed, $patron->unblessed );
3364     my $circulation_rules = Koha::CirculationRules->get_effective_rules(
3365         {
3366             categorycode => $patron->categorycode,
3367             itemtype     => $item->effective_itemtype,
3368             branchcode   => $branchcode,
3369             rules => [
3370                 'no_auto_renewal_after',
3371                 'no_auto_renewal_after_hard_limit',
3372                 'lengthunit',
3373             ]
3374         }
3375     );
3376
3377     return unless $circulation_rules;
3378     return
3379       if ( not $circulation_rules->{no_auto_renewal_after}
3380             or $circulation_rules->{no_auto_renewal_after} eq '' )
3381       and ( not $circulation_rules->{no_auto_renewal_after_hard_limit}
3382              or $circulation_rules->{no_auto_renewal_after_hard_limit} eq '' );
3383
3384     my $maximum_renewal_date;
3385     if ( $circulation_rules->{no_auto_renewal_after} ) {
3386         $maximum_renewal_date = dt_from_string($itemissue->issuedate);
3387         $maximum_renewal_date->add(
3388             $circulation_rules->{lengthunit} => $circulation_rules->{no_auto_renewal_after}
3389         );
3390     }
3391
3392     if ( $circulation_rules->{no_auto_renewal_after_hard_limit} ) {
3393         my $dt = dt_from_string( $circulation_rules->{no_auto_renewal_after_hard_limit} );
3394         $maximum_renewal_date = $dt if not $maximum_renewal_date or $maximum_renewal_date > $dt;
3395     }
3396     return $maximum_renewal_date;
3397 }
3398
3399
3400 =head2 GetIssuingCharges
3401
3402   ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
3403
3404 Calculate how much it would cost for a given patron to borrow a given
3405 item, including any applicable discounts.
3406
3407 C<$itemnumber> is the item number of item the patron wishes to borrow.
3408
3409 C<$borrowernumber> is the patron's borrower number.
3410
3411 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
3412 and C<$item_type> is the code for the item's item type (e.g., C<VID>
3413 if it's a video).
3414
3415 =cut
3416
3417 sub GetIssuingCharges {
3418
3419     # calculate charges due
3420     my ( $itemnumber, $borrowernumber ) = @_;
3421     my $charge = 0;
3422     my $dbh    = C4::Context->dbh;
3423     my $item_type;
3424
3425     # Get the book's item type and rental charge (via its biblioitem).
3426     my $charge_query = 'SELECT itemtypes.itemtype,rentalcharge FROM items
3427         LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber';
3428     $charge_query .= (C4::Context->preference('item-level_itypes'))
3429         ? ' LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype'
3430         : ' LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype';
3431
3432     $charge_query .= ' WHERE items.itemnumber =?';
3433
3434     my $sth = $dbh->prepare($charge_query);
3435     $sth->execute($itemnumber);
3436     if ( my $item_data = $sth->fetchrow_hashref ) {
3437         $item_type = $item_data->{itemtype};
3438         $charge    = $item_data->{rentalcharge};
3439         if ($charge) {
3440             # FIXME This should follow CircControl
3441             my $branch = C4::Context::mybranch();
3442             my $patron = Koha::Patrons->find( $borrowernumber );
3443             my $discount = Koha::CirculationRules->get_effective_rule({
3444                 categorycode => $patron->categorycode,
3445                 branchcode   => $branch,
3446                 itemtype     => $item_type,
3447                 rule_name    => 'rentaldiscount'
3448             });
3449             if ($discount) {
3450                 $charge = ( $charge * ( 100 - $discount->rule_value ) ) / 100;
3451             }
3452             $charge = sprintf '%.2f', $charge; # ensure no fractions of a penny returned
3453         }
3454     }
3455
3456     return ( $charge, $item_type );
3457 }
3458
3459 =head2 AddIssuingCharge
3460
3461   &AddIssuingCharge( $checkout, $charge, $type )
3462
3463 =cut
3464
3465 sub AddIssuingCharge {
3466     my ( $checkout, $charge, $type ) = @_;
3467
3468     # FIXME What if checkout does not exist?
3469
3470     my $account = Koha::Account->new({ patron_id => $checkout->borrowernumber });
3471     my $accountline = $account->add_debit(
3472         {
3473             amount      => $charge,
3474             note        => undef,
3475             user_id     => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
3476             library_id  => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
3477             interface   => C4::Context->interface,
3478             type        => $type,
3479             item_id     => $checkout->itemnumber,
3480             issue_id    => $checkout->issue_id,
3481         }
3482     );
3483 }
3484
3485 =head2 GetTransfers
3486
3487   GetTransfers($itemnumber);
3488
3489 =cut
3490
3491 sub GetTransfers {
3492     my ($itemnumber) = @_;
3493
3494     my $dbh = C4::Context->dbh;
3495
3496     my $query = '
3497         SELECT datesent,
3498                frombranch,
3499                tobranch,
3500                branchtransfer_id,
3501                daterequested,
3502                reason
3503         FROM branchtransfers
3504         WHERE itemnumber = ?
3505           AND datearrived IS NULL
3506           AND datecancelled IS NULL
3507         ';
3508     my $sth = $dbh->prepare($query);
3509     $sth->execute($itemnumber);
3510     my @row = $sth->fetchrow_array();
3511     return @row;
3512 }
3513
3514 =head2 GetTransfersFromTo
3515
3516   @results = GetTransfersFromTo($frombranch,$tobranch);
3517
3518 Returns the list of pending transfers between $from and $to branch
3519
3520 =cut
3521
3522 sub GetTransfersFromTo {
3523     my ( $frombranch, $tobranch ) = @_;
3524     return unless ( $frombranch && $tobranch );
3525     my $dbh   = C4::Context->dbh;
3526     my $query = "
3527         SELECT branchtransfer_id,itemnumber,datesent,frombranch
3528         FROM   branchtransfers
3529         WHERE  frombranch=?
3530           AND  tobranch=?
3531           AND datecancelled IS NULL
3532           AND datesent IS NOT NULL
3533           AND datearrived IS NULL
3534     ";
3535     my $sth = $dbh->prepare($query);
3536     $sth->execute( $frombranch, $tobranch );
3537     my @gettransfers;
3538
3539     while ( my $data = $sth->fetchrow_hashref ) {
3540         push @gettransfers, $data;
3541     }
3542     return (@gettransfers);
3543 }
3544
3545 =head2 SendCirculationAlert
3546
3547 Send out a C<check-in> or C<checkout> alert using the messaging system.
3548
3549 B<Parameters>:
3550
3551 =over 4
3552
3553 =item type
3554
3555 Valid values for this parameter are: C<CHECKIN> and C<CHECKOUT>.
3556
3557 =item item
3558
3559 Hashref of information about the item being checked in or out.
3560
3561 =item borrower
3562
3563 Hashref of information about the borrower of the item.
3564
3565 =item branch
3566
3567 The branchcode from where the checkout or check-in took place.
3568
3569 =back
3570
3571 B<Example>:
3572
3573     SendCirculationAlert({
3574         type     => 'CHECKOUT',
3575         item     => $item,
3576         borrower => $borrower,
3577         branch   => $branch,
3578     });
3579
3580 =cut
3581
3582 sub SendCirculationAlert {
3583     my ($opts) = @_;
3584     my ($type, $item, $borrower, $branch, $issue) =
3585         ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch}, $opts->{issue});
3586     my %message_name = (
3587         CHECKIN  => 'Item_Check_in',
3588         CHECKOUT => 'Item_Checkout',
3589         RENEWAL  => 'Item_Checkout',
3590     );
3591     my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({
3592         borrowernumber => $borrower->{borrowernumber},
3593         message_name   => $message_name{$type},
3594     });
3595
3596
3597     my $tables = {
3598         items => $item->{itemnumber},
3599         biblio      => $item->{biblionumber},
3600         biblioitems => $item->{biblionumber},
3601         borrowers   => $borrower,
3602         branches    => $branch,
3603     };
3604
3605     # TODO: Currently, we need to pass an issue_id as identifier for old_issues, but still an itemnumber for issues.
3606     # See C4::Letters:: _parseletter_sth
3607     if( $type eq 'CHECKIN' ){
3608         $tables->{old_issues} = $issue->issue_id;
3609     } else {
3610         $tables->{issues} = $item->{itemnumber};
3611     }
3612
3613     my $schema = Koha::Database->new->schema;
3614     my @transports = keys %{ $borrower_preferences->{transports} };
3615
3616     # From the MySQL doc:
3617     # LOCK TABLES is not transaction-safe and implicitly commits any active transaction before attempting to lock the tables.
3618     # If the LOCK/UNLOCK statements are executed from tests, the current transaction will be committed.
3619     # To avoid that we need to guess if this code is execute from tests or not (yes it is a bit hacky)
3620     my $do_not_lock = ( exists $ENV{_} && $ENV{_} =~ m|prove| ) || $ENV{KOHA_TESTING};
3621
3622     for my $mtt (@transports) {
3623         my $letter =  C4::Letters::GetPreparedLetter (
3624             module => 'circulation',
3625             letter_code => $type,
3626             branchcode => $branch,
3627             message_transport_type => $mtt,
3628             lang => $borrower->{lang},
3629             tables => $tables,
3630         ) or next;
3631
3632         C4::Context->dbh->do(q|LOCK TABLE message_queue READ|) unless $do_not_lock;
3633         C4::Context->dbh->do(q|LOCK TABLE message_queue WRITE|) unless $do_not_lock;
3634         my $message = C4::Message->find_last_message($borrower, $type, $mtt);
3635         unless ( $message ) {
3636             C4::Context->dbh->do(q|UNLOCK TABLES|) unless $do_not_lock;
3637             C4::Message->enqueue($letter, $borrower, $mtt);
3638         } else {
3639             $message->append($letter);
3640             $message->update;
3641         }
3642         C4::Context->dbh->do(q|UNLOCK TABLES|) unless $do_not_lock;
3643     }
3644
3645     return;
3646 }
3647
3648 =head2 updateWrongTransfer
3649
3650   $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
3651
3652 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 
3653
3654 =cut
3655
3656 sub updateWrongTransfer {
3657         my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
3658
3659     # first step: cancel the original transfer
3660     my $item = Koha::Items->find($itemNumber);
3661     my $transfer = $item->get_transfer;
3662     $transfer->set({ datecancelled => dt_from_string, cancellation_reason => 'WrongTransfer' })->store();
3663
3664     # second step: create a new transfer to the right location
3665     my $new_transfer = $item->request_transfer(
3666         {
3667             to            => $transfer->to_library,
3668             reason        => $transfer->reason,
3669             comment       => $transfer->comments,
3670             ignore_limits => 1,
3671             enqueue       => 1
3672         }
3673     );
3674
3675     return $new_transfer;
3676 }
3677
3678 =head2 CalcDateDue
3679
3680 $newdatedue = CalcDateDue($startdate,$itemtype,$branchcode,$borrower);
3681
3682 this function calculates the due date given the start date and configured circulation rules,
3683 checking against the holidays calendar as per the daysmode circulation rule.
3684 C<$startdate>   = DateTime object representing start date of loan period (assumed to be today)
3685 C<$itemtype>  = itemtype code of item in question
3686 C<$branch>  = location whose calendar to use
3687 C<$borrower> = Borrower object
3688 C<$isrenewal> = Boolean: is true if we want to calculate the date due for a renewal. Else is false.
3689
3690 =cut
3691
3692 sub CalcDateDue {
3693     my ( $startdate, $itemtype, $branch, $borrower, $isrenewal ) = @_;
3694
3695     $isrenewal ||= 0;
3696
3697     # loanlength now a href
3698     my $loanlength =
3699             GetLoanLength( $borrower->{'categorycode'}, $itemtype, $branch );
3700
3701     my $length_key = ( $isrenewal and defined $loanlength->{renewalperiod} )
3702             ? qq{renewalperiod}
3703             : qq{issuelength};
3704
3705     my $datedue;
3706     if ( $startdate ) {
3707         if (ref $startdate ne 'DateTime' ) {
3708             $datedue = dt_from_string($datedue);
3709         } else {
3710             $datedue = $startdate->clone;
3711         }
3712     } else {
3713         $datedue = dt_from_string()->truncate( to => 'minute' );
3714     }
3715
3716
3717     my $daysmode = Koha::CirculationRules->get_effective_daysmode(
3718         {
3719             categorycode => $borrower->{categorycode},
3720             itemtype     => $itemtype,
3721             branchcode   => $branch,
3722         }
3723     );
3724
3725     # calculate the datedue as normal
3726     if ( $daysmode eq 'Days' )
3727     {    # ignoring calendar
3728         if ( $loanlength->{lengthunit} eq 'hours' ) {
3729             $datedue->add( hours => $loanlength->{$length_key} );
3730         } else {    # days
3731             $datedue->add( days => $loanlength->{$length_key} );
3732             $datedue->set_hour(23);
3733             $datedue->set_minute(59);
3734         }
3735     } else {
3736         my $dur;
3737         if ($loanlength->{lengthunit} eq 'hours') {
3738             $dur = DateTime::Duration->new( hours => $loanlength->{$length_key});
3739         }
3740         else { # days
3741             $dur = DateTime::Duration->new( days => $loanlength->{$length_key});
3742         }
3743         my $calendar = Koha::Calendar->new( branchcode => $branch, days_mode => $daysmode );
3744         $datedue = $calendar->addDuration( $datedue, $dur, $loanlength->{lengthunit} );
3745         if ($loanlength->{lengthunit} eq 'days') {
3746             $datedue->set_hour(23);
3747             $datedue->set_minute(59);
3748         }
3749     }
3750
3751     # if Hard Due Dates are used, retrieve them and apply as necessary
3752     my ( $hardduedate, $hardduedatecompare ) =
3753       GetHardDueDate( $borrower->{'categorycode'}, $itemtype, $branch );
3754     if ($hardduedate) {    # hardduedates are currently dates
3755         $hardduedate->truncate( to => 'minute' );
3756         $hardduedate->set_hour(23);
3757         $hardduedate->set_minute(59);
3758         my $cmp = DateTime->compare( $hardduedate, $datedue );
3759
3760 # if the calculated due date is after the 'before' Hard Due Date (ceiling), override
3761 # if the calculated date is before the 'after' Hard Due Date (floor), override
3762 # if the hard due date is set to 'exactly', overrride
3763         if ( $hardduedatecompare == 0 || $hardduedatecompare == $cmp ) {
3764             $datedue = $hardduedate->clone;
3765         }
3766
3767         # in all other cases, keep the date due as it is
3768
3769     }
3770
3771     # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
3772     if ( C4::Context->preference('ReturnBeforeExpiry') ) {
3773         my $expiry_dt = dt_from_string( $borrower->{dateexpiry}, 'iso', 'floating');
3774         if( $expiry_dt ) { #skip empty expiry date..
3775             $expiry_dt->set( hour => 23, minute => 59);
3776             my $d1= $datedue->clone->set_time_zone('floating');
3777             if ( DateTime->compare( $d1, $expiry_dt ) == 1 ) {
3778                 $datedue = $expiry_dt->clone->set_time_zone( C4::Context->tz );
3779             }
3780         }
3781         if ( $daysmode ne 'Days' ) {
3782           my $calendar = Koha::Calendar->new( branchcode => $branch, days_mode => $daysmode );
3783           if ( $calendar->is_holiday($datedue) ) {
3784               # Don't return on a closed day
3785               $datedue = $calendar->prev_open_days( $datedue, 1 );
3786           }
3787         }
3788     }
3789
3790     return $datedue;
3791 }
3792
3793
3794 sub CheckValidBarcode{
3795 my ($barcode) = @_;
3796 my $dbh = C4::Context->dbh;
3797 my $query=qq|SELECT count(*) 
3798              FROM items 
3799              WHERE barcode=?
3800             |;
3801 my $sth = $dbh->prepare($query);
3802 $sth->execute($barcode);
3803 my $exist=$sth->fetchrow ;
3804 return $exist;
3805 }
3806
3807 =head2 IsBranchTransferAllowed
3808
3809   $allowed = IsBranchTransferAllowed( $toBranch, $fromBranch, $code );
3810
3811 Code is either an itemtype or collection doe depending on the pref BranchTransferLimitsType
3812
3813 Deprecated in favor of Koha::Item::Transfer::Limits->find/search and
3814 Koha::Item->can_be_transferred.
3815
3816 =cut
3817
3818 sub IsBranchTransferAllowed {
3819         my ( $toBranch, $fromBranch, $code ) = @_;
3820
3821         if ( $toBranch eq $fromBranch ) { return 1; } ## Short circuit for speed.
3822         
3823         my $limitType = C4::Context->preference("BranchTransferLimitsType");   
3824         my $dbh = C4::Context->dbh;
3825             
3826         my $sth = $dbh->prepare("SELECT * FROM branch_transfer_limits WHERE toBranch = ? AND fromBranch = ? AND $limitType = ?");
3827         $sth->execute( $toBranch, $fromBranch, $code );
3828         my $limit = $sth->fetchrow_hashref();
3829                         
3830         ## If a row is found, then that combination is not allowed, if no matching row is found, then the combination *is allowed*
3831         if ( $limit->{'limitId'} ) {
3832                 return 0;
3833         } else {
3834                 return 1;
3835         }
3836 }                                                        
3837
3838 =head2 CreateBranchTransferLimit
3839
3840   CreateBranchTransferLimit( $toBranch, $fromBranch, $code );
3841
3842 $code is either itemtype or collection code depending on what the pref BranchTransferLimitsType is set to.
3843
3844 Deprecated in favor of Koha::Item::Transfer::Limit->new.
3845
3846 =cut
3847
3848 sub CreateBranchTransferLimit {
3849    my ( $toBranch, $fromBranch, $code ) = @_;
3850    return unless defined($toBranch) && defined($fromBranch);
3851    my $limitType = C4::Context->preference("BranchTransferLimitsType");
3852    
3853    my $dbh = C4::Context->dbh;
3854    
3855    my $sth = $dbh->prepare("INSERT INTO branch_transfer_limits ( $limitType, toBranch, fromBranch ) VALUES ( ?, ?, ? )");
3856    return $sth->execute( $code, $toBranch, $fromBranch );
3857 }
3858
3859 =head2 DeleteBranchTransferLimits
3860
3861     my $result = DeleteBranchTransferLimits($frombranch);
3862
3863 Deletes all the library transfer limits for one library.  Returns the
3864 number of limits deleted, 0e0 if no limits were deleted, or undef if
3865 no arguments are supplied.
3866
3867 Deprecated in favor of Koha::Item::Transfer::Limits->search({
3868     fromBranch => $fromBranch
3869     })->delete.
3870
3871 =cut
3872
3873 sub DeleteBranchTransferLimits {
3874     my $branch = shift;
3875     return unless defined $branch;
3876     my $dbh    = C4::Context->dbh;
3877     my $sth    = $dbh->prepare("DELETE FROM branch_transfer_limits WHERE fromBranch = ?");
3878     return $sth->execute($branch);
3879 }
3880
3881 sub ReturnLostItem{
3882     my ( $borrowernumber, $itemnum ) = @_;
3883     MarkIssueReturned( $borrowernumber, $itemnum );
3884 }
3885
3886 =head2 LostItem
3887
3888   LostItem( $itemnumber, $mark_lost_from, $force_mark_returned, [$params] );
3889
3890 The final optional parameter, C<$params>, expected to contain
3891 'skip_record_index' key, which relayed down to Koha::Item/store,
3892 there it prevents calling of ModZebra index_records,
3893 which takes most of the time in batch adds/deletes: index_records better
3894 to be called later in C<additem.pl> after the whole loop.
3895
3896 $params:
3897     skip_record_index => 1|0
3898
3899 =cut
3900
3901 sub LostItem{
3902     my ($itemnumber, $mark_lost_from, $force_mark_returned, $params) = @_;
3903
3904     unless ( $mark_lost_from ) {
3905         # Temporary check to avoid regressions
3906         die q|LostItem called without $mark_lost_from, check the API.|;
3907     }
3908
3909     my $mark_returned;
3910     if ( $force_mark_returned ) {
3911         $mark_returned = 1;
3912     } else {
3913         my $pref = C4::Context->preference('MarkLostItemsAsReturned') // q{};
3914         $mark_returned = ( $pref =~ m|$mark_lost_from| );
3915     }
3916
3917     my $dbh = C4::Context->dbh();
3918     my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title 
3919                            FROM issues 
3920                            JOIN items USING (itemnumber) 
3921                            JOIN biblio USING (biblionumber)
3922                            WHERE issues.itemnumber=?");
3923     $sth->execute($itemnumber);
3924     my $issues=$sth->fetchrow_hashref();
3925
3926     # If a borrower lost the item, add a replacement cost to the their record
3927     if ( my $borrowernumber = $issues->{borrowernumber} ){
3928         my $patron = Koha::Patrons->find( $borrowernumber );
3929
3930         my $fix = _FixOverduesOnReturn($borrowernumber, $itemnumber, C4::Context->preference('WhenLostForgiveFine'), 'LOST');
3931         defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $itemnumber...) failed!";  # zero is OK, check defined
3932
3933         if (C4::Context->preference('WhenLostChargeReplacementFee')){
3934             C4::Accounts::chargelostitem(
3935                 $borrowernumber,
3936                 $itemnumber,
3937                 $issues->{'replacementprice'},
3938                 sprintf( "%s %s %s",
3939                     $issues->{'title'}          || q{},
3940                     $issues->{'barcode'}        || q{},
3941                     $issues->{'itemcallnumber'} || q{},
3942                 ),
3943             );
3944             #FIXME : Should probably have a way to distinguish this from an item that really was returned.
3945             #warn " $issues->{'borrowernumber'}  /  $itemnumber ";
3946         }
3947
3948         MarkIssueReturned($borrowernumber,$itemnumber,undef,$patron->privacy,$params) if $mark_returned;
3949     }
3950
3951     # When an item is marked as lost, we should automatically cancel its outstanding transfers.
3952     my $item = Koha::Items->find($itemnumber);
3953     my $transfers = $item->get_transfers;
3954     while (my $transfer = $transfers->next) {
3955         $transfer->cancel({ reason => 'ItemLost', force => 1 });
3956     }
3957 }
3958
3959 sub GetOfflineOperations {
3960     my $dbh = C4::Context->dbh;
3961     my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE branchcode=? ORDER BY timestamp");
3962     $sth->execute(C4::Context->userenv->{'branch'});
3963     my $results = $sth->fetchall_arrayref({});
3964     return $results;
3965 }
3966
3967 sub GetOfflineOperation {
3968     my $operationid = shift;
3969     return unless $operationid;
3970     my $dbh = C4::Context->dbh;
3971     my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE operationid=?");
3972     $sth->execute( $operationid );
3973     return $sth->fetchrow_hashref;
3974 }
3975
3976 sub AddOfflineOperation {
3977     my ( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount ) = @_;
3978     my $dbh = C4::Context->dbh;
3979     my $sth = $dbh->prepare("INSERT INTO pending_offline_operations (userid, branchcode, timestamp, action, barcode, cardnumber, amount) VALUES(?,?,?,?,?,?,?)");
3980     $sth->execute( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount );
3981     return "Added.";
3982 }
3983
3984 sub DeleteOfflineOperation {
3985     my $dbh = C4::Context->dbh;
3986     my $sth = $dbh->prepare("DELETE FROM pending_offline_operations WHERE operationid=?");
3987     $sth->execute( shift );
3988     return "Deleted.";
3989 }
3990
3991 sub ProcessOfflineOperation {
3992     my $operation = shift;
3993
3994     my $report;
3995     if ( $operation->{action} eq 'return' ) {
3996         $report = ProcessOfflineReturn( $operation );
3997     } elsif ( $operation->{action} eq 'issue' ) {
3998         $report = ProcessOfflineIssue( $operation );
3999     } elsif ( $operation->{action} eq 'payment' ) {
4000         $report = ProcessOfflinePayment( $operation );
4001     }
4002
4003     DeleteOfflineOperation( $operation->{operationid} ) if $operation->{operationid};
4004
4005     return $report;
4006 }
4007
4008 sub ProcessOfflineReturn {
4009     my $operation = shift;
4010
4011     my $item = Koha::Items->find({barcode => $operation->{barcode}});
4012
4013     if ( $item ) {
4014         my $itemnumber = $item->itemnumber;
4015         my $issue = GetOpenIssue( $itemnumber );
4016         if ( $issue ) {
4017             my $leave_item_lost = C4::Context->preference("BlockReturnOfLostItems") ? 1 : 0;
4018             ModDateLastSeen( $itemnumber, $leave_item_lost );
4019             MarkIssueReturned(
4020                 $issue->{borrowernumber},
4021                 $itemnumber,
4022                 $operation->{timestamp},
4023             );
4024             $item->renewals(0);
4025             $item->onloan(undef);
4026             $item->store({ log_action => 0 });
4027             return "Success.";
4028         } else {
4029             return "Item not issued.";
4030         }
4031     } else {
4032         return "Item not found.";
4033     }
4034 }
4035
4036 sub ProcessOfflineIssue {
4037     my $operation = shift;
4038
4039     my $patron = Koha::Patrons->find( { cardnumber => $operation->{cardnumber} } );
4040
4041     if ( $patron ) {
4042         my $item = Koha::Items->find({ barcode => $operation->{barcode} });
4043         unless ($item) {
4044             return "Barcode not found.";
4045         }
4046         my $itemnumber = $item->itemnumber;
4047         my $issue = GetOpenIssue( $itemnumber );
4048
4049         if ( $issue and ( $issue->{borrowernumber} ne $patron->borrowernumber ) ) { # Item already issued to another patron mark it returned
4050             MarkIssueReturned(
4051                 $issue->{borrowernumber},
4052                 $itemnumber,
4053                 $operation->{timestamp},
4054             );
4055         }
4056         AddIssue(
4057             $patron->unblessed,
4058             $operation->{'barcode'},
4059             undef,
4060             undef,
4061             $operation->{timestamp},
4062             undef,
4063         );
4064         return "Success.";
4065     } else {
4066         return "Borrower not found.";
4067     }
4068 }
4069
4070 sub ProcessOfflinePayment {
4071     my $operation = shift;
4072
4073     my $patron = Koha::Patrons->find({ cardnumber => $operation->{cardnumber} });
4074
4075     $patron->account->pay(
4076         {
4077             amount     => $operation->{amount},
4078             library_id => $operation->{branchcode},
4079             interface  => 'koc'
4080         }
4081     );
4082
4083     return "Success.";
4084 }
4085
4086 =head2 TransferSlip
4087
4088   TransferSlip($user_branch, $itemnumber, $barcode, $to_branch)
4089
4090   Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
4091
4092 =cut
4093
4094 sub TransferSlip {
4095     my ($branch, $itemnumber, $barcode, $to_branch) = @_;
4096
4097     my $item =
4098       $itemnumber
4099       ? Koha::Items->find($itemnumber)
4100       : Koha::Items->find( { barcode => $barcode } );
4101
4102     $item or return;
4103
4104     return C4::Letters::GetPreparedLetter (
4105         module => 'circulation',
4106         letter_code => 'TRANSFERSLIP',
4107         branchcode => $branch,
4108         tables => {
4109             'branches'    => $to_branch,
4110             'biblio'      => $item->biblionumber,
4111             'items'       => $item->unblessed,
4112         },
4113     );
4114 }
4115
4116 =head2 CheckIfIssuedToPatron
4117
4118   CheckIfIssuedToPatron($borrowernumber, $biblionumber)
4119
4120   Return 1 if any record item is issued to patron, otherwise return 0
4121
4122 =cut
4123
4124 sub CheckIfIssuedToPatron {
4125     my ($borrowernumber, $biblionumber) = @_;
4126
4127     my $dbh = C4::Context->dbh;
4128     my $query = q|
4129         SELECT COUNT(*) FROM issues
4130         LEFT JOIN items ON items.itemnumber = issues.itemnumber
4131         WHERE items.biblionumber = ?
4132         AND issues.borrowernumber = ?
4133     |;
4134     my $is_issued = $dbh->selectrow_array($query, {}, $biblionumber, $borrowernumber );
4135     return 1 if $is_issued;
4136     return;
4137 }
4138
4139 =head2 IsItemIssued
4140
4141   IsItemIssued( $itemnumber )
4142
4143   Return 1 if the item is on loan, otherwise return 0
4144
4145 =cut
4146
4147 sub IsItemIssued {
4148     my $itemnumber = shift;
4149     my $dbh = C4::Context->dbh;
4150     my $sth = $dbh->prepare(q{
4151         SELECT COUNT(*)
4152         FROM issues
4153         WHERE itemnumber = ?
4154     });
4155     $sth->execute($itemnumber);
4156     return $sth->fetchrow;
4157 }
4158
4159 =head2 GetAgeRestriction
4160
4161   my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions, $borrower);
4162   my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions);
4163
4164   if($daysToAgeRestriction <= 0) { #Borrower is allowed to access this material, as they are older or as old as the agerestriction }
4165   if($daysToAgeRestriction > 0) { #Borrower is this many days from meeting the agerestriction }
4166
4167 @PARAM1 the koha.biblioitems.agerestriction value, like K18, PEGI 13, ...
4168 @PARAM2 a borrower-object with koha.borrowers.dateofbirth. (OPTIONAL)
4169 @RETURNS The age restriction age in years and the days to fulfill the age restriction for the given borrower.
4170          Negative days mean the borrower has gone past the age restriction age.
4171
4172 =cut
4173
4174 sub GetAgeRestriction {
4175     my ($record_restrictions, $borrower) = @_;
4176     my $markers = C4::Context->preference('AgeRestrictionMarker');
4177
4178     return unless $record_restrictions;
4179     # Split $record_restrictions to something like FSK 16 or PEGI 6
4180     my @values = split ' ', uc($record_restrictions);
4181     return unless @values;
4182
4183     # Search first occurrence of one of the markers
4184     my @markers = split /\|/, uc($markers);
4185     return unless @markers;
4186
4187     my $index            = 0;
4188     my $restriction_year = 0;
4189     for my $value (@values) {
4190         $index++;
4191         for my $marker (@markers) {
4192             $marker =~ s/^\s+//;    #remove leading spaces
4193             $marker =~ s/\s+$//;    #remove trailing spaces
4194             if ( $marker eq $value ) {
4195                 if ( $index <= $#values ) {
4196                     $restriction_year += $values[$index];
4197                 }
4198                 last;
4199             }
4200             elsif ( $value =~ /^\Q$marker\E(\d+)$/ ) {
4201
4202                 # Perhaps it is something like "K16" (as in Finland)
4203                 $restriction_year += $1;
4204                 last;
4205             }
4206         }
4207         last if ( $restriction_year > 0 );
4208     }
4209
4210     #Check if the borrower is age restricted for this material and for how long.
4211     if ($restriction_year && $borrower) {
4212         if ( $borrower->{'dateofbirth'} ) {
4213             my @alloweddate = split /-/, $borrower->{'dateofbirth'};
4214             $alloweddate[0] += $restriction_year;
4215
4216             #Prevent runime eror on leap year (invalid date)
4217             if ( ( $alloweddate[1] == 2 ) && ( $alloweddate[2] == 29 ) ) {
4218                 $alloweddate[2] = 28;
4219             }
4220
4221             #Get how many days the borrower has to reach the age restriction
4222             my @Today = split /-/, dt_from_string()->ymd();
4223             my $daysToAgeRestriction = Date_to_Days(@alloweddate) - Date_to_Days(@Today);
4224             #Negative days means the borrower went past the age restriction age
4225             return ($restriction_year, $daysToAgeRestriction);
4226         }
4227     }
4228
4229     return ($restriction_year);
4230 }
4231
4232
4233 =head2 GetPendingOnSiteCheckouts
4234
4235 =cut
4236
4237 sub GetPendingOnSiteCheckouts {
4238     my $dbh = C4::Context->dbh;
4239     return $dbh->selectall_arrayref(q|
4240         SELECT
4241           items.barcode,
4242           items.biblionumber,
4243           items.itemnumber,
4244           items.itemnotes,
4245           items.itemcallnumber,
4246           items.location,
4247           issues.date_due,
4248           issues.branchcode,
4249           issues.date_due < NOW() AS is_overdue,
4250           biblio.author,
4251           biblio.title,
4252           borrowers.firstname,
4253           borrowers.surname,
4254           borrowers.cardnumber,
4255           borrowers.borrowernumber
4256         FROM items
4257         LEFT JOIN issues ON items.itemnumber = issues.itemnumber
4258         LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
4259         LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
4260         WHERE issues.onsite_checkout = 1
4261     |, { Slice => {} } );
4262 }
4263
4264 sub GetTopIssues {
4265     my ($params) = @_;
4266
4267     my ($count, $branch, $itemtype, $ccode, $newness)
4268         = @$params{qw(count branch itemtype ccode newness)};
4269
4270     my $dbh = C4::Context->dbh;
4271     my $query = q{
4272         SELECT * FROM (
4273         SELECT b.biblionumber, b.title, b.author, bi.itemtype, bi.publishercode,
4274           bi.place, bi.publicationyear, b.copyrightdate, bi.pages, bi.size,
4275           i.ccode, SUM(i.issues) AS count
4276         FROM biblio b
4277         LEFT JOIN items i ON (i.biblionumber = b.biblionumber)
4278         LEFT JOIN biblioitems bi ON (bi.biblionumber = b.biblionumber)
4279     };
4280
4281     my (@where_strs, @where_args);
4282
4283     if ($branch) {
4284         push @where_strs, 'i.homebranch = ?';
4285         push @where_args, $branch;
4286     }
4287     if ($itemtype) {
4288         if (C4::Context->preference('item-level_itypes')){
4289             push @where_strs, 'i.itype = ?';
4290             push @where_args, $itemtype;
4291         } else {
4292             push @where_strs, 'bi.itemtype = ?';
4293             push @where_args, $itemtype;
4294         }
4295     }
4296     if ($ccode) {
4297         push @where_strs, 'i.ccode = ?';
4298         push @where_args, $ccode;
4299     }
4300     if ($newness) {
4301         push @where_strs, 'TO_DAYS(NOW()) - TO_DAYS(b.datecreated) <= ?';
4302         push @where_args, $newness;
4303     }
4304
4305     if (@where_strs) {
4306         $query .= 'WHERE ' . join(' AND ', @where_strs);
4307     }
4308
4309     $query .= q{
4310         GROUP BY b.biblionumber, b.title, b.author, bi.itemtype, bi.publishercode,
4311           bi.place, bi.publicationyear, b.copyrightdate, bi.pages, bi.size,
4312           i.ccode
4313         ORDER BY count DESC
4314     };
4315
4316     $query .= q{ ) xxx WHERE count > 0 };
4317     $count = int($count);
4318     if ($count > 0) {
4319         $query .= "LIMIT $count";
4320     }
4321
4322     my $rows = $dbh->selectall_arrayref($query, { Slice => {} }, @where_args);
4323
4324     return @$rows;
4325 }
4326
4327 =head2 Internal methods
4328
4329 =cut
4330
4331 sub _CalculateAndUpdateFine {
4332     my ($params) = @_;
4333
4334     my $borrower    = $params->{borrower};
4335     my $item        = $params->{item};
4336     my $issue       = $params->{issue};
4337     my $return_date = $params->{return_date};
4338
4339     unless ($borrower) { carp "No borrower passed in!" && return; }
4340     unless ($item)     { carp "No item passed in!"     && return; }
4341     unless ($issue)    { carp "No issue passed in!"    && return; }
4342
4343     my $datedue = dt_from_string( $issue->date_due );
4344
4345     # we only need to calculate and change the fines if we want to do that on return
4346     # Should be on for hourly loans
4347     my $control = C4::Context->preference('CircControl');
4348     my $control_branchcode =
4349         ( $control eq 'ItemHomeLibrary' ) ? $item->{homebranch}
4350       : ( $control eq 'PatronLibrary' )   ? $borrower->{branchcode}
4351       :                                     $issue->branchcode;
4352
4353     my $date_returned = $return_date ? $return_date : dt_from_string();
4354
4355     my ( $amount, $unitcounttotal, $unitcount  ) =
4356       C4::Overdues::CalcFine( $item, $borrower->{categorycode}, $control_branchcode, $datedue, $date_returned );
4357
4358     if ( C4::Context->preference('finesMode') eq 'production' ) {
4359         if ( $amount > 0 ) {
4360             C4::Overdues::UpdateFine({
4361                 issue_id       => $issue->issue_id,
4362                 itemnumber     => $issue->itemnumber,
4363                 borrowernumber => $issue->borrowernumber,
4364                 amount         => $amount,
4365                 due            => output_pref($datedue),
4366             });
4367         }
4368         elsif ($return_date) {
4369
4370             # Backdated returns may have fines that shouldn't exist,
4371             # so in this case, we need to drop those fines to 0
4372
4373             C4::Overdues::UpdateFine({
4374                 issue_id       => $issue->issue_id,
4375                 itemnumber     => $issue->itemnumber,
4376                 borrowernumber => $issue->borrowernumber,
4377                 amount         => 0,
4378                 due            => output_pref($datedue),
4379             });
4380         }
4381     }
4382 }
4383
4384 sub _CanBookBeAutoRenewed {
4385     my ( $params ) = @_;
4386     my $patron = $params->{patron};
4387     my $item = $params->{item};
4388     my $branchcode = $params->{branchcode};
4389     my $issue = $params->{issue};
4390
4391     return "no" unless $issue->auto_renew && $patron->autorenew_checkouts;
4392
4393     my $issuing_rule = Koha::CirculationRules->get_effective_rules(
4394         {
4395             categorycode => $patron->categorycode,
4396             itemtype     => $item->effective_itemtype,
4397             branchcode   => $branchcode,
4398             rules => [
4399                 'no_auto_renewal_after',
4400                 'no_auto_renewal_after_hard_limit',
4401                 'lengthunit',
4402                 'norenewalbefore',
4403             ]
4404         }
4405     );
4406
4407     if ( $patron->category->effective_BlockExpiredPatronOpacActions and $patron->is_expired ) {
4408         return 'auto_account_expired';
4409     }
4410
4411     if ( defined $issuing_rule->{no_auto_renewal_after}
4412             and $issuing_rule->{no_auto_renewal_after} ne "" ) {
4413         # Get issue_date and add no_auto_renewal_after
4414         # If this is greater than today, it's too late for renewal.
4415         my $maximum_renewal_date = dt_from_string($issue->issuedate, 'sql');
4416         $maximum_renewal_date->add(
4417             $issuing_rule->{lengthunit} => $issuing_rule->{no_auto_renewal_after}
4418         );
4419         my $now = dt_from_string;
4420         if ( $now >= $maximum_renewal_date ) {
4421             return "auto_too_late";
4422         }
4423     }
4424     if ( defined $issuing_rule->{no_auto_renewal_after_hard_limit}
4425                   and $issuing_rule->{no_auto_renewal_after_hard_limit} ne "" ) {
4426         # If no_auto_renewal_after_hard_limit is >= today, it's also too late for renewal
4427         if ( dt_from_string >= dt_from_string( $issuing_rule->{no_auto_renewal_after_hard_limit} ) ) {
4428             return "auto_too_late";
4429         }
4430     }
4431
4432     if ( C4::Context->preference('OPACFineNoRenewalsBlockAutoRenew') ) {
4433         my $fine_no_renewals = C4::Context->preference("OPACFineNoRenewals");
4434         my $amountoutstanding =
4435           C4::Context->preference("OPACFineNoRenewalsIncludeCredit")
4436           ? $patron->account->balance
4437           : $patron->account->outstanding_debits->total_outstanding;
4438         if ( $amountoutstanding and $amountoutstanding > $fine_no_renewals ) {
4439             return "auto_too_much_oweing";
4440         }
4441     }
4442
4443     if ( defined $issuing_rule->{norenewalbefore}
4444         and $issuing_rule->{norenewalbefore} ne "" ) {
4445         if ( GetSoonestRenewDate($patron->id, $item->id) > dt_from_string()) {
4446             return "auto_too_soon";
4447         } else {
4448             return "ok";
4449         }
4450     }
4451
4452     # Fallback for automatic renewals:
4453     # If norenewalbefore is undef, don't renew before due date.
4454     my $now = dt_from_string;
4455     if ( $now >= dt_from_string( $issue->date_due, 'sql' ) ){
4456         return "ok";
4457     } else {
4458         return "auto_too_soon";
4459     }
4460 }
4461
4462 sub _item_denied_renewal {
4463     my ($params) = @_;
4464
4465     my $item = $params->{item};
4466     return unless $item;
4467
4468     my $denyingrules = Koha::Config::SysPrefs->find('ItemsDeniedRenewal')->get_yaml_pref_hash();
4469     return unless $denyingrules;
4470     foreach my $field (keys %$denyingrules) {
4471         my $val = $item->$field;
4472         if( !defined $val) {
4473             if ( any { !defined $_ }  @{$denyingrules->{$field}} ){
4474                 return 1;
4475             }
4476         } elsif (any { defined($_) && $val eq $_ } @{$denyingrules->{$field}}) {
4477            # If the results matches the values in the syspref
4478            # We return true if match found
4479             return 1;
4480         }
4481     }
4482     return 0;
4483 }
4484
4485 1;
4486
4487 __END__
4488
4489 =head1 AUTHOR
4490
4491 Koha Development Team <http://koha-community.org/>
4492
4493 =cut