Bug 11629 - Add ability to update not for loan status on checkin
[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 under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21
22 use strict;
23 #use warnings; FIXME - Bug 2505
24 use DateTime;
25 use C4::Context;
26 use C4::Stats;
27 use C4::Reserves;
28 use C4::Biblio;
29 use C4::Items;
30 use C4::Members;
31 use C4::Dates;
32 use C4::Dates qw(format_date);
33 use C4::Accounts;
34 use C4::ItemCirculationAlertPreference;
35 use C4::Message;
36 use C4::Debug;
37 use C4::Branch; # GetBranches
38 use C4::Log; # logaction
39 use C4::Koha qw(
40     GetAuthorisedValueByCode
41     GetAuthValCode
42     GetKohaAuthorisedValueLib
43 );
44 use C4::Overdues qw(CalcFine UpdateFine);
45 use Algorithm::CheckDigits;
46
47 use Data::Dumper;
48 use Koha::DateUtils;
49 use Koha::Calendar;
50 use Koha::Borrower::Debarments;
51 use Carp;
52 use Date::Calc qw(
53   Today
54   Today_and_Now
55   Add_Delta_YM
56   Add_Delta_DHMS
57   Date_to_Days
58   Day_of_Week
59   Add_Delta_Days
60 );
61 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
62
63 BEGIN {
64         require Exporter;
65     $VERSION = 3.07.00.049;     # for version checking
66         @ISA    = qw(Exporter);
67
68         # FIXME subs that should probably be elsewhere
69         push @EXPORT, qw(
70                 &barcodedecode
71         &LostItem
72         &ReturnLostItem
73         );
74
75         # subs to deal with issuing a book
76         push @EXPORT, qw(
77                 &CanBookBeIssued
78                 &CanBookBeRenewed
79                 &AddIssue
80                 &AddRenewal
81                 &GetRenewCount
82         &GetSoonestRenewDate
83                 &GetItemIssue
84                 &GetItemIssues
85                 &GetIssuingCharges
86                 &GetIssuingRule
87         &GetBranchBorrowerCircRule
88         &GetBranchItemRule
89                 &GetBiblioIssues
90                 &GetOpenIssue
91                 &AnonymiseIssueHistory
92         &CheckIfIssuedToPatron
93         &IsItemIssued
94         );
95
96         # subs to deal with returns
97         push @EXPORT, qw(
98                 &AddReturn
99         &MarkIssueReturned
100         );
101
102         # subs to deal with transfers
103         push @EXPORT, qw(
104                 &transferbook
105                 &GetTransfers
106                 &GetTransfersFromTo
107                 &updateWrongTransfer
108                 &DeleteTransfer
109                 &IsBranchTransferAllowed
110                 &CreateBranchTransferLimit
111                 &DeleteBranchTransferLimits
112         &TransferSlip
113         );
114
115     # subs to deal with offline circulation
116     push @EXPORT, qw(
117       &GetOfflineOperations
118       &GetOfflineOperation
119       &AddOfflineOperation
120       &DeleteOfflineOperation
121       &ProcessOfflineOperation
122     );
123 }
124
125 =head1 NAME
126
127 C4::Circulation - Koha circulation module
128
129 =head1 SYNOPSIS
130
131 use C4::Circulation;
132
133 =head1 DESCRIPTION
134
135 The functions in this module deal with circulation, issues, and
136 returns, as well as general information about the library.
137 Also deals with stocktaking.
138
139 =head1 FUNCTIONS
140
141 =head2 barcodedecode
142
143   $str = &barcodedecode($barcode, [$filter]);
144
145 Generic filter function for barcode string.
146 Called on every circ if the System Pref itemBarcodeInputFilter is set.
147 Will do some manipulation of the barcode for systems that deliver a barcode
148 to circulation.pl that differs from the barcode stored for the item.
149 For proper functioning of this filter, calling the function on the 
150 correct barcode string (items.barcode) should return an unaltered barcode.
151
152 The optional $filter argument is to allow for testing or explicit 
153 behavior that ignores the System Pref.  Valid values are the same as the 
154 System Pref options.
155
156 =cut
157
158 # FIXME -- the &decode fcn below should be wrapped into this one.
159 # FIXME -- these plugins should be moved out of Circulation.pm
160 #
161 sub barcodedecode {
162     my ($barcode, $filter) = @_;
163     my $branch = C4::Branch::mybranch();
164     $filter = C4::Context->preference('itemBarcodeInputFilter') unless $filter;
165     $filter or return $barcode;     # ensure filter is defined, else return untouched barcode
166         if ($filter eq 'whitespace') {
167                 $barcode =~ s/\s//g;
168         } elsif ($filter eq 'cuecat') {
169                 chomp($barcode);
170             my @fields = split( /\./, $barcode );
171             my @results = map( decode($_), @fields[ 1 .. $#fields ] );
172             ($#results == 2) and return $results[2];
173         } elsif ($filter eq 'T-prefix') {
174                 if ($barcode =~ /^[Tt](\d)/) {
175                         (defined($1) and $1 eq '0') and return $barcode;
176             $barcode = substr($barcode, 2) + 0;     # FIXME: probably should be substr($barcode, 1)
177                 }
178         return sprintf("T%07d", $barcode);
179         # FIXME: $barcode could be "T1", causing warning: substr outside of string
180         # Why drop the nonzero digit after the T?
181         # Why pass non-digits (or empty string) to "T%07d"?
182         } elsif ($filter eq 'libsuite8') {
183                 unless($barcode =~ m/^($branch)-/i){    #if barcode starts with branch code its in Koha style. Skip it.
184                         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
185                                 $barcode =~ s/^[0]*(\d+)$/$branch-b-$1/i;
186                         }else{
187                                 $barcode =~ s/^(\D+)[0]*(\d+)$/$branch-$1-$2/i;
188                         }
189                 }
190     } elsif ($filter eq 'EAN13') {
191         my $ean = CheckDigits('ean');
192         if ( $ean->is_valid($barcode) ) {
193             #$barcode = sprintf('%013d',$barcode); # this doesn't work on 32-bit systems
194             $barcode = '0' x ( 13 - length($barcode) ) . $barcode;
195         } else {
196             warn "# [$barcode] not valid EAN-13/UPC-A\n";
197         }
198         }
199     return $barcode;    # return barcode, modified or not
200 }
201
202 =head2 decode
203
204   $str = &decode($chunk);
205
206 Decodes a segment of a string emitted by a CueCat barcode scanner and
207 returns it.
208
209 FIXME: Should be replaced with Barcode::Cuecat from CPAN
210 or Javascript based decoding on the client side.
211
212 =cut
213
214 sub decode {
215     my ($encoded) = @_;
216     my $seq =
217       'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-';
218     my @s = map { index( $seq, $_ ); } split( //, $encoded );
219     my $l = ( $#s + 1 ) % 4;
220     if ($l) {
221         if ( $l == 1 ) {
222             # warn "Error: Cuecat decode parsing failed!";
223             return;
224         }
225         $l = 4 - $l;
226         $#s += $l;
227     }
228     my $r = '';
229     while ( $#s >= 0 ) {
230         my $n = ( ( $s[0] << 6 | $s[1] ) << 6 | $s[2] ) << 6 | $s[3];
231         $r .=
232             chr( ( $n >> 16 ) ^ 67 )
233          .chr( ( $n >> 8 & 255 ) ^ 67 )
234          .chr( ( $n & 255 ) ^ 67 );
235         @s = @s[ 4 .. $#s ];
236     }
237     $r = substr( $r, 0, length($r) - $l );
238     return $r;
239 }
240
241 =head2 transferbook
242
243   ($dotransfer, $messages, $iteminformation) = &transferbook($newbranch, 
244                                             $barcode, $ignore_reserves);
245
246 Transfers an item to a new branch. If the item is currently on loan, it is automatically returned before the actual transfer.
247
248 C<$newbranch> is the code for the branch to which the item should be transferred.
249
250 C<$barcode> is the barcode of the item to be transferred.
251
252 If C<$ignore_reserves> is true, C<&transferbook> ignores reserves.
253 Otherwise, if an item is reserved, the transfer fails.
254
255 Returns three values:
256
257 =over
258
259 =item $dotransfer 
260
261 is true if the transfer was successful.
262
263 =item $messages
264
265 is a reference-to-hash which may have any of the following keys:
266
267 =over
268
269 =item C<BadBarcode>
270
271 There is no item in the catalog with the given barcode. The value is C<$barcode>.
272
273 =item C<IsPermanent>
274
275 The item's home branch is permanent. This doesn't prevent the item from being transferred, though. The value is the code of the item's home branch.
276
277 =item C<DestinationEqualsHolding>
278
279 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.
280
281 =item C<WasReturned>
282
283 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.
284
285 =item C<ResFound>
286
287 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>.
288
289 =item C<WasTransferred>
290
291 The item was eligible to be transferred. Barring problems communicating with the database, the transfer should indeed have succeeded. The value should be ignored.
292
293 =back
294
295 =back
296
297 =cut
298
299 sub transferbook {
300     my ( $tbr, $barcode, $ignoreRs ) = @_;
301     my $messages;
302     my $dotransfer      = 1;
303     my $branches        = GetBranches();
304     my $itemnumber = GetItemnumberFromBarcode( $barcode );
305     my $issue      = GetItemIssue($itemnumber);
306     my $biblio = GetBiblioFromItemNumber($itemnumber);
307
308     # bad barcode..
309     if ( not $itemnumber ) {
310         $messages->{'BadBarcode'} = $barcode;
311         $dotransfer = 0;
312     }
313
314     # get branches of book...
315     my $hbr = $biblio->{'homebranch'};
316     my $fbr = $biblio->{'holdingbranch'};
317
318     # if using Branch Transfer Limits
319     if ( C4::Context->preference("UseBranchTransferLimits") == 1 ) {
320         if ( C4::Context->preference("item-level_itypes") && C4::Context->preference("BranchTransferLimitsType") eq 'itemtype' ) {
321             if ( ! IsBranchTransferAllowed( $tbr, $fbr, $biblio->{'itype'} ) ) {
322                 $messages->{'NotAllowed'} = $tbr . "::" . $biblio->{'itype'};
323                 $dotransfer = 0;
324             }
325         } elsif ( ! IsBranchTransferAllowed( $tbr, $fbr, $biblio->{ C4::Context->preference("BranchTransferLimitsType") } ) ) {
326             $messages->{'NotAllowed'} = $tbr . "::" . $biblio->{ C4::Context->preference("BranchTransferLimitsType") };
327             $dotransfer = 0;
328         }
329     }
330
331     # if is permanent...
332     if ( $hbr && $branches->{$hbr}->{'PE'} ) {
333         $messages->{'IsPermanent'} = $hbr;
334         $dotransfer = 0;
335     }
336
337     # can't transfer book if is already there....
338     if ( $fbr eq $tbr ) {
339         $messages->{'DestinationEqualsHolding'} = 1;
340         $dotransfer = 0;
341     }
342
343     # check if it is still issued to someone, return it...
344     if ($issue->{borrowernumber}) {
345         AddReturn( $barcode, $fbr );
346         $messages->{'WasReturned'} = $issue->{borrowernumber};
347     }
348
349     # find reserves.....
350     # That'll save a database query.
351     my ( $resfound, $resrec, undef ) =
352       CheckReserves( $itemnumber );
353     if ( $resfound and not $ignoreRs ) {
354         $resrec->{'ResFound'} = $resfound;
355
356         #         $messages->{'ResFound'} = $resrec;
357         $dotransfer = 1;
358     }
359
360     #actually do the transfer....
361     if ($dotransfer) {
362         ModItemTransfer( $itemnumber, $fbr, $tbr );
363
364         # don't need to update MARC anymore, we do it in batch now
365         $messages->{'WasTransfered'} = 1;
366
367     }
368     ModDateLastSeen( $itemnumber );
369     return ( $dotransfer, $messages, $biblio );
370 }
371
372
373 sub TooMany {
374     my $borrower        = shift;
375     my $biblionumber = shift;
376         my $item                = shift;
377     my $cat_borrower    = $borrower->{'categorycode'};
378     my $dbh             = C4::Context->dbh;
379         my $branch;
380         # Get which branchcode we need
381         $branch = _GetCircControlBranch($item,$borrower);
382         my $type = (C4::Context->preference('item-level_itypes')) 
383                         ? $item->{'itype'}         # item-level
384                         : $item->{'itemtype'};     # biblio-level
385  
386     # given branch, patron category, and item type, determine
387     # applicable issuing rule
388     my $issuing_rule = GetIssuingRule($cat_borrower, $type, $branch);
389
390     # if a rule is found and has a loan limit set, count
391     # how many loans the patron already has that meet that
392     # rule
393     if (defined($issuing_rule) and defined($issuing_rule->{'maxissueqty'})) {
394         my @bind_params;
395         my $count_query = "SELECT COUNT(*) FROM issues
396                            JOIN items USING (itemnumber) ";
397
398         my $rule_itemtype = $issuing_rule->{itemtype};
399         if ($rule_itemtype eq "*") {
400             # matching rule has the default item type, so count only
401             # those existing loans that don't fall under a more
402             # specific rule
403             if (C4::Context->preference('item-level_itypes')) {
404                 $count_query .= " WHERE items.itype NOT IN (
405                                     SELECT itemtype FROM issuingrules
406                                     WHERE branchcode = ?
407                                     AND   (categorycode = ? OR categorycode = ?)
408                                     AND   itemtype <> '*'
409                                   ) ";
410             } else { 
411                 $count_query .= " JOIN  biblioitems USING (biblionumber) 
412                                   WHERE biblioitems.itemtype NOT IN (
413                                     SELECT itemtype FROM issuingrules
414                                     WHERE branchcode = ?
415                                     AND   (categorycode = ? OR categorycode = ?)
416                                     AND   itemtype <> '*'
417                                   ) ";
418             }
419             push @bind_params, $issuing_rule->{branchcode};
420             push @bind_params, $issuing_rule->{categorycode};
421             push @bind_params, $cat_borrower;
422         } else {
423             # rule has specific item type, so count loans of that
424             # specific item type
425             if (C4::Context->preference('item-level_itypes')) {
426                 $count_query .= " WHERE items.itype = ? ";
427             } else { 
428                 $count_query .= " JOIN  biblioitems USING (biblionumber) 
429                                   WHERE biblioitems.itemtype= ? ";
430             }
431             push @bind_params, $type;
432         }
433
434         $count_query .= " AND borrowernumber = ? ";
435         push @bind_params, $borrower->{'borrowernumber'};
436         my $rule_branch = $issuing_rule->{branchcode};
437         if ($rule_branch ne "*") {
438             if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
439                 $count_query .= " AND issues.branchcode = ? ";
440                 push @bind_params, $branch;
441             } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
442                 ; # if branch is the patron's home branch, then count all loans by patron
443             } else {
444                 $count_query .= " AND items.homebranch = ? ";
445                 push @bind_params, $branch;
446             }
447         }
448
449         my $count_sth = $dbh->prepare($count_query);
450         $count_sth->execute(@bind_params);
451         my ($current_loan_count) = $count_sth->fetchrow_array;
452
453         my $max_loans_allowed = $issuing_rule->{'maxissueqty'};
454         if ($current_loan_count >= $max_loans_allowed) {
455             return ($current_loan_count, $max_loans_allowed);
456         }
457     }
458
459     # Now count total loans against the limit for the branch
460     my $branch_borrower_circ_rule = GetBranchBorrowerCircRule($branch, $cat_borrower);
461     if (defined($branch_borrower_circ_rule->{maxissueqty})) {
462         my @bind_params = ();
463         my $branch_count_query = "SELECT COUNT(*) FROM issues
464                                   JOIN items USING (itemnumber)
465                                   WHERE borrowernumber = ? ";
466         push @bind_params, $borrower->{borrowernumber};
467
468         if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
469             $branch_count_query .= " AND issues.branchcode = ? ";
470             push @bind_params, $branch;
471         } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
472             ; # if branch is the patron's home branch, then count all loans by patron
473         } else {
474             $branch_count_query .= " AND items.homebranch = ? ";
475             push @bind_params, $branch;
476         }
477         my $branch_count_sth = $dbh->prepare($branch_count_query);
478         $branch_count_sth->execute(@bind_params);
479         my ($current_loan_count) = $branch_count_sth->fetchrow_array;
480
481         my $max_loans_allowed = $branch_borrower_circ_rule->{maxissueqty};
482         if ($current_loan_count >= $max_loans_allowed) {
483             return ($current_loan_count, $max_loans_allowed);
484         }
485     }
486
487     # OK, the patron can issue !!!
488     return;
489 }
490
491 =head2 itemissues
492
493   @issues = &itemissues($biblioitemnumber, $biblio);
494
495 Looks up information about who has borrowed the bookZ<>(s) with the
496 given biblioitemnumber.
497
498 C<$biblio> is ignored.
499
500 C<&itemissues> returns an array of references-to-hash. The keys
501 include the fields from the C<items> table in the Koha database.
502 Additional keys include:
503
504 =over 4
505
506 =item C<date_due>
507
508 If the item is currently on loan, this gives the due date.
509
510 If the item is not on loan, then this is either "Available" or
511 "Cancelled", if the item has been withdrawn.
512
513 =item C<card>
514
515 If the item is currently on loan, this gives the card number of the
516 patron who currently has the item.
517
518 =item C<timestamp0>, C<timestamp1>, C<timestamp2>
519
520 These give the timestamp for the last three times the item was
521 borrowed.
522
523 =item C<card0>, C<card1>, C<card2>
524
525 The card number of the last three patrons who borrowed this item.
526
527 =item C<borrower0>, C<borrower1>, C<borrower2>
528
529 The borrower number of the last three patrons who borrowed this item.
530
531 =back
532
533 =cut
534
535 #'
536 sub itemissues {
537     my ( $bibitem, $biblio ) = @_;
538     my $dbh = C4::Context->dbh;
539     my $sth =
540       $dbh->prepare("Select * from items where items.biblioitemnumber = ?")
541       || die $dbh->errstr;
542     my $i = 0;
543     my @results;
544
545     $sth->execute($bibitem) || die $sth->errstr;
546
547     while ( my $data = $sth->fetchrow_hashref ) {
548
549         # Find out who currently has this item.
550         # FIXME - Wouldn't it be better to do this as a left join of
551         # some sort? Currently, this code assumes that if
552         # fetchrow_hashref() fails, then the book is on the shelf.
553         # fetchrow_hashref() can fail for any number of reasons (e.g.,
554         # database server crash), not just because no items match the
555         # search criteria.
556         my $sth2 = $dbh->prepare(
557             "SELECT * FROM issues
558                 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
559                 WHERE itemnumber = ?
560             "
561         );
562
563         $sth2->execute( $data->{'itemnumber'} );
564         if ( my $data2 = $sth2->fetchrow_hashref ) {
565             $data->{'date_due'} = $data2->{'date_due'};
566             $data->{'card'}     = $data2->{'cardnumber'};
567             $data->{'borrower'} = $data2->{'borrowernumber'};
568         }
569         else {
570             $data->{'date_due'} = ($data->{'withdrawn'} eq '1') ? 'Cancelled' : 'Available';
571         }
572
573
574         # Find the last 3 people who borrowed this item.
575         $sth2 = $dbh->prepare(
576             "SELECT * FROM old_issues
577                 LEFT JOIN borrowers ON  issues.borrowernumber = borrowers.borrowernumber
578                 WHERE itemnumber = ?
579                 ORDER BY returndate DESC,timestamp DESC"
580         );
581
582         $sth2->execute( $data->{'itemnumber'} );
583         for ( my $i2 = 0 ; $i2 < 2 ; $i2++ )
584         {    # FIXME : error if there is less than 3 pple borrowing this item
585             if ( my $data2 = $sth2->fetchrow_hashref ) {
586                 $data->{"timestamp$i2"} = $data2->{'timestamp'};
587                 $data->{"card$i2"}      = $data2->{'cardnumber'};
588                 $data->{"borrower$i2"}  = $data2->{'borrowernumber'};
589             }    # if
590         }    # for
591
592         $results[$i] = $data;
593         $i++;
594     }
595
596     return (@results);
597 }
598
599 =head2 CanBookBeIssued
600
601   ( $issuingimpossible, $needsconfirmation ) =  CanBookBeIssued( $borrower, 
602                       $barcode, $duedatespec, $inprocess, $ignore_reserves );
603
604 Check if a book can be issued.
605
606 C<$issuingimpossible> and C<$needsconfirmation> are some hashref.
607
608 =over 4
609
610 =item C<$borrower> hash with borrower informations (from GetMember or GetMemberDetails)
611
612 =item C<$barcode> is the bar code of the book being issued.
613
614 =item C<$duedatespec> is a C4::Dates object.
615
616 =item C<$inprocess> boolean switch
617 =item C<$ignore_reserves> boolean switch
618
619 =back
620
621 Returns :
622
623 =over 4
624
625 =item C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
626 Possible values are :
627
628 =back
629
630 =head3 INVALID_DATE 
631
632 sticky due date is invalid
633
634 =head3 GNA
635
636 borrower gone with no address
637
638 =head3 CARD_LOST
639
640 borrower declared it's card lost
641
642 =head3 DEBARRED
643
644 borrower debarred
645
646 =head3 UNKNOWN_BARCODE
647
648 barcode unknown
649
650 =head3 NOT_FOR_LOAN
651
652 item is not for loan
653
654 =head3 WTHDRAWN
655
656 item withdrawn.
657
658 =head3 RESTRICTED
659
660 item is restricted (set by ??)
661
662 C<$needsconfirmation> a reference to a hash. It contains reasons why the loan 
663 could be prevented, but ones that can be overriden by the operator.
664
665 Possible values are :
666
667 =head3 DEBT
668
669 borrower has debts.
670
671 =head3 RENEW_ISSUE
672
673 renewing, not issuing
674
675 =head3 ISSUED_TO_ANOTHER
676
677 issued to someone else.
678
679 =head3 RESERVED
680
681 reserved for someone else.
682
683 =head3 INVALID_DATE
684
685 sticky due date is invalid or due date in the past
686
687 =head3 TOO_MANY
688
689 if the borrower borrows to much things
690
691 =cut
692
693 sub CanBookBeIssued {
694     my ( $borrower, $barcode, $duedate, $inprocess, $ignore_reserves ) = @_;
695     my %needsconfirmation;    # filled with problems that needs confirmations
696     my %issuingimpossible;    # filled with problems that causes the issue to be IMPOSSIBLE
697     my %alerts;               # filled with messages that shouldn't stop issuing, but the librarian should be aware of.
698
699     my $item = GetItem(GetItemnumberFromBarcode( $barcode ));
700     my $issue = GetItemIssue($item->{itemnumber});
701         my $biblioitem = GetBiblioItemData($item->{biblioitemnumber});
702         $item->{'itemtype'}=$item->{'itype'}; 
703     my $dbh             = C4::Context->dbh;
704
705     # MANDATORY CHECKS - unless item exists, nothing else matters
706     unless ( $item->{barcode} ) {
707         $issuingimpossible{UNKNOWN_BARCODE} = 1;
708     }
709         return ( \%issuingimpossible, \%needsconfirmation ) if %issuingimpossible;
710
711     #
712     # DUE DATE is OK ? -- should already have checked.
713     #
714     if ($duedate && ref $duedate ne 'DateTime') {
715         $duedate = dt_from_string($duedate);
716     }
717     my $now = DateTime->now( time_zone => C4::Context->tz() );
718     unless ( $duedate ) {
719         my $issuedate = $now->clone();
720
721         my $branch = _GetCircControlBranch($item,$borrower);
722         my $itype = ( C4::Context->preference('item-level_itypes') ) ? $item->{'itype'} : $biblioitem->{'itemtype'};
723         $duedate = CalcDateDue( $issuedate, $itype, $branch, $borrower );
724
725         # Offline circ calls AddIssue directly, doesn't run through here
726         #  So issuingimpossible should be ok.
727     }
728     if ($duedate) {
729         my $today = $now->clone();
730         $today->truncate( to => 'minute');
731         if (DateTime->compare($duedate,$today) == -1 ) { # duedate cannot be before now
732             $needsconfirmation{INVALID_DATE} = output_pref($duedate);
733         }
734     } else {
735             $issuingimpossible{INVALID_DATE} = output_pref($duedate);
736     }
737
738     #
739     # BORROWER STATUS
740     #
741     if ( $borrower->{'category_type'} eq 'X' && (  $item->{barcode}  )) { 
742         # stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1  .
743         &UpdateStats(C4::Context->userenv->{'branch'},'localuse','','',$item->{'itemnumber'},$item->{'itemtype'},$borrower->{'borrowernumber'}, undef, $item->{'ccode'});
744         ModDateLastSeen( $item->{'itemnumber'} );
745         return( { STATS => 1 }, {});
746     }
747     if ( $borrower->{flags}->{GNA} ) {
748         $issuingimpossible{GNA} = 1;
749     }
750     if ( $borrower->{flags}->{'LOST'} ) {
751         $issuingimpossible{CARD_LOST} = 1;
752     }
753     if ( $borrower->{flags}->{'DBARRED'} ) {
754         $issuingimpossible{DEBARRED} = 1;
755     }
756     if ( !defined $borrower->{dateexpiry} || $borrower->{'dateexpiry'} eq '0000-00-00') {
757         $issuingimpossible{EXPIRED} = 1;
758     } else {
759         my ($y, $m, $d) =  split /-/,$borrower->{'dateexpiry'};
760         if ($y && $m && $d) { # are we really writing oinvalid dates to borrs
761             my $expiry_dt = DateTime->new(
762                 year => $y,
763                 month => $m,
764                 day   => $d,
765                 time_zone => C4::Context->tz,
766             );
767             $expiry_dt->truncate( to => 'day');
768             my $today = $now->clone()->truncate(to => 'day');
769             if (DateTime->compare($today, $expiry_dt) == 1) {
770                 $issuingimpossible{EXPIRED} = 1;
771             }
772         } else {
773             carp("Invalid expity date in borr");
774             $issuingimpossible{EXPIRED} = 1;
775         }
776     }
777     #
778     # BORROWER STATUS
779     #
780
781     # DEBTS
782     my ($balance, $non_issue_charges, $other_charges) =
783       C4::Members::GetMemberAccountBalance( $borrower->{'borrowernumber'} );
784     my $amountlimit = C4::Context->preference("noissuescharge");
785     my $allowfineoverride = C4::Context->preference("AllowFineOverride");
786     my $allfinesneedoverride = C4::Context->preference("AllFinesNeedOverride");
787     if ( C4::Context->preference("IssuingInProcess") ) {
788         if ( $non_issue_charges > $amountlimit && !$inprocess && !$allowfineoverride) {
789             $issuingimpossible{DEBT} = sprintf( "%.2f", $non_issue_charges );
790         } elsif ( $non_issue_charges > $amountlimit && !$inprocess && $allowfineoverride) {
791             $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
792         } elsif ( $allfinesneedoverride && $non_issue_charges > 0 && $non_issue_charges <= $amountlimit && !$inprocess ) {
793             $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
794         }
795     }
796     else {
797         if ( $non_issue_charges > $amountlimit && $allowfineoverride ) {
798             $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
799         } elsif ( $non_issue_charges > $amountlimit && !$allowfineoverride) {
800             $issuingimpossible{DEBT} = sprintf( "%.2f", $non_issue_charges );
801         } elsif ( $non_issue_charges > 0 && $allfinesneedoverride ) {
802             $needsconfirmation{DEBT} = sprintf( "%.2f", $non_issue_charges );
803         }
804     }
805     if ($balance > 0 && $other_charges > 0) {
806         $alerts{OTHER_CHARGES} = sprintf( "%.2f", $other_charges );
807     }
808
809     my ($blocktype, $count) = C4::Members::IsMemberBlocked($borrower->{'borrowernumber'});
810     if ($blocktype == -1) {
811         ## patron has outstanding overdue loans
812             if ( C4::Context->preference("OverduesBlockCirc") eq 'block'){
813                 $issuingimpossible{USERBLOCKEDOVERDUE} = $count;
814             }
815             elsif ( C4::Context->preference("OverduesBlockCirc") eq 'confirmation'){
816                 $needsconfirmation{USERBLOCKEDOVERDUE} = $count;
817             }
818     } elsif($blocktype == 1) {
819         # patron has accrued fine days
820         $issuingimpossible{USERBLOCKEDREMAINING} = $count;
821     }
822
823 #
824     # JB34 CHECKS IF BORROWERS DONT HAVE ISSUE TOO MANY BOOKS
825     #
826         my ($current_loan_count, $max_loans_allowed) = TooMany( $borrower, $item->{biblionumber}, $item );
827     # if TooMany max_loans_allowed returns 0 the user doesn't have permission to check out this book
828     if (defined $max_loans_allowed && $max_loans_allowed == 0) {
829         $needsconfirmation{PATRON_CANT} = 1;
830     } else {
831         if($max_loans_allowed){
832             if ( C4::Context->preference("AllowTooManyOverride") ) {
833                 $needsconfirmation{TOO_MANY} = 1;
834                 $needsconfirmation{current_loan_count} = $current_loan_count;
835                 $needsconfirmation{max_loans_allowed} = $max_loans_allowed;
836             } else {
837                 $issuingimpossible{TOO_MANY} = 1;
838                 $issuingimpossible{current_loan_count} = $current_loan_count;
839                 $issuingimpossible{max_loans_allowed} = $max_loans_allowed;
840             }
841         }
842     }
843
844     #
845     # ITEM CHECKING
846     #
847     if ( $item->{'notforloan'} )
848     {
849         if(!C4::Context->preference("AllowNotForLoanOverride")){
850             $issuingimpossible{NOT_FOR_LOAN} = 1;
851             $issuingimpossible{item_notforloan} = $item->{'notforloan'};
852         }else{
853             $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
854             $needsconfirmation{item_notforloan} = $item->{'notforloan'};
855         }
856     }
857     else {
858         # we have to check itemtypes.notforloan also
859         if (C4::Context->preference('item-level_itypes')){
860             # this should probably be a subroutine
861             my $sth = $dbh->prepare("SELECT notforloan FROM itemtypes WHERE itemtype = ?");
862             $sth->execute($item->{'itemtype'});
863             my $notforloan=$sth->fetchrow_hashref();
864             if ($notforloan->{'notforloan'}) {
865                 if (!C4::Context->preference("AllowNotForLoanOverride")) {
866                     $issuingimpossible{NOT_FOR_LOAN} = 1;
867                     $issuingimpossible{itemtype_notforloan} = $item->{'itype'};
868                 } else {
869                     $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
870                     $needsconfirmation{itemtype_notforloan} = $item->{'itype'};
871                 }
872             }
873         }
874         elsif ($biblioitem->{'notforloan'} == 1){
875             if (!C4::Context->preference("AllowNotForLoanOverride")) {
876                 $issuingimpossible{NOT_FOR_LOAN} = 1;
877                 $issuingimpossible{itemtype_notforloan} = $biblioitem->{'itemtype'};
878             } else {
879                 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
880                 $needsconfirmation{itemtype_notforloan} = $biblioitem->{'itemtype'};
881             }
882         }
883     }
884     if ( $item->{'withdrawn'} && $item->{'withdrawn'} > 0 )
885     {
886         $issuingimpossible{WTHDRAWN} = 1;
887     }
888     if (   $item->{'restricted'}
889         && $item->{'restricted'} == 1 )
890     {
891         $issuingimpossible{RESTRICTED} = 1;
892     }
893     if ( $item->{'itemlost'} && C4::Context->preference("IssueLostItem") ne 'nothing' ) {
894         my $code = GetAuthorisedValueByCode( 'LOST', $item->{'itemlost'} );
895         $needsconfirmation{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'confirm' );
896         $alerts{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'alert' );
897     }
898     if ( C4::Context->preference("IndependentBranches") ) {
899         my $userenv = C4::Context->userenv;
900         unless ( C4::Context->IsSuperLibrarian() ) {
901             if ( $item->{C4::Context->preference("HomeOrHoldingBranch")} ne $userenv->{branch} ){
902                 $issuingimpossible{ITEMNOTSAMEBRANCH} = 1;
903                 $issuingimpossible{'itemhomebranch'} = $item->{C4::Context->preference("HomeOrHoldingBranch")};
904             }
905             $needsconfirmation{BORRNOTSAMEBRANCH} = GetBranchName( $borrower->{'branchcode'} )
906               if ( $borrower->{'branchcode'} ne $userenv->{branch} );
907         }
908     }
909
910     #
911     # CHECK IF BOOK ALREADY ISSUED TO THIS BORROWER
912     #
913     if ( $issue->{borrowernumber} && $issue->{borrowernumber} eq $borrower->{'borrowernumber'} )
914     {
915
916         # Already issued to current borrower. Ask whether the loan should
917         # be renewed.
918         my ($CanBookBeRenewed,$renewerror) = CanBookBeRenewed(
919             $borrower->{'borrowernumber'},
920             $item->{'itemnumber'}
921         );
922         if ( $CanBookBeRenewed == 0 ) {    # no more renewals allowed
923             $issuingimpossible{NO_MORE_RENEWALS} = 1;
924         }
925         else {
926             $needsconfirmation{RENEW_ISSUE} = 1;
927         }
928     }
929     elsif ($issue->{borrowernumber}) {
930
931         # issued to someone else
932         my $currborinfo =    C4::Members::GetMember( borrowernumber => $issue->{borrowernumber} );
933
934 #        warn "=>.$currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
935         $needsconfirmation{ISSUED_TO_ANOTHER} = 1;
936         $needsconfirmation{issued_firstname} = $currborinfo->{'firstname'};
937         $needsconfirmation{issued_surname} = $currborinfo->{'surname'};
938         $needsconfirmation{issued_cardnumber} = $currborinfo->{'cardnumber'};
939         $needsconfirmation{issued_borrowernumber} = $currborinfo->{'borrowernumber'};
940     }
941
942     unless ( $ignore_reserves ) {
943         # See if the item is on reserve.
944         my ( $restype, $res ) = C4::Reserves::CheckReserves( $item->{'itemnumber'} );
945         if ($restype) {
946             my $resbor = $res->{'borrowernumber'};
947             if ( $resbor ne $borrower->{'borrowernumber'} ) {
948                 my ( $resborrower ) = C4::Members::GetMember( borrowernumber => $resbor );
949                 my $branchname = GetBranchName( $res->{'branchcode'} );
950                 if ( $restype eq "Waiting" )
951                 {
952                     # The item is on reserve and waiting, but has been
953                     # reserved by some other patron.
954                     $needsconfirmation{RESERVE_WAITING} = 1;
955                     $needsconfirmation{'resfirstname'} = $resborrower->{'firstname'};
956                     $needsconfirmation{'ressurname'} = $resborrower->{'surname'};
957                     $needsconfirmation{'rescardnumber'} = $resborrower->{'cardnumber'};
958                     $needsconfirmation{'resborrowernumber'} = $resborrower->{'borrowernumber'};
959                     $needsconfirmation{'resbranchname'} = $branchname;
960                     $needsconfirmation{'reswaitingdate'} = format_date($res->{'waitingdate'});
961                 }
962                 elsif ( $restype eq "Reserved" ) {
963                     # The item is on reserve for someone else.
964                     $needsconfirmation{RESERVED} = 1;
965                     $needsconfirmation{'resfirstname'} = $resborrower->{'firstname'};
966                     $needsconfirmation{'ressurname'} = $resborrower->{'surname'};
967                     $needsconfirmation{'rescardnumber'} = $resborrower->{'cardnumber'};
968                     $needsconfirmation{'resborrowernumber'} = $resborrower->{'borrowernumber'};
969                     $needsconfirmation{'resbranchname'} = $branchname;
970                     $needsconfirmation{'resreservedate'} = format_date($res->{'reservedate'});
971                 }
972             }
973         }
974     }
975
976     ## CHECK AGE RESTRICTION
977     # get $marker from preferences. Could be something like "FSK|PEGI|Alter|Age:"
978     my $markers         = C4::Context->preference('AgeRestrictionMarker');
979     my $bibvalues       = $biblioitem->{'agerestriction'};
980     my $restriction_age = GetAgeRestriction( $bibvalues );
981
982     if ( $restriction_age > 0 ) {
983         if ( $borrower->{'dateofbirth'} ) {
984             my @alloweddate = split /-/, $borrower->{'dateofbirth'};
985             $alloweddate[0] += $restriction_age;
986
987             #Prevent runime eror on leap year (invalid date)
988             if ( ( $alloweddate[1] == 2 ) && ( $alloweddate[2] == 29 ) ) {
989                 $alloweddate[2] = 28;
990             }
991
992             if ( Date_to_Days(Today) < Date_to_Days(@alloweddate) - 1 ) {
993                 if ( C4::Context->preference('AgeRestrictionOverride') ) {
994                     $needsconfirmation{AGE_RESTRICTION} = "$bibvalues";
995                 }
996                 else {
997                     $issuingimpossible{AGE_RESTRICTION} = "$bibvalues";
998                 }
999             }
1000         }
1001     }
1002
1003     ## check for high holds decreasing loan period
1004     my $decrease_loan = C4::Context->preference('decreaseLoanHighHolds');
1005     if ( $decrease_loan && $decrease_loan == 1 ) {
1006         my ( $reserved, $num, $duration, $returndate ) =
1007           checkHighHolds( $item, $borrower );
1008
1009         if ( $num >= C4::Context->preference('decreaseLoanHighHoldsValue') ) {
1010             $needsconfirmation{HIGHHOLDS} = {
1011                 num_holds  => $num,
1012                 duration   => $duration,
1013                 returndate => output_pref($returndate),
1014             };
1015         }
1016     }
1017
1018     if (
1019         !C4::Context->preference('AllowMultipleIssuesOnABiblio') &&
1020         # don't do the multiple loans per bib check if we've
1021         # already determined that we've got a loan on the same item
1022         !$issuingimpossible{NO_MORE_RENEWALS} &&
1023         !$needsconfirmation{RENEW_ISSUE}
1024     ) {
1025         # Check if borrower has already issued an item from the same biblio
1026         # Only if it's not a subscription
1027         my $biblionumber = $item->{biblionumber};
1028         require C4::Serials;
1029         my $is_a_subscription = C4::Serials::CountSubscriptionFromBiblionumber($biblionumber);
1030         unless ($is_a_subscription) {
1031             my $issues = GetIssues( {
1032                 borrowernumber => $borrower->{borrowernumber},
1033                 biblionumber   => $biblionumber,
1034             } );
1035             my @issues = $issues ? @$issues : ();
1036             # if we get here, we don't already have a loan on this item,
1037             # so if there are any loans on this bib, ask for confirmation
1038             if (scalar @issues > 0) {
1039                 $needsconfirmation{BIBLIO_ALREADY_ISSUED} = 1;
1040             }
1041         }
1042     }
1043
1044     return ( \%issuingimpossible, \%needsconfirmation, \%alerts );
1045 }
1046
1047 =head2 CanBookBeReturned
1048
1049   ($returnallowed, $message) = CanBookBeReturned($item, $branch)
1050
1051 Check whether the item can be returned to the provided branch
1052
1053 =over 4
1054
1055 =item C<$item> is a hash of item information as returned from GetItem
1056
1057 =item C<$branch> is the branchcode where the return is taking place
1058
1059 =back
1060
1061 Returns:
1062
1063 =over 4
1064
1065 =item C<$returnallowed> is 0 or 1, corresponding to whether the return is allowed (1) or not (0)
1066
1067 =item C<$message> is the branchcode where the item SHOULD be returned, if the return is not allowed
1068
1069 =back
1070
1071 =cut
1072
1073 sub CanBookBeReturned {
1074   my ($item, $branch) = @_;
1075   my $allowreturntobranch = C4::Context->preference("AllowReturnToBranch") || 'anywhere';
1076
1077   # assume return is allowed to start
1078   my $allowed = 1;
1079   my $message;
1080
1081   # identify all cases where return is forbidden
1082   if ($allowreturntobranch eq 'homebranch' && $branch ne $item->{'homebranch'}) {
1083      $allowed = 0;
1084      $message = $item->{'homebranch'};
1085   } elsif ($allowreturntobranch eq 'holdingbranch' && $branch ne $item->{'holdingbranch'}) {
1086      $allowed = 0;
1087      $message = $item->{'holdingbranch'};
1088   } elsif ($allowreturntobranch eq 'homeorholdingbranch' && $branch ne $item->{'homebranch'} && $branch ne $item->{'holdingbranch'}) {
1089      $allowed = 0;
1090      $message = $item->{'homebranch'}; # FIXME: choice of homebranch is arbitrary
1091   }
1092
1093   return ($allowed, $message);
1094 }
1095
1096 =head2 CheckHighHolds
1097
1098     used when syspref decreaseLoanHighHolds is active. Returns 1 or 0 to define whether the minimum value held in
1099     decreaseLoanHighHoldsValue is exceeded, the total number of outstanding holds, the number of days the loan
1100     has been decreased to (held in syspref decreaseLoanHighHoldsValue), and the new due date
1101
1102 =cut
1103
1104 sub checkHighHolds {
1105     my ( $item, $borrower ) = @_;
1106     my $biblio = GetBiblioFromItemNumber( $item->{itemnumber} );
1107     my $branch = _GetCircControlBranch( $item, $borrower );
1108     my $dbh    = C4::Context->dbh;
1109     my $sth    = $dbh->prepare(
1110 'select count(borrowernumber) as num_holds from reserves where biblionumber=?'
1111     );
1112     $sth->execute( $item->{'biblionumber'} );
1113     my ($holds) = $sth->fetchrow_array;
1114     if ($holds) {
1115         my $issuedate = DateTime->now( time_zone => C4::Context->tz() );
1116
1117         my $calendar = Koha::Calendar->new( branchcode => $branch );
1118
1119         my $itype =
1120           ( C4::Context->preference('item-level_itypes') )
1121           ? $biblio->{'itype'}
1122           : $biblio->{'itemtype'};
1123         my $orig_due =
1124           C4::Circulation::CalcDateDue( $issuedate, $itype, $branch,
1125             $borrower );
1126
1127         my $reduced_datedue =
1128           $calendar->addDate( $issuedate,
1129             C4::Context->preference('decreaseLoanHighHoldsDuration') );
1130
1131         if ( DateTime->compare( $reduced_datedue, $orig_due ) == -1 ) {
1132             return ( 1, $holds,
1133                 C4::Context->preference('decreaseLoanHighHoldsDuration'),
1134                 $reduced_datedue );
1135         }
1136     }
1137     return ( 0, 0, 0, undef );
1138 }
1139
1140 =head2 AddIssue
1141
1142   &AddIssue($borrower, $barcode, [$datedue], [$cancelreserve], [$issuedate])
1143
1144 Issue a book. Does no check, they are done in CanBookBeIssued. If we reach this sub, it means the user confirmed if needed.
1145
1146 =over 4
1147
1148 =item C<$borrower> is a hash with borrower informations (from GetMember or GetMemberDetails).
1149
1150 =item C<$barcode> is the barcode of the item being issued.
1151
1152 =item C<$datedue> is a C4::Dates object for the max date of return, i.e. the date due (optional).
1153 Calculated if empty.
1154
1155 =item C<$cancelreserve> is 1 to override and cancel any pending reserves for the item (optional).
1156
1157 =item C<$issuedate> is the date to issue the item in iso (YYYY-MM-DD) format (optional).
1158 Defaults to today.  Unlike C<$datedue>, NOT a C4::Dates object, unfortunately.
1159
1160 AddIssue does the following things :
1161
1162   - step 01: check that there is a borrowernumber & a barcode provided
1163   - check for RENEWAL (book issued & being issued to the same patron)
1164       - renewal YES = Calculate Charge & renew
1165       - renewal NO  =
1166           * BOOK ACTUALLY ISSUED ? do a return if book is actually issued (but to someone else)
1167           * RESERVE PLACED ?
1168               - fill reserve if reserve to this patron
1169               - cancel reserve or not, otherwise
1170           * TRANSFERT PENDING ?
1171               - complete the transfert
1172           * ISSUE THE BOOK
1173
1174 =back
1175
1176 =cut
1177
1178 sub AddIssue {
1179     my ( $borrower, $barcode, $datedue, $cancelreserve, $issuedate, $sipmode) = @_;
1180     my $dbh = C4::Context->dbh;
1181         my $barcodecheck=CheckValidBarcode($barcode);
1182     if ($datedue && ref $datedue ne 'DateTime') {
1183         $datedue = dt_from_string($datedue);
1184     }
1185     # $issuedate defaults to today.
1186     if ( ! defined $issuedate ) {
1187         $issuedate = DateTime->now(time_zone => C4::Context->tz());
1188     }
1189     else {
1190         if ( ref $issuedate ne 'DateTime') {
1191             $issuedate = dt_from_string($issuedate);
1192
1193         }
1194     }
1195         if ($borrower and $barcode and $barcodecheck ne '0'){#??? wtf
1196                 # find which item we issue
1197                 my $item = GetItem('', $barcode) or return;     # if we don't get an Item, abort.
1198                 my $branch = _GetCircControlBranch($item,$borrower);
1199                 
1200                 # get actual issuing if there is one
1201                 my $actualissue = GetItemIssue( $item->{itemnumber});
1202                 
1203                 # get biblioinformation for this item
1204                 my $biblio = GetBiblioFromItemNumber($item->{itemnumber});
1205                 
1206                 #
1207                 # check if we just renew the issue.
1208                 #
1209                 if ($actualissue->{borrowernumber} eq $borrower->{'borrowernumber'}) {
1210                     $datedue = AddRenewal(
1211                         $borrower->{'borrowernumber'},
1212                         $item->{'itemnumber'},
1213                         $branch,
1214                         $datedue,
1215                         $issuedate, # here interpreted as the renewal date
1216                         );
1217                 }
1218                 else {
1219         # it's NOT a renewal
1220                         if ( $actualissue->{borrowernumber}) {
1221                                 # This book is currently on loan, but not to the person
1222                                 # who wants to borrow it now. mark it returned before issuing to the new borrower
1223                                 AddReturn(
1224                                         $item->{'barcode'},
1225                                         C4::Context->userenv->{'branch'}
1226                                 );
1227                         }
1228
1229             MoveReserve( $item->{'itemnumber'}, $borrower->{'borrowernumber'}, $cancelreserve );
1230                         # Starting process for transfer job (checking transfert and validate it if we have one)
1231             my ($datesent) = GetTransfers($item->{'itemnumber'});
1232             if ($datesent) {
1233         #       updating line of branchtranfert to finish it, and changing the to branch value, implement a comment for visibility of this case (maybe for stats ....)
1234                 my $sth =
1235                     $dbh->prepare(
1236                     "UPDATE branchtransfers 
1237                         SET datearrived = now(),
1238                         tobranch = ?,
1239                         comments = 'Forced branchtransfer'
1240                     WHERE itemnumber= ? AND datearrived IS NULL"
1241                     );
1242                 $sth->execute(C4::Context->userenv->{'branch'},$item->{'itemnumber'});
1243             }
1244
1245         # Record in the database the fact that the book was issued.
1246         my $sth =
1247           $dbh->prepare(
1248                 "INSERT INTO issues
1249                     (borrowernumber, itemnumber,issuedate, date_due, branchcode)
1250                 VALUES (?,?,?,?,?)"
1251           );
1252         unless ($datedue) {
1253             my $itype = ( C4::Context->preference('item-level_itypes') ) ? $biblio->{'itype'} : $biblio->{'itemtype'};
1254             $datedue = CalcDateDue( $issuedate, $itype, $branch, $borrower );
1255
1256         }
1257         $datedue->truncate( to => 'minute');
1258         $sth->execute(
1259             $borrower->{'borrowernumber'},      # borrowernumber
1260             $item->{'itemnumber'},              # itemnumber
1261             $issuedate->strftime('%Y-%m-%d %H:%M:00'), # issuedate
1262             $datedue->strftime('%Y-%m-%d %H:%M:00'),   # date_due
1263             C4::Context->userenv->{'branch'}    # branchcode
1264         );
1265         if ( C4::Context->preference('ReturnToShelvingCart') ) { ## ReturnToShelvingCart is on, anything issued should be taken off the cart.
1266           CartToShelf( $item->{'itemnumber'} );
1267         }
1268         $item->{'issues'}++;
1269         if ( C4::Context->preference('UpdateTotalIssuesOnCirc') ) {
1270             UpdateTotalIssues($item->{'biblionumber'}, 1);
1271         }
1272
1273         ## If item was lost, it has now been found, reverse any list item charges if neccessary.
1274         if ( $item->{'itemlost'} ) {
1275             if ( C4::Context->preference('RefundLostItemFeeOnReturn' ) ) {
1276                 _FixAccountForLostAndReturned( $item->{'itemnumber'}, undef, $item->{'barcode'} );
1277             }
1278         }
1279
1280         ModItem({ issues           => $item->{'issues'},
1281                   holdingbranch    => C4::Context->userenv->{'branch'},
1282                   itemlost         => 0,
1283                   datelastborrowed => DateTime->now(time_zone => C4::Context->tz())->ymd(),
1284                   onloan           => $datedue->ymd(),
1285                 }, $item->{'biblionumber'}, $item->{'itemnumber'});
1286         ModDateLastSeen( $item->{'itemnumber'} );
1287
1288         # If it costs to borrow this book, charge it to the patron's account.
1289         my ( $charge, $itemtype ) = GetIssuingCharges(
1290             $item->{'itemnumber'},
1291             $borrower->{'borrowernumber'}
1292         );
1293         if ( $charge > 0 ) {
1294             AddIssuingCharge(
1295                 $item->{'itemnumber'},
1296                 $borrower->{'borrowernumber'}, $charge
1297             );
1298             $item->{'charge'} = $charge;
1299         }
1300
1301         # Record the fact that this book was issued.
1302         &UpdateStats(
1303             C4::Context->userenv->{'branch'},
1304             'issue', $charge,
1305             ($sipmode ? "SIP-$sipmode" : ''), $item->{'itemnumber'},
1306             $item->{'itype'}, $borrower->{'borrowernumber'}, undef, $item->{'ccode'}
1307         );
1308
1309         # Send a checkout slip.
1310         my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1311         my %conditions = (
1312             branchcode   => $branch,
1313             categorycode => $borrower->{categorycode},
1314             item_type    => $item->{itype},
1315             notification => 'CHECKOUT',
1316         );
1317         if ($circulation_alert->is_enabled_for(\%conditions)) {
1318             SendCirculationAlert({
1319                 type     => 'CHECKOUT',
1320                 item     => $item,
1321                 borrower => $borrower,
1322                 branch   => $branch,
1323             });
1324         }
1325     }
1326
1327     logaction("CIRCULATION", "ISSUE", $borrower->{'borrowernumber'}, $biblio->{'itemnumber'})
1328         if C4::Context->preference("IssueLog");
1329   }
1330   return ($datedue);    # not necessarily the same as when it came in!
1331 }
1332
1333 =head2 GetLoanLength
1334
1335   my $loanlength = &GetLoanLength($borrowertype,$itemtype,branchcode)
1336
1337 Get loan length for an itemtype, a borrower type and a branch
1338
1339 =cut
1340
1341 sub GetLoanLength {
1342     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1343     my $dbh = C4::Context->dbh;
1344     my $sth = $dbh->prepare(qq{
1345         SELECT issuelength, lengthunit, renewalperiod
1346         FROM issuingrules
1347         WHERE   categorycode=?
1348             AND itemtype=?
1349             AND branchcode=?
1350             AND issuelength IS NOT NULL
1351     });
1352
1353     # try to find issuelength & return the 1st available.
1354     # check with borrowertype, itemtype and branchcode, then without one of those parameters
1355     $sth->execute( $borrowertype, $itemtype, $branchcode );
1356     my $loanlength = $sth->fetchrow_hashref;
1357
1358     return $loanlength
1359       if defined($loanlength) && $loanlength->{issuelength};
1360
1361     $sth->execute( $borrowertype, '*', $branchcode );
1362     $loanlength = $sth->fetchrow_hashref;
1363     return $loanlength
1364       if defined($loanlength) && $loanlength->{issuelength};
1365
1366     $sth->execute( '*', $itemtype, $branchcode );
1367     $loanlength = $sth->fetchrow_hashref;
1368     return $loanlength
1369       if defined($loanlength) && $loanlength->{issuelength};
1370
1371     $sth->execute( '*', '*', $branchcode );
1372     $loanlength = $sth->fetchrow_hashref;
1373     return $loanlength
1374       if defined($loanlength) && $loanlength->{issuelength};
1375
1376     $sth->execute( $borrowertype, $itemtype, '*' );
1377     $loanlength = $sth->fetchrow_hashref;
1378     return $loanlength
1379       if defined($loanlength) && $loanlength->{issuelength};
1380
1381     $sth->execute( $borrowertype, '*', '*' );
1382     $loanlength = $sth->fetchrow_hashref;
1383     return $loanlength
1384       if defined($loanlength) && $loanlength->{issuelength};
1385
1386     $sth->execute( '*', $itemtype, '*' );
1387     $loanlength = $sth->fetchrow_hashref;
1388     return $loanlength
1389       if defined($loanlength) && $loanlength->{issuelength};
1390
1391     $sth->execute( '*', '*', '*' );
1392     $loanlength = $sth->fetchrow_hashref;
1393     return $loanlength
1394       if defined($loanlength) && $loanlength->{issuelength};
1395
1396     # if no rule is set => 21 days (hardcoded)
1397     return {
1398         issuelength => 21,
1399         renewalperiod => 21,
1400         lengthunit => 'days',
1401     };
1402
1403 }
1404
1405
1406 =head2 GetHardDueDate
1407
1408   my ($hardduedate,$hardduedatecompare) = &GetHardDueDate($borrowertype,$itemtype,branchcode)
1409
1410 Get the Hard Due Date and it's comparison for an itemtype, a borrower type and a branch
1411
1412 =cut
1413
1414 sub GetHardDueDate {
1415     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1416
1417     my $rule = GetIssuingRule( $borrowertype, $itemtype, $branchcode );
1418
1419     if ( defined( $rule ) ) {
1420         if ( $rule->{hardduedate} ) {
1421             return (dt_from_string($rule->{hardduedate}, 'iso'),$rule->{hardduedatecompare});
1422         } else {
1423             return (undef, undef);
1424         }
1425     }
1426 }
1427
1428 =head2 GetIssuingRule
1429
1430   my $irule = &GetIssuingRule($borrowertype,$itemtype,branchcode)
1431
1432 FIXME - This is a copy-paste of GetLoanLength
1433 as a stop-gap.  Do not wish to change API for GetLoanLength 
1434 this close to release.
1435
1436 Get the issuing rule for an itemtype, a borrower type and a branch
1437 Returns a hashref from the issuingrules table.
1438
1439 =cut
1440
1441 sub GetIssuingRule {
1442     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1443     my $dbh = C4::Context->dbh;
1444     my $sth =  $dbh->prepare( "select * from issuingrules where categorycode=? and itemtype=? and branchcode=? and issuelength is not null"  );
1445     my $irule;
1446
1447         $sth->execute( $borrowertype, $itemtype, $branchcode );
1448     $irule = $sth->fetchrow_hashref;
1449     return $irule if defined($irule) ;
1450
1451     $sth->execute( $borrowertype, "*", $branchcode );
1452     $irule = $sth->fetchrow_hashref;
1453     return $irule if defined($irule) ;
1454
1455     $sth->execute( "*", $itemtype, $branchcode );
1456     $irule = $sth->fetchrow_hashref;
1457     return $irule if defined($irule) ;
1458
1459     $sth->execute( "*", "*", $branchcode );
1460     $irule = $sth->fetchrow_hashref;
1461     return $irule if defined($irule) ;
1462
1463     $sth->execute( $borrowertype, $itemtype, "*" );
1464     $irule = $sth->fetchrow_hashref;
1465     return $irule if defined($irule) ;
1466
1467     $sth->execute( $borrowertype, "*", "*" );
1468     $irule = $sth->fetchrow_hashref;
1469     return $irule if defined($irule) ;
1470
1471     $sth->execute( "*", $itemtype, "*" );
1472     $irule = $sth->fetchrow_hashref;
1473     return $irule if defined($irule) ;
1474
1475     $sth->execute( "*", "*", "*" );
1476     $irule = $sth->fetchrow_hashref;
1477     return $irule if defined($irule) ;
1478
1479     # if no rule matches,
1480     return;
1481 }
1482
1483 =head2 GetBranchBorrowerCircRule
1484
1485   my $branch_cat_rule = GetBranchBorrowerCircRule($branchcode, $categorycode);
1486
1487 Retrieves circulation rule attributes that apply to the given
1488 branch and patron category, regardless of item type.  
1489 The return value is a hashref containing the following key:
1490
1491 maxissueqty - maximum number of loans that a
1492 patron of the given category can have at the given
1493 branch.  If the value is undef, no limit.
1494
1495 This will first check for a specific branch and
1496 category match from branch_borrower_circ_rules. 
1497
1498 If no rule is found, it will then check default_branch_circ_rules
1499 (same branch, default category).  If no rule is found,
1500 it will then check default_borrower_circ_rules (default 
1501 branch, same category), then failing that, default_circ_rules
1502 (default branch, default category).
1503
1504 If no rule has been found in the database, it will default to
1505 the buillt in rule:
1506
1507 maxissueqty - undef
1508
1509 C<$branchcode> and C<$categorycode> should contain the
1510 literal branch code and patron category code, respectively - no
1511 wildcards.
1512
1513 =cut
1514
1515 sub GetBranchBorrowerCircRule {
1516     my $branchcode = shift;
1517     my $categorycode = shift;
1518
1519     my $branch_cat_query = "SELECT maxissueqty
1520                             FROM branch_borrower_circ_rules
1521                             WHERE branchcode = ?
1522                             AND   categorycode = ?";
1523     my $dbh = C4::Context->dbh();
1524     my $sth = $dbh->prepare($branch_cat_query);
1525     $sth->execute($branchcode, $categorycode);
1526     my $result;
1527     if ($result = $sth->fetchrow_hashref()) {
1528         return $result;
1529     }
1530
1531     # try same branch, default borrower category
1532     my $branch_query = "SELECT maxissueqty
1533                         FROM default_branch_circ_rules
1534                         WHERE branchcode = ?";
1535     $sth = $dbh->prepare($branch_query);
1536     $sth->execute($branchcode);
1537     if ($result = $sth->fetchrow_hashref()) {
1538         return $result;
1539     }
1540
1541     # try default branch, same borrower category
1542     my $category_query = "SELECT maxissueqty
1543                           FROM default_borrower_circ_rules
1544                           WHERE categorycode = ?";
1545     $sth = $dbh->prepare($category_query);
1546     $sth->execute($categorycode);
1547     if ($result = $sth->fetchrow_hashref()) {
1548         return $result;
1549     }
1550   
1551     # try default branch, default borrower category
1552     my $default_query = "SELECT maxissueqty
1553                           FROM default_circ_rules";
1554     $sth = $dbh->prepare($default_query);
1555     $sth->execute();
1556     if ($result = $sth->fetchrow_hashref()) {
1557         return $result;
1558     }
1559     
1560     # built-in default circulation rule
1561     return {
1562         maxissueqty => undef,
1563     };
1564 }
1565
1566 =head2 GetBranchItemRule
1567
1568   my $branch_item_rule = GetBranchItemRule($branchcode, $itemtype);
1569
1570 Retrieves circulation rule attributes that apply to the given
1571 branch and item type, regardless of patron category.
1572
1573 The return value is a hashref containing the following keys:
1574
1575 holdallowed => Hold policy for this branch and itemtype. Possible values:
1576   0: No holds allowed.
1577   1: Holds allowed only by patrons that have the same homebranch as the item.
1578   2: Holds allowed from any patron.
1579
1580 returnbranch => branch to which to return item.  Possible values:
1581   noreturn: do not return, let item remain where checked in (floating collections)
1582   homebranch: return to item's home branch
1583
1584 This searches branchitemrules in the following order:
1585
1586   * Same branchcode and itemtype
1587   * Same branchcode, itemtype '*'
1588   * branchcode '*', same itemtype
1589   * branchcode and itemtype '*'
1590
1591 Neither C<$branchcode> nor C<$itemtype> should be '*'.
1592
1593 =cut
1594
1595 sub GetBranchItemRule {
1596     my ( $branchcode, $itemtype ) = @_;
1597     my $dbh = C4::Context->dbh();
1598     my $result = {};
1599
1600     my @attempts = (
1601         ['SELECT holdallowed, returnbranch
1602             FROM branch_item_rules
1603             WHERE branchcode = ?
1604               AND itemtype = ?', $branchcode, $itemtype],
1605         ['SELECT holdallowed, returnbranch
1606             FROM default_branch_circ_rules
1607             WHERE branchcode = ?', $branchcode],
1608         ['SELECT holdallowed, returnbranch
1609             FROM default_branch_item_rules
1610             WHERE itemtype = ?', $itemtype],
1611         ['SELECT holdallowed, returnbranch
1612             FROM default_circ_rules'],
1613     );
1614
1615     foreach my $attempt (@attempts) {
1616         my ($query, @bind_params) = @{$attempt};
1617         my $search_result = $dbh->selectrow_hashref ( $query , {}, @bind_params )
1618           or next;
1619
1620         # Since branch/category and branch/itemtype use the same per-branch
1621         # defaults tables, we have to check that the key we want is set, not
1622         # just that a row was returned
1623         $result->{'holdallowed'}  = $search_result->{'holdallowed'}  unless ( defined $result->{'holdallowed'} );
1624         $result->{'returnbranch'} = $search_result->{'returnbranch'} unless ( defined $result->{'returnbranch'} );
1625     }
1626     
1627     # built-in default circulation rule
1628     $result->{'holdallowed'} = 2 unless ( defined $result->{'holdallowed'} );
1629     $result->{'returnbranch'} = 'homebranch' unless ( defined $result->{'returnbranch'} );
1630
1631     return $result;
1632 }
1633
1634 =head2 AddReturn
1635
1636   ($doreturn, $messages, $iteminformation, $borrower) =
1637       &AddReturn( $barcode, $branch [,$exemptfine] [,$dropbox] [,$returndate] );
1638
1639 Returns a book.
1640
1641 =over 4
1642
1643 =item C<$barcode> is the bar code of the book being returned.
1644
1645 =item C<$branch> is the code of the branch where the book is being returned.
1646
1647 =item C<$exemptfine> indicates that overdue charges for the item will be
1648 removed. Optional.
1649
1650 =item C<$dropbox> indicates that the check-in date is assumed to be
1651 yesterday, or the last non-holiday as defined in C4::Calendar .  If
1652 overdue charges are applied and C<$dropbox> is true, the last charge
1653 will be removed.  This assumes that the fines accrual script has run
1654 for _today_. Optional.
1655
1656 =item C<$return_date> allows the default return date to be overridden
1657 by the given return date. Optional.
1658
1659 =back
1660
1661 C<&AddReturn> returns a list of four items:
1662
1663 C<$doreturn> is true iff the return succeeded.
1664
1665 C<$messages> is a reference-to-hash giving feedback on the operation.
1666 The keys of the hash are:
1667
1668 =over 4
1669
1670 =item C<BadBarcode>
1671
1672 No item with this barcode exists. The value is C<$barcode>.
1673
1674 =item C<NotIssued>
1675
1676 The book is not currently on loan. The value is C<$barcode>.
1677
1678 =item C<IsPermanent>
1679
1680 The book's home branch is a permanent collection. If you have borrowed
1681 this book, you are not allowed to return it. The value is the code for
1682 the book's home branch.
1683
1684 =item C<withdrawn>
1685
1686 This book has been withdrawn/cancelled. The value should be ignored.
1687
1688 =item C<Wrongbranch>
1689
1690 This book has was returned to the wrong branch.  The value is a hashref
1691 so that C<$messages->{Wrongbranch}->{Wrongbranch}> and C<$messages->{Wrongbranch}->{Rightbranch}>
1692 contain the branchcode of the incorrect and correct return library, respectively.
1693
1694 =item C<ResFound>
1695
1696 The item was reserved. The value is a reference-to-hash whose keys are
1697 fields from the reserves table of the Koha database, and
1698 C<biblioitemnumber>. It also has the key C<ResFound>, whose value is
1699 either C<Waiting>, C<Reserved>, or 0.
1700
1701 =back
1702
1703 C<$iteminformation> is a reference-to-hash, giving information about the
1704 returned item from the issues table.
1705
1706 C<$borrower> is a reference-to-hash, giving information about the
1707 patron who last borrowed the book.
1708
1709 =cut
1710
1711 sub AddReturn {
1712     my ( $barcode, $branch, $exemptfine, $dropbox, $return_date ) = @_;
1713
1714     if ($branch and not GetBranchDetail($branch)) {
1715         warn "AddReturn error: branch '$branch' not found.  Reverting to " . C4::Context->userenv->{'branch'};
1716         undef $branch;
1717     }
1718     $branch = C4::Context->userenv->{'branch'} unless $branch;  # we trust userenv to be a safe fallback/default
1719     my $messages;
1720     my $borrower;
1721     my $biblio;
1722     my $doreturn       = 1;
1723     my $validTransfert = 0;
1724     my $stat_type = 'return';    
1725
1726     # get information on item
1727     my $itemnumber = GetItemnumberFromBarcode( $barcode );
1728     unless ($itemnumber) {
1729         return (0, { BadBarcode => $barcode }); # no barcode means no item or borrower.  bail out.
1730     }
1731     my $issue  = GetItemIssue($itemnumber);
1732 #   warn Dumper($iteminformation);
1733     if ($issue and $issue->{borrowernumber}) {
1734         $borrower = C4::Members::GetMemberDetails($issue->{borrowernumber})
1735             or die "Data inconsistency: barcode $barcode (itemnumber:$itemnumber) claims to be issued to non-existant borrowernumber '$issue->{borrowernumber}'\n"
1736                 . Dumper($issue) . "\n";
1737     } else {
1738         $messages->{'NotIssued'} = $barcode;
1739         # even though item is not on loan, it may still be transferred;  therefore, get current branch info
1740         $doreturn = 0;
1741         # No issue, no borrowernumber.  ONLY if $doreturn, *might* you have a $borrower later.
1742         # Record this as a local use, instead of a return, if the RecordLocalUseOnReturn is on
1743         if (C4::Context->preference("RecordLocalUseOnReturn")) {
1744            $messages->{'LocalUse'} = 1;
1745            $stat_type = 'localuse';
1746         }
1747     }
1748
1749     my $item = GetItem($itemnumber) or die "GetItem($itemnumber) failed";
1750         # full item data, but no borrowernumber or checkout info (no issue)
1751         # we know GetItem should work because GetItemnumberFromBarcode worked
1752     my $hbr      = GetBranchItemRule($item->{'homebranch'}, $item->{'itype'})->{'returnbranch'} || "homebranch";
1753         # get the proper branch to which to return the item
1754     $hbr = $item->{$hbr} || $branch ;
1755         # if $hbr was "noreturn" or any other non-item table value, then it should 'float' (i.e. stay at this branch)
1756
1757     my $borrowernumber = $borrower->{'borrowernumber'} || undef;    # we don't know if we had a borrower or not
1758
1759     my $yaml = C4::Context->preference('UpdateNotForLoanStatusOnCheckin');
1760     if ($yaml) {
1761         $yaml = "$yaml\n\n";  # YAML is anal on ending \n. Surplus does not hurt
1762         my $rules;
1763         eval { $rules = YAML::Load($yaml); };
1764         if ($@) {
1765             warn "Unable to parse UpdateNotForLoanStatusOnCheckin syspref : $@";
1766         }
1767         else {
1768             foreach my $key ( keys %$rules ) {
1769                 if ( $item->{notforloan} eq $key ) {
1770                     ModItem( { notforloan => $rules->{$key} }, undef, $itemnumber );
1771                     last;
1772                 }
1773             }
1774         }
1775     }
1776
1777
1778     # check if the book is in a permanent collection....
1779     # FIXME -- This 'PE' attribute is largely undocumented.  afaict, there's no user interface that reflects this functionality.
1780     if ( $hbr ) {
1781         my $branches = GetBranches();    # a potentially expensive call for a non-feature.
1782         $branches->{$hbr}->{PE} and $messages->{'IsPermanent'} = $hbr;
1783     }
1784
1785     # check if the return is allowed at this branch
1786     my ($returnallowed, $message) = CanBookBeReturned($item, $branch);
1787     unless ($returnallowed){
1788         $messages->{'Wrongbranch'} = {
1789             Wrongbranch => $branch,
1790             Rightbranch => $message
1791         };
1792         $doreturn = 0;
1793         return ( $doreturn, $messages, $issue, $borrower );
1794     }
1795
1796     if ( $item->{'withdrawn'} ) { # book has been cancelled
1797         $messages->{'withdrawn'} = 1;
1798         $doreturn = 0 if C4::Context->preference("BlockReturnOfWithdrawnItems");
1799     }
1800
1801     # case of a return of document (deal with issues and holdingbranch)
1802     my $today = DateTime->now( time_zone => C4::Context->tz() );
1803
1804     if ($doreturn) {
1805         my $datedue = $issue->{date_due};
1806         $borrower or warn "AddReturn without current borrower";
1807                 my $circControlBranch;
1808         if ($dropbox) {
1809             # define circControlBranch only if dropbox mode is set
1810             # don't allow dropbox mode to create an invalid entry in issues (issuedate > today)
1811             # FIXME: check issuedate > returndate, factoring in holidays
1812             #$circControlBranch = _GetCircControlBranch($item,$borrower) unless ( $item->{'issuedate'} eq C4::Dates->today('iso') );;
1813             $circControlBranch = _GetCircControlBranch($item,$borrower);
1814             $issue->{'overdue'} = DateTime->compare($issue->{'date_due'}, $today ) == -1 ? 1 : 0;
1815         }
1816
1817         if ($borrowernumber) {
1818             if ( ( C4::Context->preference('CalculateFinesOnReturn') && $issue->{'overdue'} ) || $return_date ) {
1819                 # we only need to calculate and change the fines if we want to do that on return
1820                 # Should be on for hourly loans
1821                 my $control = C4::Context->preference('CircControl');
1822                 my $control_branchcode =
1823                     ( $control eq 'ItemHomeLibrary' ) ? $item->{homebranch}
1824                   : ( $control eq 'PatronLibrary' )   ? $borrower->{branchcode}
1825                   :                                     $issue->{branchcode};
1826
1827                 my $date_returned =
1828                   $return_date ? dt_from_string($return_date) : $today;
1829
1830                 my ( $amount, $type, $unitcounttotal ) =
1831                   C4::Overdues::CalcFine( $item, $borrower->{categorycode},
1832                     $control_branchcode, $datedue, $date_returned );
1833
1834                 $type ||= q{};
1835
1836                 if ( C4::Context->preference('finesMode') eq 'production' ) {
1837                     if ( $amount > 0 ) {
1838                         C4::Overdues::UpdateFine( $issue->{itemnumber},
1839                             $issue->{borrowernumber},
1840                             $amount, $type, output_pref($datedue) );
1841                     }
1842                     elsif ($return_date) {
1843
1844                        # Backdated returns may have fines that shouldn't exist,
1845                        # so in this case, we need to drop those fines to 0
1846
1847                         C4::Overdues::UpdateFine( $issue->{itemnumber},
1848                             $issue->{borrowernumber},
1849                             0, $type, output_pref($datedue) );
1850                     }
1851                 }
1852             }
1853
1854             MarkIssueReturned( $borrowernumber, $item->{'itemnumber'},
1855                 $circControlBranch, $return_date, $borrower->{'privacy'} );
1856
1857             # FIXME is the "= 1" right?  This could be the borrower hash.
1858             $messages->{'WasReturned'} = 1;
1859
1860         }
1861
1862         ModItem({ onloan => undef }, $issue->{'biblionumber'}, $item->{'itemnumber'});
1863     }
1864
1865     # the holdingbranch is updated if the document is returned to another location.
1866     # this is always done regardless of whether the item was on loan or not
1867     if ($item->{'holdingbranch'} ne $branch) {
1868         UpdateHoldingbranch($branch, $item->{'itemnumber'});
1869         $item->{'holdingbranch'} = $branch; # update item data holdingbranch too
1870     }
1871     ModDateLastSeen( $item->{'itemnumber'} );
1872
1873     # check if we have a transfer for this document
1874     my ($datesent,$frombranch,$tobranch) = GetTransfers( $item->{'itemnumber'} );
1875
1876     # if we have a transfer to do, we update the line of transfers with the datearrived
1877     if ($datesent) {
1878         if ( $tobranch eq $branch ) {
1879             my $sth = C4::Context->dbh->prepare(
1880                 "UPDATE branchtransfers SET datearrived = now() WHERE itemnumber= ? AND datearrived IS NULL"
1881             );
1882             $sth->execute( $item->{'itemnumber'} );
1883             # if we have a reservation with valid transfer, we can set it's status to 'W'
1884             ShelfToCart( $item->{'itemnumber'} ) if ( C4::Context->preference("ReturnToShelvingCart") );
1885             C4::Reserves::ModReserveStatus($item->{'itemnumber'}, 'W');
1886         } else {
1887             $messages->{'WrongTransfer'}     = $tobranch;
1888             $messages->{'WrongTransferItem'} = $item->{'itemnumber'};
1889         }
1890         $validTransfert = 1;
1891     } else {
1892         ShelfToCart( $item->{'itemnumber'} ) if ( C4::Context->preference("ReturnToShelvingCart") );
1893     }
1894
1895     # fix up the accounts.....
1896     if ( $item->{'itemlost'} ) {
1897         $messages->{'WasLost'} = 1;
1898
1899         if ( C4::Context->preference('RefundLostItemFeeOnReturn' ) ) {
1900             _FixAccountForLostAndReturned($item->{'itemnumber'}, $borrowernumber, $barcode);    # can tolerate undef $borrowernumber
1901             $messages->{'LostItemFeeRefunded'} = 1;
1902         }
1903     }
1904
1905     # fix up the overdues in accounts...
1906     if ($borrowernumber) {
1907         my $fix = _FixOverduesOnReturn($borrowernumber, $item->{itemnumber}, $exemptfine, $dropbox);
1908         defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $item->{itemnumber}...) failed!";  # zero is OK, check defined
1909         
1910         if ( $issue->{overdue} && $issue->{date_due} ) {
1911         # fix fine days
1912             my ($debardate,$reminder) = _debar_user_on_return( $borrower, $item, $issue->{date_due}, $today );
1913             if ($reminder){
1914                 $messages->{'PrevDebarred'} = $debardate;
1915             } else {
1916                 $messages->{'Debarred'} = $debardate if $debardate;
1917             }
1918         # there's no overdue on the item but borrower had been previously debarred
1919         } elsif ( $issue->{date_due} and $borrower->{'debarred'} ) {
1920              my $borrower_debar_dt = dt_from_string( $borrower->{debarred} );
1921              $borrower_debar_dt->truncate(to => 'day');
1922              my $today_dt = $today->clone()->truncate(to => 'day');
1923              if ( DateTime->compare( $borrower_debar_dt, $today_dt ) != -1 ) {
1924                  $messages->{'PrevDebarred'} = $borrower->{'debarred'};
1925              }
1926         }
1927     }
1928
1929     # find reserves.....
1930     # if we don't have a reserve with the status W, we launch the Checkreserves routine
1931     my ($resfound, $resrec);
1932     my $lookahead= C4::Context->preference('ConfirmFutureHolds'); #number of days to look for future holds
1933     ($resfound, $resrec, undef) = C4::Reserves::CheckReserves( $item->{'itemnumber'}, undef, $lookahead ) unless ( $item->{'withdrawn'} );
1934     if ($resfound) {
1935           $resrec->{'ResFound'} = $resfound;
1936         $messages->{'ResFound'} = $resrec;
1937     }
1938
1939     # update stats?
1940     # Record the fact that this book was returned.
1941     UpdateStats(
1942         $branch, $stat_type, '0', '',
1943         $item->{'itemnumber'},
1944         $biblio->{'itemtype'},
1945         $borrowernumber, undef, $item->{'ccode'}
1946     );
1947
1948     # Send a check-in slip. # NOTE: borrower may be undef.  probably shouldn't try to send messages then.
1949     my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1950     my %conditions = (
1951         branchcode   => $branch,
1952         categorycode => $borrower->{categorycode},
1953         item_type    => $item->{itype},
1954         notification => 'CHECKIN',
1955     );
1956     if ($doreturn && $circulation_alert->is_enabled_for(\%conditions)) {
1957         SendCirculationAlert({
1958             type     => 'CHECKIN',
1959             item     => $item,
1960             borrower => $borrower,
1961             branch   => $branch,
1962         });
1963     }
1964     
1965     logaction("CIRCULATION", "RETURN", $borrowernumber, $item->{'itemnumber'})
1966         if C4::Context->preference("ReturnLog");
1967     
1968     # Remove any OVERDUES related debarment if the borrower has no overdues
1969     if ( $borrowernumber
1970       && $borrower->{'debarred'}
1971       && C4::Context->preference('AutoRemoveOverduesRestrictions')
1972       && !HasOverdues( $borrowernumber )
1973       && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
1974     ) {
1975         DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
1976     }
1977
1978     # FIXME: make this comment intelligible.
1979     #adding message if holdingbranch is non equal a userenv branch to return the document to homebranch
1980     #we check, if we don't have reserv or transfert for this document, if not, return it to homebranch .
1981
1982     if (($doreturn or $messages->{'NotIssued'}) and !$resfound and ($branch ne $hbr) and not $messages->{'WrongTransfer'}){
1983         if ( C4::Context->preference("AutomaticItemReturn"    ) or
1984             (C4::Context->preference("UseBranchTransferLimits") and
1985              ! IsBranchTransferAllowed($branch, $hbr, $item->{C4::Context->preference("BranchTransferLimitsType")} )
1986            )) {
1987             $debug and warn sprintf "about to call ModItemTransfer(%s, %s, %s)", $item->{'itemnumber'},$branch, $hbr;
1988             $debug and warn "item: " . Dumper($item);
1989             ModItemTransfer($item->{'itemnumber'}, $branch, $hbr);
1990             $messages->{'WasTransfered'} = 1;
1991         } else {
1992             $messages->{'NeedsTransfer'} = 1;   # TODO: instead of 1, specify branchcode that the transfer SHOULD go to, $item->{homebranch}
1993         }
1994     }
1995     return ( $doreturn, $messages, $issue, $borrower );
1996 }
1997
1998 =head2 MarkIssueReturned
1999
2000   MarkIssueReturned($borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy);
2001
2002 Unconditionally marks an issue as being returned by
2003 moving the C<issues> row to C<old_issues> and
2004 setting C<returndate> to the current date, or
2005 the last non-holiday date of the branccode specified in
2006 C<dropbox_branch> .  Assumes you've already checked that 
2007 it's safe to do this, i.e. last non-holiday > issuedate.
2008
2009 if C<$returndate> is specified (in iso format), it is used as the date
2010 of the return. It is ignored when a dropbox_branch is passed in.
2011
2012 C<$privacy> contains the privacy parameter. If the patron has set privacy to 2,
2013 the old_issue is immediately anonymised
2014
2015 Ideally, this function would be internal to C<C4::Circulation>,
2016 not exported, but it is currently needed by one 
2017 routine in C<C4::Accounts>.
2018
2019 =cut
2020
2021 sub MarkIssueReturned {
2022     my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy ) = @_;
2023
2024     my $dbh   = C4::Context->dbh;
2025     my $query = 'UPDATE issues SET returndate=';
2026     my @bind;
2027     if ($dropbox_branch) {
2028         my $calendar = Koha::Calendar->new( branchcode => $dropbox_branch );
2029         my $dropboxdate = $calendar->addDate( DateTime->now( time_zone => C4::Context->tz), -1 );
2030         $query .= ' ? ';
2031         push @bind, $dropboxdate->strftime('%Y-%m-%d %H:%M');
2032     } elsif ($returndate) {
2033         $query .= ' ? ';
2034         push @bind, $returndate;
2035     } else {
2036         $query .= ' now() ';
2037     }
2038     $query .= ' WHERE  borrowernumber = ?  AND itemnumber = ?';
2039     push @bind, $borrowernumber, $itemnumber;
2040     # FIXME transaction
2041     my $sth_upd  = $dbh->prepare($query);
2042     $sth_upd->execute(@bind);
2043     my $sth_copy = $dbh->prepare('INSERT INTO old_issues SELECT * FROM issues
2044                                   WHERE borrowernumber = ?
2045                                   AND itemnumber = ?');
2046     $sth_copy->execute($borrowernumber, $itemnumber);
2047     # anonymise patron checkout immediately if $privacy set to 2 and AnonymousPatron is set to a valid borrowernumber
2048     if ( $privacy == 2) {
2049         # The default of 0 does not work due to foreign key constraints
2050         # The anonymisation will fail quietly if AnonymousPatron is not a valid entry
2051         # FIXME the above is unacceptable - bug 9942 relates
2052         my $anonymouspatron = (C4::Context->preference('AnonymousPatron')) ? C4::Context->preference('AnonymousPatron') : 0;
2053         my $sth_ano = $dbh->prepare("UPDATE old_issues SET borrowernumber=?
2054                                   WHERE borrowernumber = ?
2055                                   AND itemnumber = ?");
2056        $sth_ano->execute($anonymouspatron, $borrowernumber, $itemnumber);
2057     }
2058     my $sth_del  = $dbh->prepare("DELETE FROM issues
2059                                   WHERE borrowernumber = ?
2060                                   AND itemnumber = ?");
2061     $sth_del->execute($borrowernumber, $itemnumber);
2062 }
2063
2064 =head2 _debar_user_on_return
2065
2066     _debar_user_on_return($borrower, $item, $datedue, today);
2067
2068 C<$borrower> borrower hashref
2069
2070 C<$item> item hashref
2071
2072 C<$datedue> date due DateTime object
2073
2074 C<$today> DateTime object representing the return time
2075
2076 Internal function, called only by AddReturn that calculates and updates
2077  the user fine days, and debars him if necessary.
2078
2079 Should only be called for overdue returns
2080
2081 =cut
2082
2083 sub _debar_user_on_return {
2084     my ( $borrower, $item, $dt_due, $dt_today ) = @_;
2085
2086     my $branchcode = _GetCircControlBranch( $item, $borrower );
2087     my $calendar = Koha::Calendar->new( branchcode => $branchcode );
2088
2089     # $deltadays is a DateTime::Duration object
2090     my $deltadays = $calendar->days_between( $dt_due, $dt_today );
2091
2092     my $circcontrol = C4::Context->preference('CircControl');
2093     my $issuingrule =
2094       GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode );
2095     my $finedays = $issuingrule->{finedays};
2096     my $unit     = $issuingrule->{lengthunit};
2097
2098     if ($finedays) {
2099
2100         # finedays is in days, so hourly loans must multiply by 24
2101         # thus 1 hour late equals 1 day suspension * finedays rate
2102         $finedays = $finedays * 24 if ( $unit eq 'hours' );
2103
2104         # grace period is measured in the same units as the loan
2105         my $grace =
2106           DateTime::Duration->new( $unit => $issuingrule->{firstremind} );
2107
2108         if ( $deltadays->subtract($grace)->is_positive() ) {
2109             my $suspension_days = $deltadays * $finedays;
2110
2111             # If the max suspension days is < than the suspension days
2112             # the suspension days is limited to this maximum period.
2113             my $max_sd = $issuingrule->{maxsuspensiondays};
2114             if ( defined $max_sd ) {
2115                 $max_sd = DateTime::Duration->new( days => $max_sd );
2116                 $suspension_days = $max_sd
2117                   if DateTime::Duration->compare( $max_sd, $suspension_days ) < 0;
2118             }
2119
2120             my $new_debar_dt =
2121               $dt_today->clone()->add_duration( $suspension_days );
2122
2123             Koha::Borrower::Debarments::AddUniqueDebarment({
2124                 borrowernumber => $borrower->{borrowernumber},
2125                 expiration     => $new_debar_dt->ymd(),
2126                 type           => 'SUSPENSION',
2127             });
2128             # if borrower was already debarred but does not get an extra debarment
2129             if ( $borrower->{debarred} eq Koha::Borrower::Debarments::IsDebarred($borrower->{borrowernumber}) ) {
2130                     return ($borrower->{debarred},1);
2131             }
2132             return $new_debar_dt->ymd();
2133         }
2134     }
2135     return;
2136 }
2137
2138 =head2 _FixOverduesOnReturn
2139
2140    &_FixOverduesOnReturn($brn,$itm, $exemptfine, $dropboxmode);
2141
2142 C<$brn> borrowernumber
2143
2144 C<$itm> itemnumber
2145
2146 C<$exemptfine> BOOL -- remove overdue charge associated with this issue. 
2147 C<$dropboxmode> BOOL -- remove lastincrement on overdue charge associated with this issue.
2148
2149 Internal function, called only by AddReturn
2150
2151 =cut
2152
2153 sub _FixOverduesOnReturn {
2154     my ($borrowernumber, $item);
2155     unless ($borrowernumber = shift) {
2156         warn "_FixOverduesOnReturn() not supplied valid borrowernumber";
2157         return;
2158     }
2159     unless ($item = shift) {
2160         warn "_FixOverduesOnReturn() not supplied valid itemnumber";
2161         return;
2162     }
2163     my ($exemptfine, $dropbox) = @_;
2164     my $dbh = C4::Context->dbh;
2165
2166     # check for overdue fine
2167     my $sth = $dbh->prepare(
2168 "SELECT * FROM accountlines WHERE (borrowernumber = ?) AND (itemnumber = ?) AND (accounttype='FU' OR accounttype='O')"
2169     );
2170     $sth->execute( $borrowernumber, $item );
2171
2172     # alter fine to show that the book has been returned
2173     my $data = $sth->fetchrow_hashref;
2174     return 0 unless $data;    # no warning, there's just nothing to fix
2175
2176     my $uquery;
2177     my @bind = ($data->{'accountlines_id'});
2178     if ($exemptfine) {
2179         $uquery = "update accountlines set accounttype='FFOR', amountoutstanding=0";
2180         if (C4::Context->preference("FinesLog")) {
2181             &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
2182         }
2183     } elsif ($dropbox && $data->{lastincrement}) {
2184         my $outstanding = $data->{amountoutstanding} - $data->{lastincrement} ;
2185         my $amt = $data->{amount} - $data->{lastincrement} ;
2186         if (C4::Context->preference("FinesLog")) {
2187             &logaction("FINES", 'MODIFY',$borrowernumber,"Dropbox adjustment $amt, item $item");
2188         }
2189          $uquery = "update accountlines set accounttype='F' ";
2190          if($outstanding  >= 0 && $amt >=0) {
2191             $uquery .= ", amount = ? , amountoutstanding=? ";
2192             unshift @bind, ($amt, $outstanding) ;
2193         }
2194     } else {
2195         $uquery = "update accountlines set accounttype='F' ";
2196     }
2197     $uquery .= " where (accountlines_id = ?)";
2198     my $usth = $dbh->prepare($uquery);
2199     return $usth->execute(@bind);
2200 }
2201
2202 =head2 _FixAccountForLostAndReturned
2203
2204   &_FixAccountForLostAndReturned($itemnumber, [$borrowernumber, $barcode]);
2205
2206 Calculates the charge for a book lost and returned.
2207
2208 Internal function, not exported, called only by AddReturn.
2209
2210 FIXME: This function reflects how inscrutable fines logic is.  Fix both.
2211 FIXME: Give a positive return value on success.  It might be the $borrowernumber who received credit, or the amount forgiven.
2212
2213 =cut
2214
2215 sub _FixAccountForLostAndReturned {
2216     my $itemnumber     = shift or return;
2217     my $borrowernumber = @_ ? shift : undef;
2218     my $item_id        = @_ ? shift : $itemnumber;  # Send the barcode if you want that logged in the description
2219     my $dbh = C4::Context->dbh;
2220     # check for charge made for lost book
2221     my $sth = $dbh->prepare("SELECT * FROM accountlines WHERE itemnumber = ? AND accounttype IN ('L', 'Rep', 'W') ORDER BY date DESC, accountno DESC");
2222     $sth->execute($itemnumber);
2223     my $data = $sth->fetchrow_hashref;
2224     $data or return;    # bail if there is nothing to do
2225     $data->{accounttype} eq 'W' and return;    # Written off
2226
2227     # writeoff this amount
2228     my $offset;
2229     my $amount = $data->{'amount'};
2230     my $acctno = $data->{'accountno'};
2231     my $amountleft;                                             # Starts off undef/zero.
2232     if ($data->{'amountoutstanding'} == $amount) {
2233         $offset     = $data->{'amount'};
2234         $amountleft = 0;                                        # Hey, it's zero here, too.
2235     } else {
2236         $offset     = $amount - $data->{'amountoutstanding'};   # Um, isn't this the same as ZERO?  We just tested those two things are ==
2237         $amountleft = $data->{'amountoutstanding'} - $amount;   # Um, isn't this the same as ZERO?  We just tested those two things are ==
2238     }
2239     my $usth = $dbh->prepare("UPDATE accountlines SET accounttype = 'LR',amountoutstanding='0'
2240         WHERE (accountlines_id = ?)");
2241     $usth->execute($data->{'accountlines_id'});      # We might be adjusting an account for some OTHER borrowernumber now.  Not the one we passed in.
2242     #check if any credit is left if so writeoff other accounts
2243     my $nextaccntno = getnextacctno($data->{'borrowernumber'});
2244     $amountleft *= -1 if ($amountleft < 0);
2245     if ($amountleft > 0) {
2246         my $msth = $dbh->prepare("SELECT * FROM accountlines WHERE (borrowernumber = ?)
2247                             AND (amountoutstanding >0) ORDER BY date");     # might want to order by amountoustanding ASC (pay smallest first)
2248         $msth->execute($data->{'borrowernumber'});
2249         # offset transactions
2250         my $newamtos;
2251         my $accdata;
2252         while (($accdata=$msth->fetchrow_hashref) and ($amountleft>0)){
2253             if ($accdata->{'amountoutstanding'} < $amountleft) {
2254                 $newamtos = 0;
2255                 $amountleft -= $accdata->{'amountoutstanding'};
2256             }  else {
2257                 $newamtos = $accdata->{'amountoutstanding'} - $amountleft;
2258                 $amountleft = 0;
2259             }
2260             my $thisacct = $accdata->{'accountlines_id'};
2261             # FIXME: move prepares outside while loop!
2262             my $usth = $dbh->prepare("UPDATE accountlines SET amountoutstanding= ?
2263                     WHERE (accountlines_id = ?)");
2264             $usth->execute($newamtos,$thisacct);
2265             $usth = $dbh->prepare("INSERT INTO accountoffsets
2266                 (borrowernumber, accountno, offsetaccount,  offsetamount)
2267                 VALUES
2268                 (?,?,?,?)");
2269             $usth->execute($data->{'borrowernumber'},$accdata->{'accountno'},$nextaccntno,$newamtos);
2270         }
2271     }
2272     $amountleft *= -1 if ($amountleft > 0);
2273     my $desc = "Item Returned " . $item_id;
2274     $usth = $dbh->prepare("INSERT INTO accountlines
2275         (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
2276         VALUES (?,?,now(),?,?,'CR',?)");
2277     $usth->execute($data->{'borrowernumber'},$nextaccntno,0-$amount,$desc,$amountleft);
2278     if ($borrowernumber) {
2279         # FIXME: same as query above.  use 1 sth for both
2280         $usth = $dbh->prepare("INSERT INTO accountoffsets
2281             (borrowernumber, accountno, offsetaccount,  offsetamount)
2282             VALUES (?,?,?,?)");
2283         $usth->execute($borrowernumber, $data->{'accountno'}, $nextaccntno, $offset);
2284     }
2285     ModItem({ paidfor => '' }, undef, $itemnumber);
2286     return;
2287 }
2288
2289 =head2 _GetCircControlBranch
2290
2291    my $circ_control_branch = _GetCircControlBranch($iteminfos, $borrower);
2292
2293 Internal function : 
2294
2295 Return the library code to be used to determine which circulation
2296 policy applies to a transaction.  Looks up the CircControl and
2297 HomeOrHoldingBranch system preferences.
2298
2299 C<$iteminfos> is a hashref to iteminfo. Only {homebranch or holdingbranch} is used.
2300
2301 C<$borrower> is a hashref to borrower. Only {branchcode} is used.
2302
2303 =cut
2304
2305 sub _GetCircControlBranch {
2306     my ($item, $borrower) = @_;
2307     my $circcontrol = C4::Context->preference('CircControl');
2308     my $branch;
2309
2310     if ($circcontrol eq 'PickupLibrary' and (C4::Context->userenv and C4::Context->userenv->{'branch'}) ) {
2311         $branch= C4::Context->userenv->{'branch'};
2312     } elsif ($circcontrol eq 'PatronLibrary') {
2313         $branch=$borrower->{branchcode};
2314     } else {
2315         my $branchfield = C4::Context->preference('HomeOrHoldingBranch') || 'homebranch';
2316         $branch = $item->{$branchfield};
2317         # default to item home branch if holdingbranch is used
2318         # and is not defined
2319         if (!defined($branch) && $branchfield eq 'holdingbranch') {
2320             $branch = $item->{homebranch};
2321         }
2322     }
2323     return $branch;
2324 }
2325
2326
2327
2328
2329
2330
2331 =head2 GetItemIssue
2332
2333   $issue = &GetItemIssue($itemnumber);
2334
2335 Returns patron currently having a book, or undef if not checked out.
2336
2337 C<$itemnumber> is the itemnumber.
2338
2339 C<$issue> is a hashref of the row from the issues table.
2340
2341 =cut
2342
2343 sub GetItemIssue {
2344     my ($itemnumber) = @_;
2345     return unless $itemnumber;
2346     my $sth = C4::Context->dbh->prepare(
2347         "SELECT items.*, issues.*
2348         FROM issues
2349         LEFT JOIN items ON issues.itemnumber=items.itemnumber
2350         WHERE issues.itemnumber=?");
2351     $sth->execute($itemnumber);
2352     my $data = $sth->fetchrow_hashref;
2353     return unless $data;
2354     $data->{issuedate} = dt_from_string($data->{issuedate}, 'sql');
2355     $data->{issuedate}->truncate(to => 'minute');
2356     $data->{date_due} = dt_from_string($data->{date_due}, 'sql');
2357     $data->{date_due}->truncate(to => 'minute');
2358     my $dt = DateTime->now( time_zone => C4::Context->tz)->truncate( to => 'minute');
2359     $data->{'overdue'} = DateTime->compare($data->{'date_due'}, $dt ) == -1 ? 1 : 0;
2360     return $data;
2361 }
2362
2363 =head2 GetOpenIssue
2364
2365   $issue = GetOpenIssue( $itemnumber );
2366
2367 Returns the row from the issues table if the item is currently issued, undef if the item is not currently issued
2368
2369 C<$itemnumber> is the item's itemnumber
2370
2371 Returns a hashref
2372
2373 =cut
2374
2375 sub GetOpenIssue {
2376   my ( $itemnumber ) = @_;
2377   return unless $itemnumber;
2378   my $dbh = C4::Context->dbh;  
2379   my $sth = $dbh->prepare( "SELECT * FROM issues WHERE itemnumber = ? AND returndate IS NULL" );
2380   $sth->execute( $itemnumber );
2381   return $sth->fetchrow_hashref();
2382
2383 }
2384
2385 =head2 GetIssues
2386
2387     $issues = GetIssues({});    # return all issues!
2388     $issues = GetIssues({ borrowernumber => $borrowernumber, biblionumber => $biblionumber });
2389
2390 Returns all pending issues that match given criteria.
2391 Returns a arrayref or undef if an error occurs.
2392
2393 Allowed criteria are:
2394
2395 =over 2
2396
2397 =item * borrowernumber
2398
2399 =item * biblionumber
2400
2401 =item * itemnumber
2402
2403 =back
2404
2405 =cut
2406
2407 sub GetIssues {
2408     my ($criteria) = @_;
2409
2410     # Build filters
2411     my @filters;
2412     my @allowed = qw(borrowernumber biblionumber itemnumber);
2413     foreach (@allowed) {
2414         if (defined $criteria->{$_}) {
2415             push @filters, {
2416                 field => $_,
2417                 value => $criteria->{$_},
2418             };
2419         }
2420     }
2421
2422     # Do we need to join other tables ?
2423     my %join;
2424     if (defined $criteria->{biblionumber}) {
2425         $join{items} = 1;
2426     }
2427
2428     # Build SQL query
2429     my $where = '';
2430     if (@filters) {
2431         $where = "WHERE " . join(' AND ', map { "$_->{field} = ?" } @filters);
2432     }
2433     my $query = q{
2434         SELECT issues.*
2435         FROM issues
2436     };
2437     if (defined $join{items}) {
2438         $query .= q{
2439             LEFT JOIN items ON (issues.itemnumber = items.itemnumber)
2440         };
2441     }
2442     $query .= $where;
2443
2444     # Execute SQL query
2445     my $dbh = C4::Context->dbh;
2446     my $sth = $dbh->prepare($query);
2447     my $rv = $sth->execute(map { $_->{value} } @filters);
2448
2449     return $rv ? $sth->fetchall_arrayref({}) : undef;
2450 }
2451
2452 =head2 GetItemIssues
2453
2454   $issues = &GetItemIssues($itemnumber, $history);
2455
2456 Returns patrons that have issued a book
2457
2458 C<$itemnumber> is the itemnumber
2459 C<$history> is false if you just want the current "issuer" (if any)
2460 and true if you want issues history from old_issues also.
2461
2462 Returns reference to an array of hashes
2463
2464 =cut
2465
2466 sub GetItemIssues {
2467     my ( $itemnumber, $history ) = @_;
2468     
2469     my $today = DateTime->now( time_zome => C4::Context->tz);  # get today date
2470     $today->truncate( to => 'minute' );
2471     my $sql = "SELECT * FROM issues
2472               JOIN borrowers USING (borrowernumber)
2473               JOIN items     USING (itemnumber)
2474               WHERE issues.itemnumber = ? ";
2475     if ($history) {
2476         $sql .= "UNION ALL
2477                  SELECT * FROM old_issues
2478                  LEFT JOIN borrowers USING (borrowernumber)
2479                  JOIN items USING (itemnumber)
2480                  WHERE old_issues.itemnumber = ? ";
2481     }
2482     $sql .= "ORDER BY date_due DESC";
2483     my $sth = C4::Context->dbh->prepare($sql);
2484     if ($history) {
2485         $sth->execute($itemnumber, $itemnumber);
2486     } else {
2487         $sth->execute($itemnumber);
2488     }
2489     my $results = $sth->fetchall_arrayref({});
2490     foreach (@$results) {
2491         my $date_due = dt_from_string($_->{date_due},'sql');
2492         $date_due->truncate( to => 'minute' );
2493
2494         $_->{overdue} = (DateTime->compare($date_due, $today) == -1) ? 1 : 0;
2495     }
2496     return $results;
2497 }
2498
2499 =head2 GetBiblioIssues
2500
2501   $issues = GetBiblioIssues($biblionumber);
2502
2503 this function get all issues from a biblionumber.
2504
2505 Return:
2506 C<$issues> is a reference to array which each value is ref-to-hash. This ref-to-hash containts all column from
2507 tables issues and the firstname,surname & cardnumber from borrowers.
2508
2509 =cut
2510
2511 sub GetBiblioIssues {
2512     my $biblionumber = shift;
2513     return unless $biblionumber;
2514     my $dbh   = C4::Context->dbh;
2515     my $query = "
2516         SELECT issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2517         FROM issues
2518             LEFT JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
2519             LEFT JOIN items ON issues.itemnumber = items.itemnumber
2520             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2521             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2522         WHERE biblio.biblionumber = ?
2523         UNION ALL
2524         SELECT old_issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2525         FROM old_issues
2526             LEFT JOIN borrowers ON borrowers.borrowernumber = old_issues.borrowernumber
2527             LEFT JOIN items ON old_issues.itemnumber = items.itemnumber
2528             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2529             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2530         WHERE biblio.biblionumber = ?
2531         ORDER BY timestamp
2532     ";
2533     my $sth = $dbh->prepare($query);
2534     $sth->execute($biblionumber, $biblionumber);
2535
2536     my @issues;
2537     while ( my $data = $sth->fetchrow_hashref ) {
2538         push @issues, $data;
2539     }
2540     return \@issues;
2541 }
2542
2543 =head2 GetUpcomingDueIssues
2544
2545   my $upcoming_dues = GetUpcomingDueIssues( { days_in_advance => 4 } );
2546
2547 =cut
2548
2549 sub GetUpcomingDueIssues {
2550     my $params = shift;
2551
2552     $params->{'days_in_advance'} = 7 unless exists $params->{'days_in_advance'};
2553     my $dbh = C4::Context->dbh;
2554
2555     my $statement = <<END_SQL;
2556 SELECT issues.*, items.itype as itemtype, items.homebranch, TO_DAYS( date_due )-TO_DAYS( NOW() ) as days_until_due, branches.branchemail
2557 FROM issues 
2558 LEFT JOIN items USING (itemnumber)
2559 LEFT OUTER JOIN branches USING (branchcode)
2560 WHERE returndate is NULL
2561 HAVING days_until_due >= 0 AND days_until_due <= ?
2562 END_SQL
2563
2564     my @bind_parameters = ( $params->{'days_in_advance'} );
2565     
2566     my $sth = $dbh->prepare( $statement );
2567     $sth->execute( @bind_parameters );
2568     my $upcoming_dues = $sth->fetchall_arrayref({});
2569
2570     return $upcoming_dues;
2571 }
2572
2573 =head2 CanBookBeRenewed
2574
2575   ($ok,$error) = &CanBookBeRenewed($borrowernumber, $itemnumber[, $override_limit]);
2576
2577 Find out whether a borrowed item may be renewed.
2578
2579 C<$borrowernumber> is the borrower number of the patron who currently
2580 has the item on loan.
2581
2582 C<$itemnumber> is the number of the item to renew.
2583
2584 C<$override_limit>, if supplied with a true value, causes
2585 the limit on the number of times that the loan can be renewed
2586 (as controlled by the item type) to be ignored.
2587
2588 C<$CanBookBeRenewed> returns a true value if the item may be renewed. The
2589 item must currently be on loan to the specified borrower; renewals
2590 must be allowed for the item's type; and the borrower must not have
2591 already renewed the loan. $error will contain the reason the renewal can not proceed
2592
2593 =cut
2594
2595 sub CanBookBeRenewed {
2596     my ( $borrowernumber, $itemnumber, $override_limit ) = @_;
2597
2598     my $dbh       = C4::Context->dbh;
2599     my $renews    = 1;
2600     my $renewokay = 1;
2601     my $error;
2602
2603     my $item      = GetItem($itemnumber)      or return ( 0, 'no_item' );
2604     my $itemissue = GetItemIssue($itemnumber) or return ( 0, 'no_checkout' );
2605
2606     $borrowernumber ||= $itemissue->{borrowernumber};
2607     my $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber )
2608       or return;
2609
2610     my $branchcode  = _GetCircControlBranch($item, $borrower);
2611
2612     my $issuingrule = GetIssuingRule($borrower->{categorycode}, $item->{itype}, $branchcode);
2613
2614     if ( $issuingrule->{norenewalbefore} ) {
2615
2616         # Get current time and add norenewalbefore. If this is smaller than date_due, it's too soon for renewal.
2617         if (
2618             DateTime->now( time_zone => C4::Context->tz() )->add(
2619                 $issuingrule->{lengthunit} => $issuingrule->{norenewalbefore}
2620             ) < $itemissue->{date_due}
2621         )
2622         {
2623             $renewokay = 0;
2624             $error     = "too_soon";
2625         }
2626     }
2627
2628     if ( $issuingrule->{renewalsallowed} <= $itemissue->{renewals} ) {
2629         $renewokay = 0;
2630         $error = "too_many";
2631     }
2632
2633     if ( $override_limit ) {
2634         $renewokay = 1;
2635         $error     = undef;
2636     }
2637
2638     my ( $resfound, $resrec, undef ) = C4::Reserves::CheckReserves( $itemnumber );
2639
2640     if ( $resfound ) { # '' when no hold was found
2641         $renewokay = 0;
2642         $error = "on_reserve";
2643     }
2644
2645     return ( $renewokay, $error );
2646 }
2647
2648 =head2 AddRenewal
2649
2650   &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate]);
2651
2652 Renews a loan.
2653
2654 C<$borrowernumber> is the borrower number of the patron who currently
2655 has the item.
2656
2657 C<$itemnumber> is the number of the item to renew.
2658
2659 C<$branch> is the library where the renewal took place (if any).
2660            The library that controls the circ policies for the renewal is retrieved from the issues record.
2661
2662 C<$datedue> can be a C4::Dates object used to set the due date.
2663
2664 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate.  If
2665 this parameter is not supplied, lastreneweddate is set to the current date.
2666
2667 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
2668 from the book's item type.
2669
2670 =cut
2671
2672 sub AddRenewal {
2673     my $borrowernumber  = shift;
2674     my $itemnumber      = shift or return;
2675     my $branch          = shift;
2676     my $datedue         = shift;
2677     my $lastreneweddate = shift || DateTime->now(time_zone => C4::Context->tz)->ymd();
2678
2679     my $item   = GetItem($itemnumber) or return;
2680     my $biblio = GetBiblioFromItemNumber($itemnumber) or return;
2681
2682     my $dbh = C4::Context->dbh;
2683
2684     # Find the issues record for this book
2685     my $sth =
2686       $dbh->prepare("SELECT * FROM issues WHERE itemnumber = ?");
2687     $sth->execute( $itemnumber );
2688     my $issuedata = $sth->fetchrow_hashref;
2689
2690     return unless ( $issuedata );
2691
2692     $borrowernumber ||= $issuedata->{borrowernumber};
2693
2694     if ( defined $datedue && ref $datedue ne 'DateTime' ) {
2695         carp 'Invalid date passed to AddRenewal.';
2696         return;
2697     }
2698
2699     # If the due date wasn't specified, calculate it by adding the
2700     # book's loan length to today's date or the current due date
2701     # based on the value of the RenewalPeriodBase syspref.
2702     unless ($datedue) {
2703
2704         my $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber ) or return;
2705         my $itemtype = (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'};
2706
2707         $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
2708                                         dt_from_string( $issuedata->{date_due} ) :
2709                                         DateTime->now( time_zone => C4::Context->tz());
2710         $datedue =  CalcDateDue($datedue, $itemtype, $issuedata->{'branchcode'}, $borrower, 'is a renewal');
2711     }
2712
2713     # Update the issues record to have the new due date, and a new count
2714     # of how many times it has been renewed.
2715     my $renews = $issuedata->{'renewals'} + 1;
2716     $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, lastreneweddate = ?
2717                             WHERE borrowernumber=? 
2718                             AND itemnumber=?"
2719     );
2720
2721     $sth->execute( $datedue->strftime('%Y-%m-%d %H:%M'), $renews, $lastreneweddate, $borrowernumber, $itemnumber );
2722
2723     # Update the renewal count on the item, and tell zebra to reindex
2724     $renews = $biblio->{'renewals'} + 1;
2725     ModItem({ renewals => $renews, onloan => $datedue->strftime('%Y-%m-%d %H:%M')}, $biblio->{'biblionumber'}, $itemnumber);
2726
2727     # Charge a new rental fee, if applicable?
2728     my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
2729     if ( $charge > 0 ) {
2730         my $accountno = getnextacctno( $borrowernumber );
2731         my $item = GetBiblioFromItemNumber($itemnumber);
2732         my $manager_id = 0;
2733         $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv; 
2734         $sth = $dbh->prepare(
2735                 "INSERT INTO accountlines
2736                     (date, borrowernumber, accountno, amount, manager_id,
2737                     description,accounttype, amountoutstanding, itemnumber)
2738                     VALUES (now(),?,?,?,?,?,?,?,?)"
2739         );
2740         $sth->execute( $borrowernumber, $accountno, $charge, $manager_id,
2741             "Renewal of Rental Item $item->{'title'} $item->{'barcode'}",
2742             'Rent', $charge, $itemnumber );
2743     }
2744
2745     # Send a renewal slip according to checkout alert preferencei
2746     if ( C4::Context->preference('RenewalSendNotice') eq '1') {
2747         my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 );
2748         my $circulation_alert = 'C4::ItemCirculationAlertPreference';
2749         my %conditions = (
2750                 branchcode   => $branch,
2751                 categorycode => $borrower->{categorycode},
2752                 item_type    => $item->{itype},
2753                 notification => 'CHECKOUT',
2754         );
2755         if ($circulation_alert->is_enabled_for(\%conditions)) {
2756                 SendCirculationAlert({
2757                         type     => 'RENEWAL',
2758                         item     => $item,
2759                 borrower => $borrower,
2760                 branch   => $branch,
2761                 });
2762         }
2763     }
2764
2765     # Remove any OVERDUES related debarment if the borrower has no overdues
2766     my $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber );
2767     if ( $borrowernumber
2768       && $borrower->{'debarred'}
2769       && !HasOverdues( $borrowernumber )
2770       && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) }
2771     ) {
2772         DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
2773     }
2774
2775     # Log the renewal
2776     UpdateStats( $branch, 'renew', $charge, '', $itemnumber, $item->{itype}, $borrowernumber, undef, $item->{'ccode'});
2777         return $datedue;
2778 }
2779
2780 sub GetRenewCount {
2781     # check renewal status
2782     my ( $bornum, $itemno ) = @_;
2783     my $dbh           = C4::Context->dbh;
2784     my $renewcount    = 0;
2785     my $renewsallowed = 0;
2786     my $renewsleft    = 0;
2787
2788     my $borrower = C4::Members::GetMember( borrowernumber => $bornum);
2789     my $item     = GetItem($itemno); 
2790
2791     # Look in the issues table for this item, lent to this borrower,
2792     # and not yet returned.
2793
2794     # FIXME - I think this function could be redone to use only one SQL call.
2795     my $sth = $dbh->prepare(
2796         "select * from issues
2797                                 where (borrowernumber = ?)
2798                                 and (itemnumber = ?)"
2799     );
2800     $sth->execute( $bornum, $itemno );
2801     my $data = $sth->fetchrow_hashref;
2802     $renewcount = $data->{'renewals'} if $data->{'renewals'};
2803     # $item and $borrower should be calculated
2804     my $branchcode = _GetCircControlBranch($item, $borrower);
2805     
2806     my $issuingrule = GetIssuingRule($borrower->{categorycode}, $item->{itype}, $branchcode);
2807     
2808     $renewsallowed = $issuingrule->{'renewalsallowed'};
2809     $renewsleft    = $renewsallowed - $renewcount;
2810     if($renewsleft < 0){ $renewsleft = 0; }
2811     return ( $renewcount, $renewsallowed, $renewsleft );
2812 }
2813
2814 =head2 GetSoonestRenewDate
2815
2816   $NoRenewalBeforeThisDate = &GetSoonestRenewDate($borrowernumber, $itemnumber);
2817
2818 Find out the soonest possible renew date of a borrowed item.
2819
2820 C<$borrowernumber> is the borrower number of the patron who currently
2821 has the item on loan.
2822
2823 C<$itemnumber> is the number of the item to renew.
2824
2825 C<$GetSoonestRenewDate> returns the DateTime of the soonest possible
2826 renew date, based on the value "No renewal before" of the applicable
2827 issuing rule. Returns the current date if the item can already be
2828 renewed, and returns undefined if the borrower, loan, or item
2829 cannot be found.
2830
2831 =cut
2832
2833 sub GetSoonestRenewDate {
2834     my ( $borrowernumber, $itemnumber ) = @_;
2835
2836     my $dbh = C4::Context->dbh;
2837
2838     my $item      = GetItem($itemnumber)      or return;
2839     my $itemissue = GetItemIssue($itemnumber) or return;
2840
2841     $borrowernumber ||= $itemissue->{borrowernumber};
2842     my $borrower = C4::Members::GetMemberDetails($borrowernumber)
2843       or return;
2844
2845     my $branchcode = _GetCircControlBranch( $item, $borrower );
2846     my $issuingrule =
2847       GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode );
2848
2849     my $now = DateTime->now( time_zone => C4::Context->tz() );
2850
2851     if ( $issuingrule->{norenewalbefore} ) {
2852         my $soonestrenewal =
2853           $itemissue->{date_due}->subtract(
2854             $issuingrule->{lengthunit} => $issuingrule->{norenewalbefore} );
2855
2856         $soonestrenewal = $now > $soonestrenewal ? $now : $soonestrenewal;
2857         return $soonestrenewal;
2858     }
2859     return $now;
2860 }
2861
2862 =head2 GetIssuingCharges
2863
2864   ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
2865
2866 Calculate how much it would cost for a given patron to borrow a given
2867 item, including any applicable discounts.
2868
2869 C<$itemnumber> is the item number of item the patron wishes to borrow.
2870
2871 C<$borrowernumber> is the patron's borrower number.
2872
2873 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
2874 and C<$item_type> is the code for the item's item type (e.g., C<VID>
2875 if it's a video).
2876
2877 =cut
2878
2879 sub GetIssuingCharges {
2880
2881     # calculate charges due
2882     my ( $itemnumber, $borrowernumber ) = @_;
2883     my $charge = 0;
2884     my $dbh    = C4::Context->dbh;
2885     my $item_type;
2886
2887     # Get the book's item type and rental charge (via its biblioitem).
2888     my $charge_query = 'SELECT itemtypes.itemtype,rentalcharge FROM items
2889         LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber';
2890     $charge_query .= (C4::Context->preference('item-level_itypes'))
2891         ? ' LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype'
2892         : ' LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype';
2893
2894     $charge_query .= ' WHERE items.itemnumber =?';
2895
2896     my $sth = $dbh->prepare($charge_query);
2897     $sth->execute($itemnumber);
2898     if ( my $item_data = $sth->fetchrow_hashref ) {
2899         $item_type = $item_data->{itemtype};
2900         $charge    = $item_data->{rentalcharge};
2901         my $branch = C4::Branch::mybranch();
2902         my $discount_query = q|SELECT rentaldiscount,
2903             issuingrules.itemtype, issuingrules.branchcode
2904             FROM borrowers
2905             LEFT JOIN issuingrules ON borrowers.categorycode = issuingrules.categorycode
2906             WHERE borrowers.borrowernumber = ?
2907             AND (issuingrules.itemtype = ? OR issuingrules.itemtype = '*')
2908             AND (issuingrules.branchcode = ? OR issuingrules.branchcode = '*')|;
2909         my $discount_sth = $dbh->prepare($discount_query);
2910         $discount_sth->execute( $borrowernumber, $item_type, $branch );
2911         my $discount_rules = $discount_sth->fetchall_arrayref({});
2912         if (@{$discount_rules}) {
2913             # We may have multiple rules so get the most specific
2914             my $discount = _get_discount_from_rule($discount_rules, $branch, $item_type);
2915             $charge = ( $charge * ( 100 - $discount ) ) / 100;
2916         }
2917     }
2918
2919     return ( $charge, $item_type );
2920 }
2921
2922 # Select most appropriate discount rule from those returned
2923 sub _get_discount_from_rule {
2924     my ($rules_ref, $branch, $itemtype) = @_;
2925     my $discount;
2926
2927     if (@{$rules_ref} == 1) { # only 1 applicable rule use it
2928         $discount = $rules_ref->[0]->{rentaldiscount};
2929         return (defined $discount) ? $discount : 0;
2930     }
2931     # could have up to 4 does one match $branch and $itemtype
2932     my @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq $itemtype } @{$rules_ref};
2933     if (@d) {
2934         $discount = $d[0]->{rentaldiscount};
2935         return (defined $discount) ? $discount : 0;
2936     }
2937     # do we have item type + all branches
2938     @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq $itemtype } @{$rules_ref};
2939     if (@d) {
2940         $discount = $d[0]->{rentaldiscount};
2941         return (defined $discount) ? $discount : 0;
2942     }
2943     # do we all item types + this branch
2944     @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq q{*} } @{$rules_ref};
2945     if (@d) {
2946         $discount = $d[0]->{rentaldiscount};
2947         return (defined $discount) ? $discount : 0;
2948     }
2949     # so all and all (surely we wont get here)
2950     @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq q{*} } @{$rules_ref};
2951     if (@d) {
2952         $discount = $d[0]->{rentaldiscount};
2953         return (defined $discount) ? $discount : 0;
2954     }
2955     # none of the above
2956     return 0;
2957 }
2958
2959 =head2 AddIssuingCharge
2960
2961   &AddIssuingCharge( $itemno, $borrowernumber, $charge )
2962
2963 =cut
2964
2965 sub AddIssuingCharge {
2966     my ( $itemnumber, $borrowernumber, $charge ) = @_;
2967     my $dbh = C4::Context->dbh;
2968     my $nextaccntno = getnextacctno( $borrowernumber );
2969     my $manager_id = 0;
2970     $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv;
2971     my $query ="
2972         INSERT INTO accountlines
2973             (borrowernumber, itemnumber, accountno,
2974             date, amount, description, accounttype,
2975             amountoutstanding, manager_id)
2976         VALUES (?, ?, ?,now(), ?, 'Rental', 'Rent',?,?)
2977     ";
2978     my $sth = $dbh->prepare($query);
2979     $sth->execute( $borrowernumber, $itemnumber, $nextaccntno, $charge, $charge, $manager_id );
2980 }
2981
2982 =head2 GetTransfers
2983
2984   GetTransfers($itemnumber);
2985
2986 =cut
2987
2988 sub GetTransfers {
2989     my ($itemnumber) = @_;
2990
2991     my $dbh = C4::Context->dbh;
2992
2993     my $query = '
2994         SELECT datesent,
2995                frombranch,
2996                tobranch
2997         FROM branchtransfers
2998         WHERE itemnumber = ?
2999           AND datearrived IS NULL
3000         ';
3001     my $sth = $dbh->prepare($query);
3002     $sth->execute($itemnumber);
3003     my @row = $sth->fetchrow_array();
3004     return @row;
3005 }
3006
3007 =head2 GetTransfersFromTo
3008
3009   @results = GetTransfersFromTo($frombranch,$tobranch);
3010
3011 Returns the list of pending transfers between $from and $to branch
3012
3013 =cut
3014
3015 sub GetTransfersFromTo {
3016     my ( $frombranch, $tobranch ) = @_;
3017     return unless ( $frombranch && $tobranch );
3018     my $dbh   = C4::Context->dbh;
3019     my $query = "
3020         SELECT itemnumber,datesent,frombranch
3021         FROM   branchtransfers
3022         WHERE  frombranch=?
3023           AND  tobranch=?
3024           AND datearrived IS NULL
3025     ";
3026     my $sth = $dbh->prepare($query);
3027     $sth->execute( $frombranch, $tobranch );
3028     my @gettransfers;
3029
3030     while ( my $data = $sth->fetchrow_hashref ) {
3031         push @gettransfers, $data;
3032     }
3033     return (@gettransfers);
3034 }
3035
3036 =head2 DeleteTransfer
3037
3038   &DeleteTransfer($itemnumber);
3039
3040 =cut
3041
3042 sub DeleteTransfer {
3043     my ($itemnumber) = @_;
3044     return unless $itemnumber;
3045     my $dbh          = C4::Context->dbh;
3046     my $sth          = $dbh->prepare(
3047         "DELETE FROM branchtransfers
3048          WHERE itemnumber=?
3049          AND datearrived IS NULL "
3050     );
3051     return $sth->execute($itemnumber);
3052 }
3053
3054 =head2 AnonymiseIssueHistory
3055
3056   ($rows,$err_history_not_deleted) = AnonymiseIssueHistory($date,$borrowernumber)
3057
3058 This function write NULL instead of C<$borrowernumber> given on input arg into the table issues.
3059 if C<$borrowernumber> is not set, it will delete the issue history for all borrower older than C<$date>.
3060
3061 If c<$borrowernumber> is set, it will delete issue history for only that borrower, regardless of their opac privacy
3062 setting (force delete).
3063
3064 return the number of affected rows and a value that evaluates to true if an error occurred deleting the history.
3065
3066 =cut
3067
3068 sub AnonymiseIssueHistory {
3069     my $date           = shift;
3070     my $borrowernumber = shift;
3071     my $dbh            = C4::Context->dbh;
3072     my $query          = "
3073         UPDATE old_issues
3074         SET    borrowernumber = ?
3075         WHERE  returndate < ?
3076           AND borrowernumber IS NOT NULL
3077     ";
3078
3079     # The default of 0 does not work due to foreign key constraints
3080     # The anonymisation will fail quietly if AnonymousPatron is not a valid entry
3081     my $anonymouspatron = (C4::Context->preference('AnonymousPatron')) ? C4::Context->preference('AnonymousPatron') : 0;
3082     my @bind_params = ($anonymouspatron, $date);
3083     if (defined $borrowernumber) {
3084        $query .= " AND borrowernumber = ?";
3085        push @bind_params, $borrowernumber;
3086     } else {
3087        $query .= " AND (SELECT privacy FROM borrowers WHERE borrowers.borrowernumber=old_issues.borrowernumber) <> 0";
3088     }
3089     my $sth = $dbh->prepare($query);
3090     $sth->execute(@bind_params);
3091     my $anonymisation_err = $dbh->err;
3092     my $rows_affected = $sth->rows;  ### doublecheck row count return function
3093     return ($rows_affected, $anonymisation_err);
3094 }
3095
3096 =head2 SendCirculationAlert
3097
3098 Send out a C<check-in> or C<checkout> alert using the messaging system.
3099
3100 B<Parameters>:
3101
3102 =over 4
3103
3104 =item type
3105
3106 Valid values for this parameter are: C<CHECKIN> and C<CHECKOUT>.
3107
3108 =item item
3109
3110 Hashref of information about the item being checked in or out.
3111
3112 =item borrower
3113
3114 Hashref of information about the borrower of the item.
3115
3116 =item branch
3117
3118 The branchcode from where the checkout or check-in took place.
3119
3120 =back
3121
3122 B<Example>:
3123
3124     SendCirculationAlert({
3125         type     => 'CHECKOUT',
3126         item     => $item,
3127         borrower => $borrower,
3128         branch   => $branch,
3129     });
3130
3131 =cut
3132
3133 sub SendCirculationAlert {
3134     my ($opts) = @_;
3135     my ($type, $item, $borrower, $branch) =
3136         ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch});
3137     my %message_name = (
3138         CHECKIN  => 'Item_Check_in',
3139         CHECKOUT => 'Item_Checkout',
3140         RENEWAL  => 'Item_Checkout',
3141     );
3142     my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({
3143         borrowernumber => $borrower->{borrowernumber},
3144         message_name   => $message_name{$type},
3145     });
3146     my $issues_table = ( $type eq 'CHECKOUT' || $type eq 'RENEWAL' ) ? 'issues' : 'old_issues';
3147     my $letter =  C4::Letters::GetPreparedLetter (
3148         module => 'circulation',
3149         letter_code => $type,
3150         branchcode => $branch,
3151         tables => {
3152             $issues_table => $item->{itemnumber},
3153             'items'       => $item->{itemnumber},
3154             'biblio'      => $item->{biblionumber},
3155             'biblioitems' => $item->{biblionumber},
3156             'borrowers'   => $borrower,
3157             'branches'    => $branch,
3158         }
3159     ) or return;
3160
3161     my @transports = keys %{ $borrower_preferences->{transports} };
3162     # warn "no transports" unless @transports;
3163     for (@transports) {
3164         # warn "transport: $_";
3165         my $message = C4::Message->find_last_message($borrower, $type, $_);
3166         if (!$message) {
3167             #warn "create new message";
3168             C4::Message->enqueue($letter, $borrower, $_);
3169         } else {
3170             #warn "append to old message";
3171             $message->append($letter);
3172             $message->update;
3173         }
3174     }
3175
3176     return $letter;
3177 }
3178
3179 =head2 updateWrongTransfer
3180
3181   $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
3182
3183 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 
3184
3185 =cut
3186
3187 sub updateWrongTransfer {
3188         my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
3189         my $dbh = C4::Context->dbh;     
3190 # first step validate the actual line of transfert .
3191         my $sth =
3192                 $dbh->prepare(
3193                         "update branchtransfers set datearrived = now(),tobranch=?,comments='wrongtransfer' where itemnumber= ? AND datearrived IS NULL"
3194                 );
3195                 $sth->execute($FromLibrary,$itemNumber);
3196
3197 # second step create a new line of branchtransfer to the right location .
3198         ModItemTransfer($itemNumber, $FromLibrary, $waitingAtLibrary);
3199
3200 #third step changing holdingbranch of item
3201         UpdateHoldingbranch($FromLibrary,$itemNumber);
3202 }
3203
3204 =head2 UpdateHoldingbranch
3205
3206   $items = UpdateHoldingbranch($branch,$itmenumber);
3207
3208 Simple methode for updating hodlingbranch in items BDD line
3209
3210 =cut
3211
3212 sub UpdateHoldingbranch {
3213         my ( $branch,$itemnumber ) = @_;
3214     ModItem({ holdingbranch => $branch }, undef, $itemnumber);
3215 }
3216
3217 =head2 CalcDateDue
3218
3219 $newdatedue = CalcDateDue($startdate,$itemtype,$branchcode,$borrower);
3220
3221 this function calculates the due date given the start date and configured circulation rules,
3222 checking against the holidays calendar as per the 'useDaysMode' syspref.
3223 C<$startdate>   = C4::Dates object representing start date of loan period (assumed to be today)
3224 C<$itemtype>  = itemtype code of item in question
3225 C<$branch>  = location whose calendar to use
3226 C<$borrower> = Borrower object
3227 C<$isrenewal> = Boolean: is true if we want to calculate the date due for a renewal. Else is false.
3228
3229 =cut
3230
3231 sub CalcDateDue {
3232     my ( $startdate, $itemtype, $branch, $borrower, $isrenewal ) = @_;
3233
3234     $isrenewal ||= 0;
3235
3236     # loanlength now a href
3237     my $loanlength =
3238             GetLoanLength( $borrower->{'categorycode'}, $itemtype, $branch );
3239
3240     my $length_key = ( $isrenewal and defined $loanlength->{renewalperiod} )
3241             ? qq{renewalperiod}
3242             : qq{issuelength};
3243
3244     my $datedue;
3245     if ( $startdate ) {
3246         if (ref $startdate ne 'DateTime' ) {
3247             $datedue = dt_from_string($datedue);
3248         } else {
3249             $datedue = $startdate->clone;
3250         }
3251     } else {
3252         $datedue =
3253           DateTime->now( time_zone => C4::Context->tz() )
3254           ->truncate( to => 'minute' );
3255     }
3256
3257
3258     # calculate the datedue as normal
3259     if ( C4::Context->preference('useDaysMode') eq 'Days' )
3260     {    # ignoring calendar
3261         if ( $loanlength->{lengthunit} eq 'hours' ) {
3262             $datedue->add( hours => $loanlength->{$length_key} );
3263         } else {    # days
3264             $datedue->add( days => $loanlength->{$length_key} );
3265             $datedue->set_hour(23);
3266             $datedue->set_minute(59);
3267         }
3268     } else {
3269         my $dur;
3270         if ($loanlength->{lengthunit} eq 'hours') {
3271             $dur = DateTime::Duration->new( hours => $loanlength->{$length_key});
3272         }
3273         else { # days
3274             $dur = DateTime::Duration->new( days => $loanlength->{$length_key});
3275         }
3276         my $calendar = Koha::Calendar->new( branchcode => $branch );
3277         $datedue = $calendar->addDate( $datedue, $dur, $loanlength->{lengthunit} );
3278         if ($loanlength->{lengthunit} eq 'days') {
3279             $datedue->set_hour(23);
3280             $datedue->set_minute(59);
3281         }
3282     }
3283
3284     # if Hard Due Dates are used, retreive them and apply as necessary
3285     my ( $hardduedate, $hardduedatecompare ) =
3286       GetHardDueDate( $borrower->{'categorycode'}, $itemtype, $branch );
3287     if ($hardduedate) {    # hardduedates are currently dates
3288         $hardduedate->truncate( to => 'minute' );
3289         $hardduedate->set_hour(23);
3290         $hardduedate->set_minute(59);
3291         my $cmp = DateTime->compare( $hardduedate, $datedue );
3292
3293 # if the calculated due date is after the 'before' Hard Due Date (ceiling), override
3294 # if the calculated date is before the 'after' Hard Due Date (floor), override
3295 # if the hard due date is set to 'exactly', overrride
3296         if ( $hardduedatecompare == 0 || $hardduedatecompare == $cmp ) {
3297             $datedue = $hardduedate->clone;
3298         }
3299
3300         # in all other cases, keep the date due as it is
3301
3302     }
3303
3304     # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
3305     if ( C4::Context->preference('ReturnBeforeExpiry') ) {
3306         my $expiry_dt = dt_from_string( $borrower->{dateexpiry}, 'iso' );
3307         $expiry_dt->set( hour => 23, minute => 59);
3308         if ( DateTime->compare( $datedue, $expiry_dt ) == 1 ) {
3309             $datedue = $expiry_dt->clone;
3310         }
3311     }
3312
3313     return $datedue;
3314 }
3315
3316
3317 =head2 CheckRepeatableHolidays
3318
3319   $countrepeatable = CheckRepeatableHoliday($itemnumber,$week_day,$branchcode);
3320
3321 This function checks if the date due is a repeatable holiday
3322
3323 C<$date_due>   = returndate calculate with no day check
3324 C<$itemnumber>  = itemnumber
3325 C<$branchcode>  = localisation of issue 
3326
3327 =cut
3328
3329 sub CheckRepeatableHolidays{
3330 my($itemnumber,$week_day,$branchcode)=@_;
3331 my $dbh = C4::Context->dbh;
3332 my $query = qq|SELECT count(*)  
3333         FROM repeatable_holidays 
3334         WHERE branchcode=?
3335         AND weekday=?|;
3336 my $sth = $dbh->prepare($query);
3337 $sth->execute($branchcode,$week_day);
3338 my $result=$sth->fetchrow;
3339 return $result;
3340 }
3341
3342
3343 =head2 CheckSpecialHolidays
3344
3345   $countspecial = CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
3346
3347 This function check if the date is a special holiday
3348
3349 C<$years>   = the years of datedue
3350 C<$month>   = the month of datedue
3351 C<$day>     = the day of datedue
3352 C<$itemnumber>  = itemnumber
3353 C<$branchcode>  = localisation of issue 
3354
3355 =cut
3356
3357 sub CheckSpecialHolidays{
3358 my ($years,$month,$day,$itemnumber,$branchcode) = @_;
3359 my $dbh = C4::Context->dbh;
3360 my $query=qq|SELECT count(*) 
3361              FROM `special_holidays`
3362              WHERE year=?
3363              AND month=?
3364              AND day=?
3365              AND branchcode=?
3366             |;
3367 my $sth = $dbh->prepare($query);
3368 $sth->execute($years,$month,$day,$branchcode);
3369 my $countspecial=$sth->fetchrow ;
3370 return $countspecial;
3371 }
3372
3373 =head2 CheckRepeatableSpecialHolidays
3374
3375   $countspecial = CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
3376
3377 This function check if the date is a repeatble special holidays
3378
3379 C<$month>   = the month of datedue
3380 C<$day>     = the day of datedue
3381 C<$itemnumber>  = itemnumber
3382 C<$branchcode>  = localisation of issue 
3383
3384 =cut
3385
3386 sub CheckRepeatableSpecialHolidays{
3387 my ($month,$day,$itemnumber,$branchcode) = @_;
3388 my $dbh = C4::Context->dbh;
3389 my $query=qq|SELECT count(*) 
3390              FROM `repeatable_holidays`
3391              WHERE month=?
3392              AND day=?
3393              AND branchcode=?
3394             |;
3395 my $sth = $dbh->prepare($query);
3396 $sth->execute($month,$day,$branchcode);
3397 my $countspecial=$sth->fetchrow ;
3398 return $countspecial;
3399 }
3400
3401
3402
3403 sub CheckValidBarcode{
3404 my ($barcode) = @_;
3405 my $dbh = C4::Context->dbh;
3406 my $query=qq|SELECT count(*) 
3407              FROM items 
3408              WHERE barcode=?
3409             |;
3410 my $sth = $dbh->prepare($query);
3411 $sth->execute($barcode);
3412 my $exist=$sth->fetchrow ;
3413 return $exist;
3414 }
3415
3416 =head2 IsBranchTransferAllowed
3417
3418   $allowed = IsBranchTransferAllowed( $toBranch, $fromBranch, $code );
3419
3420 Code is either an itemtype or collection doe depending on the pref BranchTransferLimitsType
3421
3422 =cut
3423
3424 sub IsBranchTransferAllowed {
3425         my ( $toBranch, $fromBranch, $code ) = @_;
3426
3427         if ( $toBranch eq $fromBranch ) { return 1; } ## Short circuit for speed.
3428         
3429         my $limitType = C4::Context->preference("BranchTransferLimitsType");   
3430         my $dbh = C4::Context->dbh;
3431             
3432         my $sth = $dbh->prepare("SELECT * FROM branch_transfer_limits WHERE toBranch = ? AND fromBranch = ? AND $limitType = ?");
3433         $sth->execute( $toBranch, $fromBranch, $code );
3434         my $limit = $sth->fetchrow_hashref();
3435                         
3436         ## If a row is found, then that combination is not allowed, if no matching row is found, then the combination *is allowed*
3437         if ( $limit->{'limitId'} ) {
3438                 return 0;
3439         } else {
3440                 return 1;
3441         }
3442 }                                                        
3443
3444 =head2 CreateBranchTransferLimit
3445
3446   CreateBranchTransferLimit( $toBranch, $fromBranch, $code );
3447
3448 $code is either itemtype or collection code depending on what the pref BranchTransferLimitsType is set to.
3449
3450 =cut
3451
3452 sub CreateBranchTransferLimit {
3453    my ( $toBranch, $fromBranch, $code ) = @_;
3454    return unless defined($toBranch) && defined($fromBranch);
3455    my $limitType = C4::Context->preference("BranchTransferLimitsType");
3456    
3457    my $dbh = C4::Context->dbh;
3458    
3459    my $sth = $dbh->prepare("INSERT INTO branch_transfer_limits ( $limitType, toBranch, fromBranch ) VALUES ( ?, ?, ? )");
3460    return $sth->execute( $code, $toBranch, $fromBranch );
3461 }
3462
3463 =head2 DeleteBranchTransferLimits
3464
3465     my $result = DeleteBranchTransferLimits($frombranch);
3466
3467 Deletes all the library transfer limits for one library.  Returns the
3468 number of limits deleted, 0e0 if no limits were deleted, or undef if
3469 no arguments are supplied.
3470
3471 =cut
3472
3473 sub DeleteBranchTransferLimits {
3474     my $branch = shift;
3475     return unless defined $branch;
3476     my $dbh    = C4::Context->dbh;
3477     my $sth    = $dbh->prepare("DELETE FROM branch_transfer_limits WHERE fromBranch = ?");
3478     return $sth->execute($branch);
3479 }
3480
3481 sub ReturnLostItem{
3482     my ( $borrowernumber, $itemnum ) = @_;
3483
3484     MarkIssueReturned( $borrowernumber, $itemnum );
3485     my $borrower = C4::Members::GetMember( 'borrowernumber'=>$borrowernumber );
3486     my $item = C4::Items::GetItem( $itemnum );
3487     my $old_note = ($item->{'paidfor'} && ($item->{'paidfor'} ne q{})) ? $item->{'paidfor'}.' / ' : q{};
3488     my @datearr = localtime(time);
3489     my $date = ( 1900 + $datearr[5] ) . "-" . ( $datearr[4] + 1 ) . "-" . $datearr[3];
3490     my $bor = "$borrower->{'firstname'} $borrower->{'surname'} $borrower->{'cardnumber'}";
3491     ModItem({ paidfor =>  $old_note."Paid for by $bor $date" }, undef, $itemnum);
3492 }
3493
3494
3495 sub LostItem{
3496     my ($itemnumber, $mark_returned) = @_;
3497
3498     my $dbh = C4::Context->dbh();
3499     my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title 
3500                            FROM issues 
3501                            JOIN items USING (itemnumber) 
3502                            JOIN biblio USING (biblionumber)
3503                            WHERE issues.itemnumber=?");
3504     $sth->execute($itemnumber);
3505     my $issues=$sth->fetchrow_hashref();
3506
3507     # If a borrower lost the item, add a replacement cost to the their record
3508     if ( my $borrowernumber = $issues->{borrowernumber} ){
3509         my $borrower = C4::Members::GetMemberDetails( $borrowernumber );
3510
3511         if (C4::Context->preference('WhenLostForgiveFine')){
3512             my $fix = _FixOverduesOnReturn($borrowernumber, $itemnumber, 1, 0); # 1, 0 = exemptfine, no-dropbox
3513             defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $itemnumber...) failed!";  # zero is OK, check defined
3514         }
3515         if (C4::Context->preference('WhenLostChargeReplacementFee')){
3516             C4::Accounts::chargelostitem($borrowernumber, $itemnumber, $issues->{'replacementprice'}, "Lost Item $issues->{'title'} $issues->{'barcode'}");
3517             #FIXME : Should probably have a way to distinguish this from an item that really was returned.
3518             #warn " $issues->{'borrowernumber'}  /  $itemnumber ";
3519         }
3520
3521         MarkIssueReturned($borrowernumber,$itemnumber,undef,undef,$borrower->{'privacy'}) if $mark_returned;
3522     }
3523 }
3524
3525 sub GetOfflineOperations {
3526     my $dbh = C4::Context->dbh;
3527     my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE branchcode=? ORDER BY timestamp");
3528     $sth->execute(C4::Context->userenv->{'branch'});
3529     my $results = $sth->fetchall_arrayref({});
3530     return $results;
3531 }
3532
3533 sub GetOfflineOperation {
3534     my $operationid = shift;
3535     return unless $operationid;
3536     my $dbh = C4::Context->dbh;
3537     my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE operationid=?");
3538     $sth->execute( $operationid );
3539     return $sth->fetchrow_hashref;
3540 }
3541
3542 sub AddOfflineOperation {
3543     my ( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount ) = @_;
3544     my $dbh = C4::Context->dbh;
3545     my $sth = $dbh->prepare("INSERT INTO pending_offline_operations (userid, branchcode, timestamp, action, barcode, cardnumber, amount) VALUES(?,?,?,?,?,?,?)");
3546     $sth->execute( $userid, $branchcode, $timestamp, $action, $barcode, $cardnumber, $amount );
3547     return "Added.";
3548 }
3549
3550 sub DeleteOfflineOperation {
3551     my $dbh = C4::Context->dbh;
3552     my $sth = $dbh->prepare("DELETE FROM pending_offline_operations WHERE operationid=?");
3553     $sth->execute( shift );
3554     return "Deleted.";
3555 }
3556
3557 sub ProcessOfflineOperation {
3558     my $operation = shift;
3559
3560     my $report;
3561     if ( $operation->{action} eq 'return' ) {
3562         $report = ProcessOfflineReturn( $operation );
3563     } elsif ( $operation->{action} eq 'issue' ) {
3564         $report = ProcessOfflineIssue( $operation );
3565     } elsif ( $operation->{action} eq 'payment' ) {
3566         $report = ProcessOfflinePayment( $operation );
3567     }
3568
3569     DeleteOfflineOperation( $operation->{operationid} ) if $operation->{operationid};
3570
3571     return $report;
3572 }
3573
3574 sub ProcessOfflineReturn {
3575     my $operation = shift;
3576
3577     my $itemnumber = C4::Items::GetItemnumberFromBarcode( $operation->{barcode} );
3578
3579     if ( $itemnumber ) {
3580         my $issue = GetOpenIssue( $itemnumber );
3581         if ( $issue ) {
3582             MarkIssueReturned(
3583                 $issue->{borrowernumber},
3584                 $itemnumber,
3585                 undef,
3586                 $operation->{timestamp},
3587             );
3588             ModItem(
3589                 { renewals => 0, onloan => undef },
3590                 $issue->{'biblionumber'},
3591                 $itemnumber
3592             );
3593             return "Success.";
3594         } else {
3595             return "Item not issued.";
3596         }
3597     } else {
3598         return "Item not found.";
3599     }
3600 }
3601
3602 sub ProcessOfflineIssue {
3603     my $operation = shift;
3604
3605     my $borrower = C4::Members::GetMemberDetails( undef, $operation->{cardnumber} ); # Get borrower from operation cardnumber
3606
3607     if ( $borrower->{borrowernumber} ) {
3608         my $itemnumber = C4::Items::GetItemnumberFromBarcode( $operation->{barcode} );
3609         unless ($itemnumber) {
3610             return "Barcode not found.";
3611         }
3612         my $issue = GetOpenIssue( $itemnumber );
3613
3614         if ( $issue and ( $issue->{borrowernumber} ne $borrower->{borrowernumber} ) ) { # Item already issued to another borrower, mark it returned
3615             MarkIssueReturned(
3616                 $issue->{borrowernumber},
3617                 $itemnumber,
3618                 undef,
3619                 $operation->{timestamp},
3620             );
3621         }
3622         AddIssue(
3623             $borrower,
3624             $operation->{'barcode'},
3625             undef,
3626             1,
3627             $operation->{timestamp},
3628             undef,
3629         );
3630         return "Success.";
3631     } else {
3632         return "Borrower not found.";
3633     }
3634 }
3635
3636 sub ProcessOfflinePayment {
3637     my $operation = shift;
3638
3639     my $borrower = C4::Members::GetMemberDetails( undef, $operation->{cardnumber} ); # Get borrower from operation cardnumber
3640     my $amount = $operation->{amount};
3641
3642     recordpayment( $borrower->{borrowernumber}, $amount );
3643
3644     return "Success."
3645 }
3646
3647
3648 =head2 TransferSlip
3649
3650   TransferSlip($user_branch, $itemnumber, $to_branch)
3651
3652   Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
3653
3654 =cut
3655
3656 sub TransferSlip {
3657     my ($branch, $itemnumber, $to_branch) = @_;
3658
3659     my $item =  GetItem( $itemnumber )
3660       or return;
3661
3662     my $pulldate = C4::Dates->new();
3663
3664     return C4::Letters::GetPreparedLetter (
3665         module => 'circulation',
3666         letter_code => 'TRANSFERSLIP',
3667         branchcode => $branch,
3668         tables => {
3669             'branches'    => $to_branch,
3670             'biblio'      => $item->{biblionumber},
3671             'items'       => $item,
3672         },
3673     );
3674 }
3675
3676 =head2 CheckIfIssuedToPatron
3677
3678   CheckIfIssuedToPatron($borrowernumber, $biblionumber)
3679
3680   Return 1 if any record item is issued to patron, otherwise return 0
3681
3682 =cut
3683
3684 sub CheckIfIssuedToPatron {
3685     my ($borrowernumber, $biblionumber) = @_;
3686
3687     my $items = GetItemsByBiblioitemnumber($biblionumber);
3688
3689     foreach my $item (@{$items}) {
3690         return 1 if ($item->{borrowernumber} && $item->{borrowernumber} eq $borrowernumber);
3691     }
3692
3693     return;
3694 }
3695
3696 =head2 IsItemIssued
3697
3698   IsItemIssued( $itemnumber )
3699
3700   Return 1 if the item is on loan, otherwise return 0
3701
3702 =cut
3703
3704 sub IsItemIssued {
3705     my $itemnumber = shift;
3706     my $dbh = C4::Context->dbh;
3707     my $sth = $dbh->prepare(q{
3708         SELECT COUNT(*)
3709         FROM issues
3710         WHERE itemnumber = ?
3711     });
3712     $sth->execute($itemnumber);
3713     return $sth->fetchrow;
3714 }
3715
3716 sub GetAgeRestriction {
3717     my ($record_restrictions) = @_;
3718     my $markers = C4::Context->preference('AgeRestrictionMarker');
3719
3720     # Split $record_restrictions to something like FSK 16 or PEGI 6
3721     my @values = split ' ', uc($record_restrictions);
3722     return unless @values;
3723
3724     # Search first occurence of one of the markers
3725     my @markers = split /\|/, uc($markers);
3726     return unless @markers;
3727
3728     my $index            = 0;
3729     my $restriction_year = 0;
3730     for my $value (@values) {
3731         $index++;
3732         for my $marker (@markers) {
3733             $marker =~ s/^\s+//;    #remove leading spaces
3734             $marker =~ s/\s+$//;    #remove trailing spaces
3735             if ( $marker eq $value ) {
3736                 if ( $index <= $#values ) {
3737                     $restriction_year += $values[$index];
3738                 }
3739                 last;
3740             }
3741             elsif ( $value =~ /^\Q$marker\E(\d+)$/ ) {
3742
3743                 # Perhaps it is something like "K16" (as in Finland)
3744                 $restriction_year += $1;
3745                 last;
3746             }
3747         }
3748         last if ( $restriction_year > 0 );
3749     }
3750
3751     return $restriction_year;
3752 }
3753
3754 1;
3755
3756 __END__
3757
3758 =head1 AUTHOR
3759
3760 Koha Development Team <http://koha-community.org/>
3761
3762 =cut
3763