Bug 30167: (follow-up) Compare dt objects
[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,$info) = &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.
2840     $error will contain the reason the renewal can not proceed
2841     $info will contain a hash of additional info
2842       currently 'soonest_renew_date' if error is 'too soon'
2843
2844 =cut
2845
2846 sub CanBookBeRenewed {
2847     my ( $borrowernumber, $itemnumber, $override_limit, $cron ) = @_;
2848
2849     my $auto_renew = "no";
2850     my $soonest;
2851
2852     my $item      = Koha::Items->find($itemnumber)      or return ( 0, 'no_item' );
2853     my $issue = $item->checkout or return ( 0, 'no_checkout' );
2854     return ( 0, 'onsite_checkout' ) if $issue->onsite_checkout;
2855     return ( 0, 'item_denied_renewal') if _item_denied_renewal({ item => $item });
2856
2857     my $patron = $issue->patron or return;
2858
2859     # override_limit will override anything else except on_reserve
2860     unless ( $override_limit ){
2861         my $branchcode = _GetCircControlBranch( $item->unblessed, $patron->unblessed );
2862         my $issuing_rule = Koha::CirculationRules->get_effective_rules(
2863             {
2864                 categorycode => $patron->categorycode,
2865                 itemtype     => $item->effective_itemtype,
2866                 branchcode   => $branchcode,
2867                 rules => [
2868                     'renewalsallowed',
2869                     'lengthunit',
2870                     'unseen_renewals_allowed'
2871                 ]
2872             }
2873         );
2874
2875         return ( 0, "too_many" )
2876           if not $issuing_rule->{renewalsallowed} or $issuing_rule->{renewalsallowed} <= $issue->renewals;
2877
2878         return ( 0, "too_unseen" )
2879           if C4::Context->preference('UnseenRenewals') &&
2880             $issuing_rule->{unseen_renewals_allowed} &&
2881             $issuing_rule->{unseen_renewals_allowed} <= $issue->unseen_renewals;
2882
2883         my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
2884         my $restrictionblockrenewing = C4::Context->preference('RestrictionBlockRenewing');
2885         $patron         = Koha::Patrons->find($borrowernumber); # FIXME Is this really useful?
2886         my $restricted  = $patron->is_debarred;
2887         my $hasoverdues = $patron->has_overdues;
2888
2889         if ( $restricted and $restrictionblockrenewing ) {
2890             return ( 0, 'restriction');
2891         } elsif ( ($hasoverdues and $overduesblockrenewing eq 'block') || ($issue->is_overdue and $overduesblockrenewing eq 'blockitem') ) {
2892             return ( 0, 'overdue');
2893         }
2894
2895         ( $auto_renew, $soonest ) = _CanBookBeAutoRenewed({
2896             patron     => $patron,
2897             item       => $item,
2898             branchcode => $branchcode,
2899             issue      => $issue
2900         });
2901         return ( 0, $auto_renew, { soonest_renew_date => $soonest } ) if $auto_renew =~ 'auto_too_soon' && $cron;
2902         # cron wants 'too_soon' over 'on_reserve' for performance and to avoid
2903         # extra notices being sent. Cron also implies no override
2904         return ( 0, $auto_renew  ) if $auto_renew =~ 'auto_account_expired';
2905         return ( 0, $auto_renew  ) if $auto_renew =~ 'auto_too_late';
2906         return ( 0, $auto_renew  ) if $auto_renew =~ 'auto_too_much_oweing';
2907     }
2908
2909     if ( C4::Context->preference('UseRecalls') ) {
2910         my $recall = undef;
2911         $recall = $item->check_recalls if $item->can_be_waiting_recall;
2912         if ( defined $recall ) {
2913             if ( $recall->item_level_recall ) {
2914                 # item-level recall. check if this item is the recalled item, otherwise renewal will be allowed
2915                 return ( 0, 'recalled' ) if ( $recall->itemnumber == $item->itemnumber );
2916             } else {
2917                 # biblio-level recall, so only disallow renewal if the biblio-level recall has been fulfilled by a different item
2918                 return ( 0, 'recalled' ) unless ( $recall->waiting );
2919             }
2920         }
2921     }
2922
2923     # Note: possible_reserves will contain all title level holds on this bib and item level
2924     # holds on the checked out item
2925     my ( $resfound, $resrec, $possible_reserves ) = C4::Reserves::CheckReserves($itemnumber);
2926
2927     # If next hold is non priority, then check if any hold with priority (non_priority = 0) exists for the same biblionumber.
2928     if ( $resfound && $resrec->{non_priority} ) {
2929         $resfound = Koha::Holds->search(
2930             { biblionumber => $resrec->{biblionumber}, non_priority => 0 } )
2931           ->count > 0;
2932     }
2933
2934
2935
2936     # This item can fill one or more unfilled reserve, can those unfilled reserves
2937     # all be filled by other available items?
2938     if ( $resfound
2939         && C4::Context->preference('AllowRenewalIfOtherItemsAvailable') )
2940     {
2941         my $item_holds = Koha::Holds->search( { itemnumber => $itemnumber, found => undef } )->count();
2942         if ($item_holds) {
2943             # There is an item level hold on this item, no other item can fill the hold
2944             $resfound = 1;
2945         }
2946         else {
2947
2948             # Get all other items that could possibly fill reserves
2949             # FIXME We could join reserves (or more tables) here to eliminate some checks later
2950             my $items = Koha::Items->search({
2951                 biblionumber => $resrec->{biblionumber},
2952                 onloan       => undef,
2953                 notforloan   => 0,
2954                 -not         => { itemnumber => $itemnumber }
2955             });
2956             my $item_count = $items->count();
2957
2958             # Get all other reserves that could have been filled by this item
2959             my @borrowernumbers = map { $_->{borrowernumber} } @$possible_reserves;
2960             # Note: fetching the patrons in this manner means that a patron with 2 holds will
2961             # not block renewal if one reserve can be satisfied i.e. each patron is checked once
2962             my $patrons = Koha::Patrons->search({
2963                 borrowernumber => { -in => \@borrowernumbers }
2964             });
2965             my $patron_count = $patrons->count();
2966
2967             return ( 0, "on_reserve" ) if ($patron_count > $item_count);
2968             # We cannot possibly fill all reserves if we don't have enough items
2969
2970             # If we can fill each hold that has been found with the available items on the record
2971             # then the patron can renew. If we cannot, they cannot renew.
2972             # FIXME This code does not check whether the item we are renewing can fill
2973             # any of the existing reserves.
2974             my $reservable = 0;
2975             my %matched_items;
2976             my $seen = 0;
2977             PATRON: while ( my $patron = $patrons->next ) {
2978                 # If there is a reserve that cannot be filled we are done
2979                 return ( 0, "on_reserve" ) if ( $seen > $reservable );
2980                 my $items_any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $item->biblionumber, patron => $patron });
2981                 while ( my $other_item = $items->next ) {
2982                     next if defined $matched_items{$other_item->itemnumber};
2983                     next if IsItemOnHoldAndFound( $other_item->itemnumber );
2984                     next unless IsAvailableForItemLevelRequest($other_item, $patron, undef, $items_any_available);
2985                     next unless CanItemBeReserved($patron,$other_item,undef,{ignore_hold_counts=>1})->{status} eq 'OK';
2986                     # NOTE: At checkin we call 'CheckReserves' which checks hold 'policy'
2987                     # CanItemBeReserved checks 'rules' and 'policies' which means
2988                     # items will fill holds at checkin that are rejected here
2989                     $reservable++;
2990                     if ($reservable >= $patron_count) {
2991                         $resfound = 0;
2992                         last PATRON;
2993                     }
2994                     $matched_items{$other_item->itemnumber} = 1;
2995                     last;
2996                 }
2997                 $items->reset;
2998                 $seen++;
2999             }
3000         }
3001     }
3002
3003     return ( 0, "on_reserve" ) if $resfound;    # '' when no hold was found
3004     return ( 0, $auto_renew, { soonest_renew_date => $soonest } ) if $auto_renew =~ 'too_soon';#$auto_renew ne "no" && $auto_renew ne "ok";
3005     $soonest = GetSoonestRenewDate($borrowernumber, $itemnumber);
3006     if ( $soonest > dt_from_string() ){
3007         return (0, "too_soon", { soonest_renew_date => $soonest } ) unless $override_limit;
3008     }
3009
3010     return ( 0, "auto_renew" ) if $auto_renew eq "ok" && !$override_limit; # 0 if auto-renewal should not succeed
3011
3012     return ( 1, undef );
3013 }
3014
3015 =head2 AddRenewal
3016
3017   &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate], [$seen]);
3018
3019 Renews a loan.
3020
3021 C<$borrowernumber> is the borrower number of the patron who currently
3022 has the item.
3023
3024 C<$itemnumber> is the number of the item to renew.
3025
3026 C<$branch> is the library where the renewal took place (if any).
3027            The library that controls the circ policies for the renewal is retrieved from the issues record.
3028
3029 C<$datedue> can be a DateTime object used to set the due date.
3030
3031 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate.  If
3032 this parameter is not supplied, lastreneweddate is set to the current date.
3033
3034 C<$skipfinecalc> is an optional boolean. There may be circumstances where, even if the
3035 CalculateFinesOnReturn syspref is enabled, we don't want to calculate fines upon renew,
3036 for example, when we're renewing as a result of a fine being paid (see RenewAccruingItemWhenPaid
3037 syspref)
3038
3039 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
3040 from the book's item type.
3041
3042 C<$seen> is a boolean flag indicating if the item was seen or not during the renewal. This
3043 informs the incrementing of the unseen_renewals column. If this flag is not supplied, we
3044 fallback to a true value
3045
3046 =cut
3047
3048 sub AddRenewal {
3049     my $borrowernumber  = shift;
3050     my $itemnumber      = shift or return;
3051     my $branch          = shift;
3052     my $datedue         = shift;
3053     my $lastreneweddate = shift || dt_from_string();
3054     my $skipfinecalc    = shift;
3055     my $seen            = shift;
3056
3057     # Fallback on a 'seen' renewal
3058     $seen = defined $seen && $seen == 0 ? 0 : 1;
3059
3060     my $item_object   = Koha::Items->find($itemnumber) or return;
3061     my $biblio = $item_object->biblio;
3062     my $issue  = $item_object->checkout;
3063     my $item_unblessed = $item_object->unblessed;
3064
3065     my $dbh = C4::Context->dbh;
3066
3067     return unless $issue;
3068
3069     $borrowernumber ||= $issue->borrowernumber;
3070
3071     if ( defined $datedue && ref $datedue ne 'DateTime' ) {
3072         carp 'Invalid date passed to AddRenewal.';
3073         return;
3074     }
3075
3076     my $patron = Koha::Patrons->find( $borrowernumber ) or return; # FIXME Should do more than just return
3077     my $patron_unblessed = $patron->unblessed;
3078
3079     my $circ_library = Koha::Libraries->find( _GetCircControlBranch($item_unblessed, $patron_unblessed) );
3080
3081     my $schema = Koha::Database->schema;
3082     $schema->txn_do(sub{
3083
3084         if ( !$skipfinecalc && C4::Context->preference('CalculateFinesOnReturn') ) {
3085             _CalculateAndUpdateFine( { issue => $issue, item => $item_unblessed, borrower => $patron_unblessed } );
3086         }
3087         _FixOverduesOnReturn( $borrowernumber, $itemnumber, undef, 'RENEWED' );
3088
3089         # If the due date wasn't specified, calculate it by adding the
3090         # book's loan length to today's date or the current due date
3091         # based on the value of the RenewalPeriodBase syspref.
3092         my $itemtype = $item_object->effective_itemtype;
3093         unless ($datedue) {
3094
3095             $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
3096                                             dt_from_string( $issue->date_due, 'sql' ) :
3097                                             dt_from_string();
3098             $datedue =  CalcDateDue($datedue, $itemtype, $circ_library->branchcode, $patron_unblessed, 'is a renewal');
3099         }
3100
3101         my $fees = Koha::Charges::Fees->new(
3102             {
3103                 patron    => $patron,
3104                 library   => $circ_library,
3105                 item      => $item_object,
3106                 from_date => dt_from_string( $issue->date_due, 'sql' ),
3107                 to_date   => dt_from_string($datedue),
3108             }
3109         );
3110
3111         # Increment the unseen renewals, if appropriate
3112         # We only do so if the syspref is enabled and
3113         # a maximum value has been set in the circ rules
3114         my $unseen_renewals = $issue->unseen_renewals;
3115         if (C4::Context->preference('UnseenRenewals')) {
3116             my $rule = Koha::CirculationRules->get_effective_rule(
3117                 {   categorycode => $patron->categorycode,
3118                     itemtype     => $item_object->effective_itemtype,
3119                     branchcode   => $circ_library->branchcode,
3120                     rule_name    => 'unseen_renewals_allowed'
3121                 }
3122             );
3123             if (!$seen && $rule && $rule->rule_value) {
3124                 $unseen_renewals++;
3125             } else {
3126                 # If the renewal is seen, unseen should revert to 0
3127                 $unseen_renewals = 0;
3128             }
3129         }
3130
3131         # Update the issues record to have the new due date, and a new count
3132         # of how many times it has been renewed.
3133         my $renews = ( $issue->renewals || 0 ) + 1;
3134         my $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, unseen_renewals = ?, lastreneweddate = ? WHERE issue_id = ?");
3135
3136         eval{
3137             $sth->execute( $datedue->strftime('%Y-%m-%d %H:%M'), $renews, $unseen_renewals, $lastreneweddate, $issue->issue_id );
3138         };
3139         if( $sth->err ){
3140             Koha::Exceptions::Checkout::FailedRenewal->throw(
3141                 error => 'Update of issue# ' . $issue->issue_id . ' failed with error: ' . $sth->errstr
3142             );
3143         }
3144
3145         # Update the renewal count on the item, and tell zebra to reindex
3146         $renews = ( $item_object->renewals || 0 ) + 1;
3147         $item_object->renewals($renews);
3148         $item_object->onloan($datedue);
3149         $item_object->store({ log_action => 0 });
3150
3151         # Charge a new rental fee, if applicable
3152         my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
3153         if ( $charge > 0 ) {
3154             AddIssuingCharge($issue, $charge, 'RENT_RENEW');
3155         }
3156
3157         # Charge a new accumulate rental fee, if applicable
3158         my $itemtype_object = Koha::ItemTypes->find( $itemtype );
3159         if ( $itemtype_object ) {
3160             my $accumulate_charge = $fees->accumulate_rentalcharge();
3161             if ( $accumulate_charge > 0 ) {
3162                 AddIssuingCharge( $issue, $accumulate_charge, 'RENT_DAILY_RENEW' )
3163             }
3164             $charge += $accumulate_charge;
3165         }
3166
3167         # Send a renewal slip according to checkout alert preferencei
3168         if ( C4::Context->preference('RenewalSendNotice') eq '1' ) {
3169             my $circulation_alert = 'C4::ItemCirculationAlertPreference';
3170             my %conditions        = (
3171                 branchcode   => $branch,
3172                 categorycode => $patron->categorycode,
3173                 item_type    => $itemtype,
3174                 notification => 'CHECKOUT',
3175             );
3176             if ( $circulation_alert->is_enabled_for( \%conditions ) ) {
3177                 SendCirculationAlert(
3178                     {
3179                         type     => 'RENEWAL',
3180                         item     => $item_unblessed,
3181                         borrower => $patron->unblessed,
3182                         branch   => $branch,
3183                     }
3184                 );
3185             }
3186         }
3187
3188         # Remove any OVERDUES related debarment if the borrower has no overdues
3189         if ( $patron
3190           && $patron->is_debarred
3191           && ! $patron->has_overdues
3192           && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
3193         ) {
3194             DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3195         }
3196
3197         # Add the renewal to stats
3198         C4::Stats::UpdateStats(
3199             {
3200                 branch         => $item_object->renewal_branchcode({branch => $branch}),
3201                 type           => 'renew',
3202                 amount         => $charge,
3203                 itemnumber     => $itemnumber,
3204                 itemtype       => $itemtype,
3205                 location       => $item_object->location,
3206                 borrowernumber => $borrowernumber,
3207                 ccode          => $item_object->ccode,
3208             }
3209         );
3210
3211         #Log the renewal
3212         logaction("CIRCULATION", "RENEWAL", $borrowernumber, $itemnumber) if C4::Context->preference("RenewalLog");
3213
3214         Koha::Plugins->call('after_circ_action', {
3215             action  => 'renewal',
3216             payload => {
3217                 checkout  => $issue->get_from_storage
3218             }
3219         });
3220     });
3221
3222     return $datedue;
3223 }
3224
3225 sub GetRenewCount {
3226     # check renewal status
3227     my ( $bornum, $itemno ) = @_;
3228     my $dbh           = C4::Context->dbh;
3229     my $renewcount    = 0;
3230     my $unseencount    = 0;
3231     my $renewsallowed = 0;
3232     my $unseenallowed = 0;
3233     my $renewsleft    = 0;
3234     my $unseenleft    = 0;
3235
3236     my $patron = Koha::Patrons->find( $bornum );
3237     my $item   = Koha::Items->find($itemno);
3238
3239     return (0, 0, 0, 0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3240
3241     # Look in the issues table for this item, lent to this borrower,
3242     # and not yet returned.
3243
3244     # FIXME - I think this function could be redone to use only one SQL call.
3245     my $sth = $dbh->prepare(
3246         "select * from issues
3247                                 where (borrowernumber = ?)
3248                                 and (itemnumber = ?)"
3249     );
3250     $sth->execute( $bornum, $itemno );
3251     my $data = $sth->fetchrow_hashref;
3252     $renewcount = $data->{'renewals'} if $data->{'renewals'};
3253     $unseencount = $data->{'unseen_renewals'} if $data->{'unseen_renewals'};
3254     # $item and $borrower should be calculated
3255     my $branchcode = _GetCircControlBranch($item->unblessed, $patron->unblessed);
3256
3257     my $rules = Koha::CirculationRules->get_effective_rules(
3258         {
3259             categorycode => $patron->categorycode,
3260             itemtype     => $item->effective_itemtype,
3261             branchcode   => $branchcode,
3262             rules        => [ 'renewalsallowed', 'unseen_renewals_allowed' ]
3263         }
3264     );
3265     $renewsallowed = $rules ? $rules->{renewalsallowed} : 0;
3266     $unseenallowed = $rules->{unseen_renewals_allowed} ?
3267         $rules->{unseen_renewals_allowed} :
3268         0;
3269     $renewsleft    = $renewsallowed - $renewcount;
3270     $unseenleft    = $unseenallowed - $unseencount;
3271     if($renewsleft < 0){ $renewsleft = 0; }
3272     if($unseenleft < 0){ $unseenleft = 0; }
3273     return (
3274         $renewcount,
3275         $renewsallowed,
3276         $renewsleft,
3277         $unseencount,
3278         $unseenallowed,
3279         $unseenleft
3280     );
3281 }
3282
3283 =head2 GetSoonestRenewDate
3284
3285   $NoRenewalBeforeThisDate = &GetSoonestRenewDate($borrowernumber, $itemnumber);
3286
3287 Find out the soonest possible renew date of a borrowed item.
3288
3289 C<$borrowernumber> is the borrower number of the patron who currently
3290 has the item on loan.
3291
3292 C<$itemnumber> is the number of the item to renew.
3293
3294 C<$GetSoonestRenewDate> returns the DateTime of the soonest possible
3295 renew date, based on the value "No renewal before" of the applicable
3296 issuing rule. Returns the current date if the item can already be
3297 renewed, and returns undefined if the borrower, loan, or item
3298 cannot be found.
3299
3300 =cut
3301
3302 sub GetSoonestRenewDate {
3303     my ( $borrowernumber, $itemnumber ) = @_;
3304
3305     my $dbh = C4::Context->dbh;
3306
3307     my $item      = Koha::Items->find($itemnumber)      or return;
3308     my $itemissue = $item->checkout or return;
3309
3310     $borrowernumber ||= $itemissue->borrowernumber;
3311     my $patron = Koha::Patrons->find( $borrowernumber )
3312       or return;
3313
3314     my $branchcode = _GetCircControlBranch( $item->unblessed, $patron->unblessed );
3315     my $issuing_rule = Koha::CirculationRules->get_effective_rules(
3316         {   categorycode => $patron->categorycode,
3317             itemtype     => $item->effective_itemtype,
3318             branchcode   => $branchcode,
3319             rules => [
3320                 'norenewalbefore',
3321                 'lengthunit',
3322             ]
3323         }
3324     );
3325
3326     my $now = dt_from_string;
3327
3328     if ( defined $issuing_rule->{norenewalbefore}
3329         and $issuing_rule->{norenewalbefore} ne "" )
3330     {
3331         my $soonestrenewal =
3332           dt_from_string( $itemissue->date_due )->subtract(
3333             $issuing_rule->{lengthunit} => $issuing_rule->{norenewalbefore} );
3334
3335         if ( C4::Context->preference('NoRenewalBeforePrecision') eq 'date'
3336             and $issuing_rule->{lengthunit} eq 'days' )
3337         {
3338             $soonestrenewal->truncate( to => 'day' );
3339         }
3340         return $soonestrenewal if $now < $soonestrenewal;
3341     } elsif ( $itemissue->auto_renew && $patron->autorenew_checkouts ) {
3342         # Checkouts with auto-renewing fall back to due date
3343         my $soonestrenewal = dt_from_string( $itemissue->date_due );
3344         if ( C4::Context->preference('NoRenewalBeforePrecision') eq 'date'
3345             and $issuing_rule->{lengthunit} eq 'days' )
3346         {
3347             $soonestrenewal->truncate( to => 'day' );
3348         }
3349         return $soonestrenewal;
3350     }
3351     return $now;
3352 }
3353
3354 =head2 GetLatestAutoRenewDate
3355
3356   $NoAutoRenewalAfterThisDate = &GetLatestAutoRenewDate($borrowernumber, $itemnumber);
3357
3358 Find out the latest possible auto renew date of a borrowed item.
3359
3360 C<$borrowernumber> is the borrower number of the patron who currently
3361 has the item on loan.
3362
3363 C<$itemnumber> is the number of the item to renew.
3364
3365 C<$GetLatestAutoRenewDate> returns the DateTime of the latest possible
3366 auto renew date, based on the value "No auto renewal after" and the "No auto
3367 renewal after (hard limit) of the applicable issuing rule.
3368 Returns undef if there is no date specify in the circ rules or if the patron, loan,
3369 or item cannot be found.
3370
3371 =cut
3372
3373 sub GetLatestAutoRenewDate {
3374     my ( $borrowernumber, $itemnumber ) = @_;
3375
3376     my $dbh = C4::Context->dbh;
3377
3378     my $item      = Koha::Items->find($itemnumber)  or return;
3379     my $itemissue = $item->checkout                 or return;
3380
3381     $borrowernumber ||= $itemissue->borrowernumber;
3382     my $patron = Koha::Patrons->find( $borrowernumber )
3383       or return;
3384
3385     my $branchcode = _GetCircControlBranch( $item->unblessed, $patron->unblessed );
3386     my $circulation_rules = Koha::CirculationRules->get_effective_rules(
3387         {
3388             categorycode => $patron->categorycode,
3389             itemtype     => $item->effective_itemtype,
3390             branchcode   => $branchcode,
3391             rules => [
3392                 'no_auto_renewal_after',
3393                 'no_auto_renewal_after_hard_limit',
3394                 'lengthunit',
3395             ]
3396         }
3397     );
3398
3399     return unless $circulation_rules;
3400     return
3401       if ( not $circulation_rules->{no_auto_renewal_after}
3402             or $circulation_rules->{no_auto_renewal_after} eq '' )
3403       and ( not $circulation_rules->{no_auto_renewal_after_hard_limit}
3404              or $circulation_rules->{no_auto_renewal_after_hard_limit} eq '' );
3405
3406     my $maximum_renewal_date;
3407     if ( $circulation_rules->{no_auto_renewal_after} ) {
3408         $maximum_renewal_date = dt_from_string($itemissue->issuedate);
3409         $maximum_renewal_date->add(
3410             $circulation_rules->{lengthunit} => $circulation_rules->{no_auto_renewal_after}
3411         );
3412     }
3413
3414     if ( $circulation_rules->{no_auto_renewal_after_hard_limit} ) {
3415         my $dt = dt_from_string( $circulation_rules->{no_auto_renewal_after_hard_limit} );
3416         $maximum_renewal_date = $dt if not $maximum_renewal_date or $maximum_renewal_date > $dt;
3417     }
3418     return $maximum_renewal_date;
3419 }
3420
3421
3422 =head2 GetIssuingCharges
3423
3424   ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
3425
3426 Calculate how much it would cost for a given patron to borrow a given
3427 item, including any applicable discounts.
3428
3429 C<$itemnumber> is the item number of item the patron wishes to borrow.
3430
3431 C<$borrowernumber> is the patron's borrower number.
3432
3433 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
3434 and C<$item_type> is the code for the item's item type (e.g., C<VID>
3435 if it's a video).
3436
3437 =cut
3438
3439 sub GetIssuingCharges {
3440
3441     # calculate charges due
3442     my ( $itemnumber, $borrowernumber ) = @_;
3443     my $charge = 0;
3444     my $dbh    = C4::Context->dbh;
3445     my $item_type;
3446
3447     # Get the book's item type and rental charge (via its biblioitem).
3448     my $charge_query = 'SELECT itemtypes.itemtype,rentalcharge FROM items
3449         LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber';
3450     $charge_query .= (C4::Context->preference('item-level_itypes'))
3451         ? ' LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype'
3452         : ' LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype';
3453
3454     $charge_query .= ' WHERE items.itemnumber =?';
3455
3456     my $sth = $dbh->prepare($charge_query);
3457     $sth->execute($itemnumber);
3458     if ( my $item_data = $sth->fetchrow_hashref ) {
3459         $item_type = $item_data->{itemtype};
3460         $charge    = $item_data->{rentalcharge};
3461         if ($charge) {
3462             # FIXME This should follow CircControl
3463             my $branch = C4::Context::mybranch();
3464             my $patron = Koha::Patrons->find( $borrowernumber );
3465             my $discount = Koha::CirculationRules->get_effective_rule({
3466                 categorycode => $patron->categorycode,
3467                 branchcode   => $branch,
3468                 itemtype     => $item_type,
3469                 rule_name    => 'rentaldiscount'
3470             });
3471             if ($discount) {
3472                 $charge = ( $charge * ( 100 - $discount->rule_value ) ) / 100;
3473             }
3474             $charge = sprintf '%.2f', $charge; # ensure no fractions of a penny returned
3475         }
3476     }
3477
3478     return ( $charge, $item_type );
3479 }
3480
3481 =head2 AddIssuingCharge
3482
3483   &AddIssuingCharge( $checkout, $charge, $type )
3484
3485 =cut
3486
3487 sub AddIssuingCharge {
3488     my ( $checkout, $charge, $type ) = @_;
3489
3490     # FIXME What if checkout does not exist?
3491
3492     my $account = Koha::Account->new({ patron_id => $checkout->borrowernumber });
3493     my $accountline = $account->add_debit(
3494         {
3495             amount      => $charge,
3496             note        => undef,
3497             user_id     => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
3498             library_id  => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
3499             interface   => C4::Context->interface,
3500             type        => $type,
3501             item_id     => $checkout->itemnumber,
3502             issue_id    => $checkout->issue_id,
3503         }
3504     );
3505 }
3506
3507 =head2 GetTransfers
3508
3509   GetTransfers($itemnumber);
3510
3511 =cut
3512
3513 sub GetTransfers {
3514     my ($itemnumber) = @_;
3515
3516     my $dbh = C4::Context->dbh;
3517
3518     my $query = '
3519         SELECT datesent,
3520                frombranch,
3521                tobranch,
3522                branchtransfer_id,
3523                daterequested,
3524                reason
3525         FROM branchtransfers
3526         WHERE itemnumber = ?
3527           AND datearrived IS NULL
3528           AND datecancelled IS NULL
3529         ';
3530     my $sth = $dbh->prepare($query);
3531     $sth->execute($itemnumber);
3532     my @row = $sth->fetchrow_array();
3533     return @row;
3534 }
3535
3536 =head2 GetTransfersFromTo
3537
3538   @results = GetTransfersFromTo($frombranch,$tobranch);
3539
3540 Returns the list of pending transfers between $from and $to branch
3541
3542 =cut
3543
3544 sub GetTransfersFromTo {
3545     my ( $frombranch, $tobranch ) = @_;
3546     return unless ( $frombranch && $tobranch );
3547     my $dbh   = C4::Context->dbh;
3548     my $query = "
3549         SELECT branchtransfer_id,itemnumber,datesent,frombranch
3550         FROM   branchtransfers
3551         WHERE  frombranch=?
3552           AND  tobranch=?
3553           AND datecancelled IS NULL
3554           AND datesent IS NOT NULL
3555           AND datearrived IS NULL
3556     ";
3557     my $sth = $dbh->prepare($query);
3558     $sth->execute( $frombranch, $tobranch );
3559     my @gettransfers;
3560
3561     while ( my $data = $sth->fetchrow_hashref ) {
3562         push @gettransfers, $data;
3563     }
3564     return (@gettransfers);
3565 }
3566
3567 =head2 SendCirculationAlert
3568
3569 Send out a C<check-in> or C<checkout> alert using the messaging system.
3570
3571 B<Parameters>:
3572
3573 =over 4
3574
3575 =item type
3576
3577 Valid values for this parameter are: C<CHECKIN> and C<CHECKOUT>.
3578
3579 =item item
3580
3581 Hashref of information about the item being checked in or out.
3582
3583 =item borrower
3584
3585 Hashref of information about the borrower of the item.
3586
3587 =item branch
3588
3589 The branchcode from where the checkout or check-in took place.
3590
3591 =back
3592
3593 B<Example>:
3594
3595     SendCirculationAlert({
3596         type     => 'CHECKOUT',
3597         item     => $item,
3598         borrower => $borrower,
3599         branch   => $branch,
3600     });
3601
3602 =cut
3603
3604 sub SendCirculationAlert {
3605     my ($opts) = @_;
3606     my ($type, $item, $borrower, $branch, $issue) =
3607         ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch}, $opts->{issue});
3608     my %message_name = (
3609         CHECKIN  => 'Item_Check_in',
3610         CHECKOUT => 'Item_Checkout',
3611         RENEWAL  => 'Item_Checkout',
3612     );
3613     my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({
3614         borrowernumber => $borrower->{borrowernumber},
3615         message_name   => $message_name{$type},
3616     });
3617
3618
3619     my $tables = {
3620         items => $item->{itemnumber},
3621         biblio      => $item->{biblionumber},
3622         biblioitems => $item->{biblionumber},
3623         borrowers   => $borrower,
3624         branches    => $branch,
3625     };
3626
3627     # TODO: Currently, we need to pass an issue_id as identifier for old_issues, but still an itemnumber for issues.
3628     # See C4::Letters:: _parseletter_sth
3629     if( $type eq 'CHECKIN' ){
3630         $tables->{old_issues} = $issue->issue_id;
3631     } else {
3632         $tables->{issues} = $item->{itemnumber};
3633     }
3634
3635     my $schema = Koha::Database->new->schema;
3636     my @transports = keys %{ $borrower_preferences->{transports} };
3637
3638     # From the MySQL doc:
3639     # LOCK TABLES is not transaction-safe and implicitly commits any active transaction before attempting to lock the tables.
3640     # If the LOCK/UNLOCK statements are executed from tests, the current transaction will be committed.
3641     # To avoid that we need to guess if this code is execute from tests or not (yes it is a bit hacky)
3642     my $do_not_lock = ( exists $ENV{_} && $ENV{_} =~ m|prove| ) || $ENV{KOHA_TESTING};
3643
3644     for my $mtt (@transports) {
3645         my $letter =  C4::Letters::GetPreparedLetter (
3646             module => 'circulation',
3647             letter_code => $type,
3648             branchcode => $branch,
3649             message_transport_type => $mtt,
3650             lang => $borrower->{lang},
3651             tables => $tables,
3652         ) or next;
3653
3654         C4::Context->dbh->do(q|LOCK TABLE message_queue READ|) unless $do_not_lock;
3655         C4::Context->dbh->do(q|LOCK TABLE message_queue WRITE|) unless $do_not_lock;
3656         my $message = C4::Message->find_last_message($borrower, $type, $mtt);
3657         unless ( $message ) {
3658             C4::Context->dbh->do(q|UNLOCK TABLES|) unless $do_not_lock;
3659             C4::Message->enqueue($letter, $borrower, $mtt);
3660         } else {
3661             $message->append($letter);
3662             $message->update;
3663         }
3664         C4::Context->dbh->do(q|UNLOCK TABLES|) unless $do_not_lock;
3665     }
3666
3667     return;
3668 }
3669
3670 =head2 updateWrongTransfer
3671
3672   $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
3673
3674 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 
3675
3676 =cut
3677
3678 sub updateWrongTransfer {
3679         my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
3680
3681     # first step: cancel the original transfer
3682     my $item = Koha::Items->find($itemNumber);
3683     my $transfer = $item->get_transfer;
3684     $transfer->set({ datecancelled => dt_from_string, cancellation_reason => 'WrongTransfer' })->store();
3685
3686     # second step: create a new transfer to the right location
3687     my $new_transfer = $item->request_transfer(
3688         {
3689             to            => $transfer->to_library,
3690             reason        => $transfer->reason,
3691             comment       => $transfer->comments,
3692             ignore_limits => 1,
3693             enqueue       => 1
3694         }
3695     );
3696
3697     return $new_transfer;
3698 }
3699
3700 =head2 CalcDateDue
3701
3702 $newdatedue = CalcDateDue($startdate,$itemtype,$branchcode,$borrower);
3703
3704 this function calculates the due date given the start date and configured circulation rules,
3705 checking against the holidays calendar as per the daysmode circulation rule.
3706 C<$startdate>   = DateTime object representing start date of loan period (assumed to be today)
3707 C<$itemtype>  = itemtype code of item in question
3708 C<$branch>  = location whose calendar to use
3709 C<$borrower> = Borrower object
3710 C<$isrenewal> = Boolean: is true if we want to calculate the date due for a renewal. Else is false.
3711
3712 =cut
3713
3714 sub CalcDateDue {
3715     my ( $startdate, $itemtype, $branch, $borrower, $isrenewal ) = @_;
3716
3717     $isrenewal ||= 0;
3718
3719     # loanlength now a href
3720     my $loanlength =
3721             GetLoanLength( $borrower->{'categorycode'}, $itemtype, $branch );
3722
3723     my $length_key = ( $isrenewal and defined $loanlength->{renewalperiod} )
3724             ? qq{renewalperiod}
3725             : qq{issuelength};
3726
3727     my $datedue;
3728     if ( $startdate ) {
3729         if (ref $startdate ne 'DateTime' ) {
3730             $datedue = dt_from_string($datedue);
3731         } else {
3732             $datedue = $startdate->clone;
3733         }
3734     } else {
3735         $datedue = dt_from_string()->truncate( to => 'minute' );
3736     }
3737
3738
3739     my $daysmode = Koha::CirculationRules->get_effective_daysmode(
3740         {
3741             categorycode => $borrower->{categorycode},
3742             itemtype     => $itemtype,
3743             branchcode   => $branch,
3744         }
3745     );
3746
3747     # calculate the datedue as normal
3748     if ( $daysmode eq 'Days' )
3749     {    # ignoring calendar
3750         if ( $loanlength->{lengthunit} eq 'hours' ) {
3751             $datedue->add( hours => $loanlength->{$length_key} );
3752         } else {    # days
3753             $datedue->add( days => $loanlength->{$length_key} );
3754             $datedue->set_hour(23);
3755             $datedue->set_minute(59);
3756         }
3757     } else {
3758         my $dur;
3759         if ($loanlength->{lengthunit} eq 'hours') {
3760             $dur = DateTime::Duration->new( hours => $loanlength->{$length_key});
3761         }
3762         else { # days
3763             $dur = DateTime::Duration->new( days => $loanlength->{$length_key});
3764         }
3765         my $calendar = Koha::Calendar->new( branchcode => $branch, days_mode => $daysmode );
3766         $datedue = $calendar->addDuration( $datedue, $dur, $loanlength->{lengthunit} );
3767         if ($loanlength->{lengthunit} eq 'days') {
3768             $datedue->set_hour(23);
3769             $datedue->set_minute(59);
3770         }
3771     }
3772
3773     # if Hard Due Dates are used, retrieve them and apply as necessary
3774     my ( $hardduedate, $hardduedatecompare ) =
3775       GetHardDueDate( $borrower->{'categorycode'}, $itemtype, $branch );
3776     if ($hardduedate) {    # hardduedates are currently dates
3777         $hardduedate->truncate( to => 'minute' );
3778         $hardduedate->set_hour(23);
3779         $hardduedate->set_minute(59);
3780         my $cmp = DateTime->compare( $hardduedate, $datedue );
3781
3782 # if the calculated due date is after the 'before' Hard Due Date (ceiling), override
3783 # if the calculated date is before the 'after' Hard Due Date (floor), override
3784 # if the hard due date is set to 'exactly', overrride
3785         if ( $hardduedatecompare == 0 || $hardduedatecompare == $cmp ) {
3786             $datedue = $hardduedate->clone;
3787         }
3788
3789         # in all other cases, keep the date due as it is
3790
3791     }
3792
3793     # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
3794     if ( C4::Context->preference('ReturnBeforeExpiry') ) {
3795         my $expiry_dt = dt_from_string( $borrower->{dateexpiry}, 'iso', 'floating');
3796         if( $expiry_dt ) { #skip empty expiry date..
3797             $expiry_dt->set( hour => 23, minute => 59);
3798             my $d1= $datedue->clone->set_time_zone('floating');
3799             if ( DateTime->compare( $d1, $expiry_dt ) == 1 ) {
3800                 $datedue = $expiry_dt->clone->set_time_zone( C4::Context->tz );
3801             }
3802         }
3803         if ( $daysmode ne 'Days' ) {
3804           my $calendar = Koha::Calendar->new( branchcode => $branch, days_mode => $daysmode );
3805           if ( $calendar->is_holiday($datedue) ) {
3806               # Don't return on a closed day
3807               $datedue = $calendar->prev_open_days( $datedue, 1 );
3808           }
3809         }
3810     }
3811
3812     return $datedue;
3813 }
3814
3815
3816 sub CheckValidBarcode{
3817 my ($barcode) = @_;
3818 my $dbh = C4::Context->dbh;
3819 my $query=qq|SELECT count(*) 
3820              FROM items 
3821              WHERE barcode=?
3822             |;
3823 my $sth = $dbh->prepare($query);
3824 $sth->execute($barcode);
3825 my $exist=$sth->fetchrow ;
3826 return $exist;
3827 }
3828
3829 =head2 IsBranchTransferAllowed
3830
3831   $allowed = IsBranchTransferAllowed( $toBranch, $fromBranch, $code );
3832
3833 Code is either an itemtype or collection doe depending on the pref BranchTransferLimitsType
3834
3835 Deprecated in favor of Koha::Item::Transfer::Limits->find/search and
3836 Koha::Item->can_be_transferred.
3837
3838 =cut
3839
3840 sub IsBranchTransferAllowed {
3841         my ( $toBranch, $fromBranch, $code ) = @_;
3842
3843         if ( $toBranch eq $fromBranch ) { return 1; } ## Short circuit for speed.
3844         
3845         my $limitType = C4::Context->preference("BranchTransferLimitsType");   
3846         my $dbh = C4::Context->dbh;
3847             
3848         my $sth = $dbh->prepare("SELECT * FROM branch_transfer_limits WHERE toBranch = ? AND fromBranch = ? AND $limitType = ?");
3849         $sth->execute( $toBranch, $fromBranch, $code );
3850         my $limit = $sth->fetchrow_hashref();
3851                         
3852         ## If a row is found, then that combination is not allowed, if no matching row is found, then the combination *is allowed*
3853         if ( $limit->{'limitId'} ) {
3854                 return 0;
3855         } else {
3856                 return 1;
3857         }
3858 }                                                        
3859
3860 =head2 CreateBranchTransferLimit
3861
3862   CreateBranchTransferLimit( $toBranch, $fromBranch, $code );
3863
3864 $code is either itemtype or collection code depending on what the pref BranchTransferLimitsType is set to.
3865
3866 Deprecated in favor of Koha::Item::Transfer::Limit->new.
3867
3868 =cut
3869
3870 sub CreateBranchTransferLimit {
3871    my ( $toBranch, $fromBranch, $code ) = @_;
3872    return unless defined($toBranch) && defined($fromBranch);
3873    my $limitType = C4::Context->preference("BranchTransferLimitsType");
3874    
3875    my $dbh = C4::Context->dbh;
3876    
3877    my $sth = $dbh->prepare("INSERT INTO branch_transfer_limits ( $limitType, toBranch, fromBranch ) VALUES ( ?, ?, ? )");
3878    return $sth->execute( $code, $toBranch, $fromBranch );
3879 }
3880
3881 =head2 DeleteBranchTransferLimits
3882
3883     my $result = DeleteBranchTransferLimits($frombranch);
3884
3885 Deletes all the library transfer limits for one library.  Returns the
3886 number of limits deleted, 0e0 if no limits were deleted, or undef if
3887 no arguments are supplied.
3888
3889 Deprecated in favor of Koha::Item::Transfer::Limits->search({
3890     fromBranch => $fromBranch
3891     })->delete.
3892
3893 =cut
3894
3895 sub DeleteBranchTransferLimits {
3896     my $branch = shift;
3897     return unless defined $branch;
3898     my $dbh    = C4::Context->dbh;
3899     my $sth    = $dbh->prepare("DELETE FROM branch_transfer_limits WHERE fromBranch = ?");
3900     return $sth->execute($branch);
3901 }
3902
3903 sub ReturnLostItem{
3904     my ( $borrowernumber, $itemnum ) = @_;
3905     MarkIssueReturned( $borrowernumber, $itemnum );
3906 }
3907
3908 =head2 LostItem
3909
3910   LostItem( $itemnumber, $mark_lost_from, $force_mark_returned, [$params] );
3911
3912 The final optional parameter, C<$params>, expected to contain
3913 'skip_record_index' key, which relayed down to Koha::Item/store,
3914 there it prevents calling of ModZebra index_records,
3915 which takes most of the time in batch adds/deletes: index_records better
3916 to be called later in C<additem.pl> after the whole loop.
3917
3918 $params:
3919     skip_record_index => 1|0
3920
3921 =cut
3922
3923 sub LostItem{
3924     my ($itemnumber, $mark_lost_from, $force_mark_returned, $params) = @_;
3925
3926     unless ( $mark_lost_from ) {
3927         # Temporary check to avoid regressions
3928         die q|LostItem called without $mark_lost_from, check the API.|;
3929     }
3930
3931     my $mark_returned;
3932     if ( $force_mark_returned ) {
3933         $mark_returned = 1;
3934     } else {
3935         my $pref = C4::Context->preference('MarkLostItemsAsReturned') // q{};
3936         $mark_returned = ( $pref =~ m|$mark_lost_from| );
3937     }
3938
3939     my $dbh = C4::Context->dbh();
3940     my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title 
3941                            FROM issues 
3942                            JOIN items USING (itemnumber) 
3943                            JOIN biblio USING (biblionumber)
3944                            WHERE issues.itemnumber=?");
3945     $sth->execute($itemnumber);
3946     my $issues=$sth->fetchrow_hashref();
3947
3948     # If a borrower lost the item, add a replacement cost to the their record
3949     if ( my $borrowernumber = $issues->{borrowernumber} ){
3950         my $patron = Koha::Patrons->find( $borrowernumber );
3951
3952         my $fix = _FixOverduesOnReturn($borrowernumber, $itemnumber, C4::Context->preference('WhenLostForgiveFine'), 'LOST');
3953         defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $itemnumber...) failed!";  # zero is OK, check defined
3954
3955         if (C4::Context->preference('WhenLostChargeReplacementFee')){
3956             C4::Accounts::chargelostitem(
3957                 $borrowernumber,
3958                 $itemnumber,
3959                 $issues->{'replacementprice'},
3960                 sprintf( "%s %s %s",
3961                     $issues->{'title'}          || q{},
3962                     $issues->{'barcode'}        || q{},
3963                     $issues->{'itemcallnumber'} || q{},
3964                 ),
3965             );
3966             #FIXME : Should probably have a way to distinguish this from an item that really was returned.
3967             #warn " $issues->{'borrowernumber'}  /  $itemnumber ";
3968         }
3969
3970         MarkIssueReturned($borrowernumber,$itemnumber,undef,$patron->privacy,$params) if $mark_returned;
3971     }
3972
3973     # When an item is marked as lost, we should automatically cancel its outstanding transfers.
3974     my $item = Koha::Items->find($itemnumber);
3975     my $transfers = $item->get_transfers;
3976     while (my $transfer = $transfers->next) {
3977         $transfer->cancel({ reason => 'ItemLost', force => 1 });
3978     }
3979 }
3980
3981 sub GetOfflineOperations {
3982     my $dbh = C4::Context->dbh;
3983     my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE branchcode=? ORDER BY timestamp");
3984     $sth->execute(C4::Context->userenv->{'branch'});
3985     my $results = $sth->fetchall_arrayref({});
3986     return $results;
3987 }
3988
3989 sub GetOfflineOperation {
3990     my $operationid = shift;
3991     return unless $operationid;
3992     my $dbh = C4::Context->dbh;
3993     my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE operationid=?");
3994     $sth->execute( $operationid );
3995     return $sth->fetchrow_hashref;
3996 }
3997
3998 sub AddOfflineOperation {
3999     my ( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount ) = @_;
4000     my $dbh = C4::Context->dbh;
4001     my $sth = $dbh->prepare("INSERT INTO pending_offline_operations (userid, branchcode, timestamp, action, barcode, cardnumber, amount) VALUES(?,?,?,?,?,?,?)");
4002     $sth->execute( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount );
4003     return "Added.";
4004 }
4005
4006 sub DeleteOfflineOperation {
4007     my $dbh = C4::Context->dbh;
4008     my $sth = $dbh->prepare("DELETE FROM pending_offline_operations WHERE operationid=?");
4009     $sth->execute( shift );
4010     return "Deleted.";
4011 }
4012
4013 sub ProcessOfflineOperation {
4014     my $operation = shift;
4015
4016     my $report;
4017     if ( $operation->{action} eq 'return' ) {
4018         $report = ProcessOfflineReturn( $operation );
4019     } elsif ( $operation->{action} eq 'issue' ) {
4020         $report = ProcessOfflineIssue( $operation );
4021     } elsif ( $operation->{action} eq 'payment' ) {
4022         $report = ProcessOfflinePayment( $operation );
4023     }
4024
4025     DeleteOfflineOperation( $operation->{operationid} ) if $operation->{operationid};
4026
4027     return $report;
4028 }
4029
4030 sub ProcessOfflineReturn {
4031     my $operation = shift;
4032
4033     my $item = Koha::Items->find({barcode => $operation->{barcode}});
4034
4035     if ( $item ) {
4036         my $itemnumber = $item->itemnumber;
4037         my $issue = GetOpenIssue( $itemnumber );
4038         if ( $issue ) {
4039             my $leave_item_lost = C4::Context->preference("BlockReturnOfLostItems") ? 1 : 0;
4040             ModDateLastSeen( $itemnumber, $leave_item_lost );
4041             MarkIssueReturned(
4042                 $issue->{borrowernumber},
4043                 $itemnumber,
4044                 $operation->{timestamp},
4045             );
4046             $item->renewals(0);
4047             $item->onloan(undef);
4048             $item->store({ log_action => 0 });
4049             return "Success.";
4050         } else {
4051             return "Item not issued.";
4052         }
4053     } else {
4054         return "Item not found.";
4055     }
4056 }
4057
4058 sub ProcessOfflineIssue {
4059     my $operation = shift;
4060
4061     my $patron = Koha::Patrons->find( { cardnumber => $operation->{cardnumber} } );
4062
4063     if ( $patron ) {
4064         my $item = Koha::Items->find({ barcode => $operation->{barcode} });
4065         unless ($item) {
4066             return "Barcode not found.";
4067         }
4068         my $itemnumber = $item->itemnumber;
4069         my $issue = GetOpenIssue( $itemnumber );
4070
4071         if ( $issue and ( $issue->{borrowernumber} ne $patron->borrowernumber ) ) { # Item already issued to another patron mark it returned
4072             MarkIssueReturned(
4073                 $issue->{borrowernumber},
4074                 $itemnumber,
4075                 $operation->{timestamp},
4076             );
4077         }
4078         AddIssue(
4079             $patron->unblessed,
4080             $operation->{'barcode'},
4081             undef,
4082             undef,
4083             $operation->{timestamp},
4084             undef,
4085         );
4086         return "Success.";
4087     } else {
4088         return "Borrower not found.";
4089     }
4090 }
4091
4092 sub ProcessOfflinePayment {
4093     my $operation = shift;
4094
4095     my $patron = Koha::Patrons->find({ cardnumber => $operation->{cardnumber} });
4096
4097     $patron->account->pay(
4098         {
4099             amount     => $operation->{amount},
4100             library_id => $operation->{branchcode},
4101             interface  => 'koc'
4102         }
4103     );
4104
4105     return "Success.";
4106 }
4107
4108 =head2 TransferSlip
4109
4110   TransferSlip($user_branch, $itemnumber, $barcode, $to_branch)
4111
4112   Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
4113
4114 =cut
4115
4116 sub TransferSlip {
4117     my ($branch, $itemnumber, $barcode, $to_branch) = @_;
4118
4119     my $item =
4120       $itemnumber
4121       ? Koha::Items->find($itemnumber)
4122       : Koha::Items->find( { barcode => $barcode } );
4123
4124     $item or return;
4125
4126     return C4::Letters::GetPreparedLetter (
4127         module => 'circulation',
4128         letter_code => 'TRANSFERSLIP',
4129         branchcode => $branch,
4130         tables => {
4131             'branches'    => $to_branch,
4132             'biblio'      => $item->biblionumber,
4133             'items'       => $item->unblessed,
4134         },
4135     );
4136 }
4137
4138 =head2 CheckIfIssuedToPatron
4139
4140   CheckIfIssuedToPatron($borrowernumber, $biblionumber)
4141
4142   Return 1 if any record item is issued to patron, otherwise return 0
4143
4144 =cut
4145
4146 sub CheckIfIssuedToPatron {
4147     my ($borrowernumber, $biblionumber) = @_;
4148
4149     my $dbh = C4::Context->dbh;
4150     my $query = q|
4151         SELECT COUNT(*) FROM issues
4152         LEFT JOIN items ON items.itemnumber = issues.itemnumber
4153         WHERE items.biblionumber = ?
4154         AND issues.borrowernumber = ?
4155     |;
4156     my $is_issued = $dbh->selectrow_array($query, {}, $biblionumber, $borrowernumber );
4157     return 1 if $is_issued;
4158     return;
4159 }
4160
4161 =head2 IsItemIssued
4162
4163   IsItemIssued( $itemnumber )
4164
4165   Return 1 if the item is on loan, otherwise return 0
4166
4167 =cut
4168
4169 sub IsItemIssued {
4170     my $itemnumber = shift;
4171     my $dbh = C4::Context->dbh;
4172     my $sth = $dbh->prepare(q{
4173         SELECT COUNT(*)
4174         FROM issues
4175         WHERE itemnumber = ?
4176     });
4177     $sth->execute($itemnumber);
4178     return $sth->fetchrow;
4179 }
4180
4181 =head2 GetAgeRestriction
4182
4183   my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions, $borrower);
4184   my ($ageRestriction, $daysToAgeRestriction) = GetAgeRestriction($record_restrictions);
4185
4186   if($daysToAgeRestriction <= 0) { #Borrower is allowed to access this material, as they are older or as old as the agerestriction }
4187   if($daysToAgeRestriction > 0) { #Borrower is this many days from meeting the agerestriction }
4188
4189 @PARAM1 the koha.biblioitems.agerestriction value, like K18, PEGI 13, ...
4190 @PARAM2 a borrower-object with koha.borrowers.dateofbirth. (OPTIONAL)
4191 @RETURNS The age restriction age in years and the days to fulfill the age restriction for the given borrower.
4192          Negative days mean the borrower has gone past the age restriction age.
4193
4194 =cut
4195
4196 sub GetAgeRestriction {
4197     my ($record_restrictions, $borrower) = @_;
4198     my $markers = C4::Context->preference('AgeRestrictionMarker');
4199
4200     return unless $record_restrictions;
4201     # Split $record_restrictions to something like FSK 16 or PEGI 6
4202     my @values = split ' ', uc($record_restrictions);
4203     return unless @values;
4204
4205     # Search first occurrence of one of the markers
4206     my @markers = split /\|/, uc($markers);
4207     return unless @markers;
4208
4209     my $index            = 0;
4210     my $restriction_year = 0;
4211     for my $value (@values) {
4212         $index++;
4213         for my $marker (@markers) {
4214             $marker =~ s/^\s+//;    #remove leading spaces
4215             $marker =~ s/\s+$//;    #remove trailing spaces
4216             if ( $marker eq $value ) {
4217                 if ( $index <= $#values ) {
4218                     $restriction_year += $values[$index];
4219                 }
4220                 last;
4221             }
4222             elsif ( $value =~ /^\Q$marker\E(\d+)$/ ) {
4223
4224                 # Perhaps it is something like "K16" (as in Finland)
4225                 $restriction_year += $1;
4226                 last;
4227             }
4228         }
4229         last if ( $restriction_year > 0 );
4230     }
4231
4232     #Check if the borrower is age restricted for this material and for how long.
4233     if ($restriction_year && $borrower) {
4234         if ( $borrower->{'dateofbirth'} ) {
4235             my @alloweddate = split /-/, $borrower->{'dateofbirth'};
4236             $alloweddate[0] += $restriction_year;
4237
4238             #Prevent runime eror on leap year (invalid date)
4239             if ( ( $alloweddate[1] == 2 ) && ( $alloweddate[2] == 29 ) ) {
4240                 $alloweddate[2] = 28;
4241             }
4242
4243             #Get how many days the borrower has to reach the age restriction
4244             my @Today = split /-/, dt_from_string()->ymd();
4245             my $daysToAgeRestriction = Date_to_Days(@alloweddate) - Date_to_Days(@Today);
4246             #Negative days means the borrower went past the age restriction age
4247             return ($restriction_year, $daysToAgeRestriction);
4248         }
4249     }
4250
4251     return ($restriction_year);
4252 }
4253
4254
4255 =head2 GetPendingOnSiteCheckouts
4256
4257 =cut
4258
4259 sub GetPendingOnSiteCheckouts {
4260     my $dbh = C4::Context->dbh;
4261     return $dbh->selectall_arrayref(q|
4262         SELECT
4263           items.barcode,
4264           items.biblionumber,
4265           items.itemnumber,
4266           items.itemnotes,
4267           items.itemcallnumber,
4268           items.location,
4269           issues.date_due,
4270           issues.branchcode,
4271           issues.date_due < NOW() AS is_overdue,
4272           biblio.author,
4273           biblio.title,
4274           borrowers.firstname,
4275           borrowers.surname,
4276           borrowers.cardnumber,
4277           borrowers.borrowernumber
4278         FROM items
4279         LEFT JOIN issues ON items.itemnumber = issues.itemnumber
4280         LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
4281         LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
4282         WHERE issues.onsite_checkout = 1
4283     |, { Slice => {} } );
4284 }
4285
4286 sub GetTopIssues {
4287     my ($params) = @_;
4288
4289     my ($count, $branch, $itemtype, $ccode, $newness)
4290         = @$params{qw(count branch itemtype ccode newness)};
4291
4292     my $dbh = C4::Context->dbh;
4293     my $query = q{
4294         SELECT * FROM (
4295         SELECT b.biblionumber, b.title, b.author, bi.itemtype, bi.publishercode,
4296           bi.place, bi.publicationyear, b.copyrightdate, bi.pages, bi.size,
4297           i.ccode, SUM(i.issues) AS count
4298         FROM biblio b
4299         LEFT JOIN items i ON (i.biblionumber = b.biblionumber)
4300         LEFT JOIN biblioitems bi ON (bi.biblionumber = b.biblionumber)
4301     };
4302
4303     my (@where_strs, @where_args);
4304
4305     if ($branch) {
4306         push @where_strs, 'i.homebranch = ?';
4307         push @where_args, $branch;
4308     }
4309     if ($itemtype) {
4310         if (C4::Context->preference('item-level_itypes')){
4311             push @where_strs, 'i.itype = ?';
4312             push @where_args, $itemtype;
4313         } else {
4314             push @where_strs, 'bi.itemtype = ?';
4315             push @where_args, $itemtype;
4316         }
4317     }
4318     if ($ccode) {
4319         push @where_strs, 'i.ccode = ?';
4320         push @where_args, $ccode;
4321     }
4322     if ($newness) {
4323         push @where_strs, 'TO_DAYS(NOW()) - TO_DAYS(b.datecreated) <= ?';
4324         push @where_args, $newness;
4325     }
4326
4327     if (@where_strs) {
4328         $query .= 'WHERE ' . join(' AND ', @where_strs);
4329     }
4330
4331     $query .= q{
4332         GROUP BY b.biblionumber, b.title, b.author, bi.itemtype, bi.publishercode,
4333           bi.place, bi.publicationyear, b.copyrightdate, bi.pages, bi.size,
4334           i.ccode
4335         ORDER BY count DESC
4336     };
4337
4338     $query .= q{ ) xxx WHERE count > 0 };
4339     $count = int($count);
4340     if ($count > 0) {
4341         $query .= "LIMIT $count";
4342     }
4343
4344     my $rows = $dbh->selectall_arrayref($query, { Slice => {} }, @where_args);
4345
4346     return @$rows;
4347 }
4348
4349 =head2 Internal methods
4350
4351 =cut
4352
4353 sub _CalculateAndUpdateFine {
4354     my ($params) = @_;
4355
4356     my $borrower    = $params->{borrower};
4357     my $item        = $params->{item};
4358     my $issue       = $params->{issue};
4359     my $return_date = $params->{return_date};
4360
4361     unless ($borrower) { carp "No borrower passed in!" && return; }
4362     unless ($item)     { carp "No item passed in!"     && return; }
4363     unless ($issue)    { carp "No issue passed in!"    && return; }
4364
4365     my $datedue = dt_from_string( $issue->date_due );
4366
4367     # we only need to calculate and change the fines if we want to do that on return
4368     # Should be on for hourly loans
4369     my $control = C4::Context->preference('CircControl');
4370     my $control_branchcode =
4371         ( $control eq 'ItemHomeLibrary' ) ? $item->{homebranch}
4372       : ( $control eq 'PatronLibrary' )   ? $borrower->{branchcode}
4373       :                                     $issue->branchcode;
4374
4375     my $date_returned = $return_date ? $return_date : dt_from_string();
4376
4377     my ( $amount, $unitcounttotal, $unitcount  ) =
4378       C4::Overdues::CalcFine( $item, $borrower->{categorycode}, $control_branchcode, $datedue, $date_returned );
4379
4380     if ( C4::Context->preference('finesMode') eq 'production' ) {
4381         if ( $amount > 0 ) {
4382             C4::Overdues::UpdateFine({
4383                 issue_id       => $issue->issue_id,
4384                 itemnumber     => $issue->itemnumber,
4385                 borrowernumber => $issue->borrowernumber,
4386                 amount         => $amount,
4387                 due            => output_pref($datedue),
4388             });
4389         }
4390         elsif ($return_date) {
4391
4392             # Backdated returns may have fines that shouldn't exist,
4393             # so in this case, we need to drop those fines to 0
4394
4395             C4::Overdues::UpdateFine({
4396                 issue_id       => $issue->issue_id,
4397                 itemnumber     => $issue->itemnumber,
4398                 borrowernumber => $issue->borrowernumber,
4399                 amount         => 0,
4400                 due            => output_pref($datedue),
4401             });
4402         }
4403     }
4404 }
4405
4406 sub _CanBookBeAutoRenewed {
4407     my ( $params ) = @_;
4408     my $patron = $params->{patron};
4409     my $item = $params->{item};
4410     my $branchcode = $params->{branchcode};
4411     my $issue = $params->{issue};
4412
4413     return "no" unless $issue->auto_renew && $patron->autorenew_checkouts;
4414
4415     my $issuing_rule = Koha::CirculationRules->get_effective_rules(
4416         {
4417             categorycode => $patron->categorycode,
4418             itemtype     => $item->effective_itemtype,
4419             branchcode   => $branchcode,
4420             rules => [
4421                 'no_auto_renewal_after',
4422                 'no_auto_renewal_after_hard_limit',
4423                 'lengthunit',
4424                 'norenewalbefore',
4425             ]
4426         }
4427     );
4428
4429     if ( $patron->category->effective_BlockExpiredPatronOpacActions and $patron->is_expired ) {
4430         return 'auto_account_expired';
4431     }
4432
4433     if ( defined $issuing_rule->{no_auto_renewal_after}
4434             and $issuing_rule->{no_auto_renewal_after} ne "" ) {
4435         # Get issue_date and add no_auto_renewal_after
4436         # If this is greater than today, it's too late for renewal.
4437         my $maximum_renewal_date = dt_from_string($issue->issuedate, 'sql');
4438         $maximum_renewal_date->add(
4439             $issuing_rule->{lengthunit} => $issuing_rule->{no_auto_renewal_after}
4440         );
4441         my $now = dt_from_string;
4442         if ( $now >= $maximum_renewal_date ) {
4443             return "auto_too_late";
4444         }
4445     }
4446     if ( defined $issuing_rule->{no_auto_renewal_after_hard_limit}
4447                   and $issuing_rule->{no_auto_renewal_after_hard_limit} ne "" ) {
4448         # If no_auto_renewal_after_hard_limit is >= today, it's also too late for renewal
4449         if ( dt_from_string >= dt_from_string( $issuing_rule->{no_auto_renewal_after_hard_limit} ) ) {
4450             return "auto_too_late";
4451         }
4452     }
4453
4454     if ( C4::Context->preference('OPACFineNoRenewalsBlockAutoRenew') ) {
4455         my $fine_no_renewals = C4::Context->preference("OPACFineNoRenewals");
4456         my $amountoutstanding =
4457           C4::Context->preference("OPACFineNoRenewalsIncludeCredit")
4458           ? $patron->account->balance
4459           : $patron->account->outstanding_debits->total_outstanding;
4460         if ( $amountoutstanding and $amountoutstanding > $fine_no_renewals ) {
4461             return "auto_too_much_oweing";
4462         }
4463     }
4464
4465     my $soonest = GetSoonestRenewDate($patron->id, $item->id);
4466     if ( $soonest > dt_from_string() )
4467     {
4468         return ( "auto_too_soon", $soonest );
4469     }
4470
4471     return "ok";
4472 }
4473
4474 sub _item_denied_renewal {
4475     my ($params) = @_;
4476
4477     my $item = $params->{item};
4478     return unless $item;
4479
4480     my $denyingrules = Koha::Config::SysPrefs->find('ItemsDeniedRenewal')->get_yaml_pref_hash();
4481     return unless $denyingrules;
4482     foreach my $field (keys %$denyingrules) {
4483         my $val = $item->$field;
4484         if( !defined $val) {
4485             if ( any { !defined $_ }  @{$denyingrules->{$field}} ){
4486                 return 1;
4487             }
4488         } elsif (any { defined($_) && $val eq $_ } @{$denyingrules->{$field}}) {
4489            # If the results matches the values in the syspref
4490            # We return true if match found
4491             return 1;
4492         }
4493     }
4494     return 0;
4495 }
4496
4497 1;
4498
4499 __END__
4500
4501 =head1 AUTHOR
4502
4503 Koha Development Team <http://koha-community.org/>
4504
4505 =cut