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