Merge remote-tracking branch 'origin/new/bug_6291'
[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 C4::Context;
25 use C4::Stats;
26 use C4::Reserves;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Members;
30 use C4::Dates;
31 use C4::Calendar;
32 use C4::Accounts;
33 use C4::ItemCirculationAlertPreference;
34 use C4::Dates qw(format_date);
35 use C4::Message;
36 use C4::Debug;
37 use Date::Calc qw(
38   Today
39   Today_and_Now
40   Add_Delta_YM
41   Add_Delta_DHMS
42   Date_to_Days
43   Day_of_Week
44   Add_Delta_Days        
45   check_date
46 );
47 use POSIX qw(strftime);
48 use C4::Branch; # GetBranches
49 use C4::Log; # logaction
50
51 use Data::Dumper;
52
53 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
54
55 BEGIN {
56         require Exporter;
57         $VERSION = 3.02;        # for version checking
58         @ISA    = qw(Exporter);
59
60         # FIXME subs that should probably be elsewhere
61         push @EXPORT, qw(
62                 &barcodedecode
63         &LostItem
64         &ReturnLostItem
65         );
66
67         # subs to deal with issuing a book
68         push @EXPORT, qw(
69                 &CanBookBeIssued
70                 &CanBookBeRenewed
71                 &AddIssue
72                 &AddRenewal
73                 &GetRenewCount
74                 &GetItemIssue
75                 &GetItemIssues
76                 &GetIssuingCharges
77                 &GetIssuingRule
78         &GetBranchBorrowerCircRule
79         &GetBranchItemRule
80                 &GetBiblioIssues
81                 &GetOpenIssue
82                 &AnonymiseIssueHistory
83         );
84
85         # subs to deal with returns
86         push @EXPORT, qw(
87                 &AddReturn
88         &MarkIssueReturned
89         );
90
91         # subs to deal with transfers
92         push @EXPORT, qw(
93                 &transferbook
94                 &GetTransfers
95                 &GetTransfersFromTo
96                 &updateWrongTransfer
97                 &DeleteTransfer
98                 &IsBranchTransferAllowed
99                 &CreateBranchTransferLimit
100                 &DeleteBranchTransferLimits
101         );
102 }
103
104 =head1 NAME
105
106 C4::Circulation - Koha circulation module
107
108 =head1 SYNOPSIS
109
110 use C4::Circulation;
111
112 =head1 DESCRIPTION
113
114 The functions in this module deal with circulation, issues, and
115 returns, as well as general information about the library.
116 Also deals with stocktaking.
117
118 =head1 FUNCTIONS
119
120 =head2 barcodedecode
121
122   $str = &barcodedecode($barcode, [$filter]);
123
124 Generic filter function for barcode string.
125 Called on every circ if the System Pref itemBarcodeInputFilter is set.
126 Will do some manipulation of the barcode for systems that deliver a barcode
127 to circulation.pl that differs from the barcode stored for the item.
128 For proper functioning of this filter, calling the function on the 
129 correct barcode string (items.barcode) should return an unaltered barcode.
130
131 The optional $filter argument is to allow for testing or explicit 
132 behavior that ignores the System Pref.  Valid values are the same as the 
133 System Pref options.
134
135 =cut
136
137 # FIXME -- the &decode fcn below should be wrapped into this one.
138 # FIXME -- these plugins should be moved out of Circulation.pm
139 #
140 sub barcodedecode {
141     my ($barcode, $filter) = @_;
142     my $branch = C4::Branch::mybranch();
143     $filter = C4::Context->preference('itemBarcodeInputFilter') unless $filter;
144     $filter or return $barcode;     # ensure filter is defined, else return untouched barcode
145         if ($filter eq 'whitespace') {
146                 $barcode =~ s/\s//g;
147         } elsif ($filter eq 'cuecat') {
148                 chomp($barcode);
149             my @fields = split( /\./, $barcode );
150             my @results = map( decode($_), @fields[ 1 .. $#fields ] );
151             ($#results == 2) and return $results[2];
152         } elsif ($filter eq 'T-prefix') {
153                 if ($barcode =~ /^[Tt](\d)/) {
154                         (defined($1) and $1 eq '0') and return $barcode;
155             $barcode = substr($barcode, 2) + 0;     # FIXME: probably should be substr($barcode, 1)
156                 }
157         return sprintf("T%07d", $barcode);
158         # FIXME: $barcode could be "T1", causing warning: substr outside of string
159         # Why drop the nonzero digit after the T?
160         # Why pass non-digits (or empty string) to "T%07d"?
161         } elsif ($filter eq 'libsuite8') {
162                 unless($barcode =~ m/^($branch)-/i){    #if barcode starts with branch code its in Koha style. Skip it.
163                         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
164                                 $barcode =~ s/^[0]*(\d+)$/$branch-b-$1/i;
165                         }else{
166                                 $barcode =~ s/^(\D+)[0]*(\d+)$/$branch-$1-$2/i;
167                         }
168                 }
169         }
170     return $barcode;    # return barcode, modified or not
171 }
172
173 =head2 decode
174
175   $str = &decode($chunk);
176
177 Decodes a segment of a string emitted by a CueCat barcode scanner and
178 returns it.
179
180 FIXME: Should be replaced with Barcode::Cuecat from CPAN
181 or Javascript based decoding on the client side.
182
183 =cut
184
185 sub decode {
186     my ($encoded) = @_;
187     my $seq =
188       'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-';
189     my @s = map { index( $seq, $_ ); } split( //, $encoded );
190     my $l = ( $#s + 1 ) % 4;
191     if ($l) {
192         if ( $l == 1 ) {
193             # warn "Error: Cuecat decode parsing failed!";
194             return;
195         }
196         $l = 4 - $l;
197         $#s += $l;
198     }
199     my $r = '';
200     while ( $#s >= 0 ) {
201         my $n = ( ( $s[0] << 6 | $s[1] ) << 6 | $s[2] ) << 6 | $s[3];
202         $r .=
203             chr( ( $n >> 16 ) ^ 67 )
204          .chr( ( $n >> 8 & 255 ) ^ 67 )
205          .chr( ( $n & 255 ) ^ 67 );
206         @s = @s[ 4 .. $#s ];
207     }
208     $r = substr( $r, 0, length($r) - $l );
209     return $r;
210 }
211
212 =head2 transferbook
213
214   ($dotransfer, $messages, $iteminformation) = &transferbook($newbranch, 
215                                             $barcode, $ignore_reserves);
216
217 Transfers an item to a new branch. If the item is currently on loan, it is automatically returned before the actual transfer.
218
219 C<$newbranch> is the code for the branch to which the item should be transferred.
220
221 C<$barcode> is the barcode of the item to be transferred.
222
223 If C<$ignore_reserves> is true, C<&transferbook> ignores reserves.
224 Otherwise, if an item is reserved, the transfer fails.
225
226 Returns three values:
227
228 =over
229
230 =item $dotransfer 
231
232 is true if the transfer was successful.
233
234 =item $messages
235
236 is a reference-to-hash which may have any of the following keys:
237
238 =over
239
240 =item C<BadBarcode>
241
242 There is no item in the catalog with the given barcode. The value is C<$barcode>.
243
244 =item C<IsPermanent>
245
246 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.
247
248 =item C<DestinationEqualsHolding>
249
250 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.
251
252 =item C<WasReturned>
253
254 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.
255
256 =item C<ResFound>
257
258 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>.
259
260 =item C<WasTransferred>
261
262 The item was eligible to be transferred. Barring problems communicating with the database, the transfer should indeed have succeeded. The value should be ignored.
263
264 =back
265
266 =back
267
268 =cut
269
270 sub transferbook {
271     my ( $tbr, $barcode, $ignoreRs ) = @_;
272     my $messages;
273     my $dotransfer      = 1;
274     my $branches        = GetBranches();
275     my $itemnumber = GetItemnumberFromBarcode( $barcode );
276     my $issue      = GetItemIssue($itemnumber);
277     my $biblio = GetBiblioFromItemNumber($itemnumber);
278
279     # bad barcode..
280     if ( not $itemnumber ) {
281         $messages->{'BadBarcode'} = $barcode;
282         $dotransfer = 0;
283     }
284
285     # get branches of book...
286     my $hbr = $biblio->{'homebranch'};
287     my $fbr = $biblio->{'holdingbranch'};
288
289     # if using Branch Transfer Limits
290     if ( C4::Context->preference("UseBranchTransferLimits") == 1 ) {
291         if ( C4::Context->preference("item-level_itypes") && C4::Context->preference("BranchTransferLimitsType") eq 'itemtype' ) {
292             if ( ! IsBranchTransferAllowed( $tbr, $fbr, $biblio->{'itype'} ) ) {
293                 $messages->{'NotAllowed'} = $tbr . "::" . $biblio->{'itype'};
294                 $dotransfer = 0;
295             }
296         } elsif ( ! IsBranchTransferAllowed( $tbr, $fbr, $biblio->{ C4::Context->preference("BranchTransferLimitsType") } ) ) {
297             $messages->{'NotAllowed'} = $tbr . "::" . $biblio->{ C4::Context->preference("BranchTransferLimitsType") };
298             $dotransfer = 0;
299         }
300     }
301
302     # if is permanent...
303     if ( $hbr && $branches->{$hbr}->{'PE'} ) {
304         $messages->{'IsPermanent'} = $hbr;
305         $dotransfer = 0;
306     }
307
308     # can't transfer book if is already there....
309     if ( $fbr eq $tbr ) {
310         $messages->{'DestinationEqualsHolding'} = 1;
311         $dotransfer = 0;
312     }
313
314     # check if it is still issued to someone, return it...
315     if ($issue->{borrowernumber}) {
316         AddReturn( $barcode, $fbr );
317         $messages->{'WasReturned'} = $issue->{borrowernumber};
318     }
319
320     # find reserves.....
321     # That'll save a database query.
322     my ( $resfound, $resrec ) =
323       CheckReserves( $itemnumber );
324     if ( $resfound and not $ignoreRs ) {
325         $resrec->{'ResFound'} = $resfound;
326
327         #         $messages->{'ResFound'} = $resrec;
328         $dotransfer = 1;
329     }
330
331     #actually do the transfer....
332     if ($dotransfer) {
333         ModItemTransfer( $itemnumber, $fbr, $tbr );
334
335         # don't need to update MARC anymore, we do it in batch now
336         $messages->{'WasTransfered'} = 1;
337
338     }
339     ModDateLastSeen( $itemnumber );
340     return ( $dotransfer, $messages, $biblio );
341 }
342
343
344 sub TooMany {
345     my $borrower        = shift;
346     my $biblionumber = shift;
347         my $item                = shift;
348     my $cat_borrower    = $borrower->{'categorycode'};
349     my $dbh             = C4::Context->dbh;
350         my $branch;
351         # Get which branchcode we need
352         $branch = _GetCircControlBranch($item,$borrower);
353         my $type = (C4::Context->preference('item-level_itypes')) 
354                         ? $item->{'itype'}         # item-level
355                         : $item->{'itemtype'};     # biblio-level
356  
357     # given branch, patron category, and item type, determine
358     # applicable issuing rule
359     my $issuing_rule = GetIssuingRule($cat_borrower, $type, $branch);
360
361     # if a rule is found and has a loan limit set, count
362     # how many loans the patron already has that meet that
363     # rule
364     if (defined($issuing_rule) and defined($issuing_rule->{'maxissueqty'})) {
365         my @bind_params;
366         my $count_query = "SELECT COUNT(*) FROM issues
367                            JOIN items USING (itemnumber) ";
368
369         my $rule_itemtype = $issuing_rule->{itemtype};
370         if ($rule_itemtype eq "*") {
371             # matching rule has the default item type, so count only
372             # those existing loans that don't fall under a more
373             # specific rule
374             if (C4::Context->preference('item-level_itypes')) {
375                 $count_query .= " WHERE items.itype NOT IN (
376                                     SELECT itemtype FROM issuingrules
377                                     WHERE branchcode = ?
378                                     AND   (categorycode = ? OR categorycode = ?)
379                                     AND   itemtype <> '*'
380                                   ) ";
381             } else { 
382                 $count_query .= " JOIN  biblioitems USING (biblionumber) 
383                                   WHERE biblioitems.itemtype NOT IN (
384                                     SELECT itemtype FROM issuingrules
385                                     WHERE branchcode = ?
386                                     AND   (categorycode = ? OR categorycode = ?)
387                                     AND   itemtype <> '*'
388                                   ) ";
389             }
390             push @bind_params, $issuing_rule->{branchcode};
391             push @bind_params, $issuing_rule->{categorycode};
392             push @bind_params, $cat_borrower;
393         } else {
394             # rule has specific item type, so count loans of that
395             # specific item type
396             if (C4::Context->preference('item-level_itypes')) {
397                 $count_query .= " WHERE items.itype = ? ";
398             } else { 
399                 $count_query .= " JOIN  biblioitems USING (biblionumber) 
400                                   WHERE biblioitems.itemtype= ? ";
401             }
402             push @bind_params, $type;
403         }
404
405         $count_query .= " AND borrowernumber = ? ";
406         push @bind_params, $borrower->{'borrowernumber'};
407         my $rule_branch = $issuing_rule->{branchcode};
408         if ($rule_branch ne "*") {
409             if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
410                 $count_query .= " AND issues.branchcode = ? ";
411                 push @bind_params, $branch;
412             } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
413                 ; # if branch is the patron's home branch, then count all loans by patron
414             } else {
415                 $count_query .= " AND items.homebranch = ? ";
416                 push @bind_params, $branch;
417             }
418         }
419
420         my $count_sth = $dbh->prepare($count_query);
421         $count_sth->execute(@bind_params);
422         my ($current_loan_count) = $count_sth->fetchrow_array;
423
424         my $max_loans_allowed = $issuing_rule->{'maxissueqty'};
425         if ($current_loan_count >= $max_loans_allowed) {
426             return ($current_loan_count, $max_loans_allowed);
427         }
428     }
429
430     # Now count total loans against the limit for the branch
431     my $branch_borrower_circ_rule = GetBranchBorrowerCircRule($branch, $cat_borrower);
432     if (defined($branch_borrower_circ_rule->{maxissueqty})) {
433         my @bind_params = ();
434         my $branch_count_query = "SELECT COUNT(*) FROM issues 
435                                   JOIN items USING (itemnumber)
436                                   WHERE borrowernumber = ? ";
437         push @bind_params, $borrower->{borrowernumber};
438
439         if (C4::Context->preference('CircControl') eq 'PickupLibrary') {
440             $branch_count_query .= " AND issues.branchcode = ? ";
441             push @bind_params, $branch;
442         } elsif (C4::Context->preference('CircControl') eq 'PatronLibrary') {
443             ; # if branch is the patron's home branch, then count all loans by patron
444         } else {
445             $branch_count_query .= " AND items.homebranch = ? ";
446             push @bind_params, $branch;
447         }
448         my $branch_count_sth = $dbh->prepare($branch_count_query);
449         $branch_count_sth->execute(@bind_params);
450         my ($current_loan_count) = $branch_count_sth->fetchrow_array;
451
452         my $max_loans_allowed = $branch_borrower_circ_rule->{maxissueqty};
453         if ($current_loan_count >= $max_loans_allowed) {
454             return ($current_loan_count, $max_loans_allowed);
455         }
456     }
457
458     # OK, the patron can issue !!!
459     return;
460 }
461
462 =head2 itemissues
463
464   @issues = &itemissues($biblioitemnumber, $biblio);
465
466 Looks up information about who has borrowed the bookZ<>(s) with the
467 given biblioitemnumber.
468
469 C<$biblio> is ignored.
470
471 C<&itemissues> returns an array of references-to-hash. The keys
472 include the fields from the C<items> table in the Koha database.
473 Additional keys include:
474
475 =over 4
476
477 =item C<date_due>
478
479 If the item is currently on loan, this gives the due date.
480
481 If the item is not on loan, then this is either "Available" or
482 "Cancelled", if the item has been withdrawn.
483
484 =item C<card>
485
486 If the item is currently on loan, this gives the card number of the
487 patron who currently has the item.
488
489 =item C<timestamp0>, C<timestamp1>, C<timestamp2>
490
491 These give the timestamp for the last three times the item was
492 borrowed.
493
494 =item C<card0>, C<card1>, C<card2>
495
496 The card number of the last three patrons who borrowed this item.
497
498 =item C<borrower0>, C<borrower1>, C<borrower2>
499
500 The borrower number of the last three patrons who borrowed this item.
501
502 =back
503
504 =cut
505
506 #'
507 sub itemissues {
508     my ( $bibitem, $biblio ) = @_;
509     my $dbh = C4::Context->dbh;
510     my $sth =
511       $dbh->prepare("Select * from items where items.biblioitemnumber = ?")
512       || die $dbh->errstr;
513     my $i = 0;
514     my @results;
515
516     $sth->execute($bibitem) || die $sth->errstr;
517
518     while ( my $data = $sth->fetchrow_hashref ) {
519
520         # Find out who currently has this item.
521         # FIXME - Wouldn't it be better to do this as a left join of
522         # some sort? Currently, this code assumes that if
523         # fetchrow_hashref() fails, then the book is on the shelf.
524         # fetchrow_hashref() can fail for any number of reasons (e.g.,
525         # database server crash), not just because no items match the
526         # search criteria.
527         my $sth2 = $dbh->prepare(
528             "SELECT * FROM issues
529                 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
530                 WHERE itemnumber = ?
531             "
532         );
533
534         $sth2->execute( $data->{'itemnumber'} );
535         if ( my $data2 = $sth2->fetchrow_hashref ) {
536             $data->{'date_due'} = $data2->{'date_due'};
537             $data->{'card'}     = $data2->{'cardnumber'};
538             $data->{'borrower'} = $data2->{'borrowernumber'};
539         }
540         else {
541             $data->{'date_due'} = ($data->{'wthdrawn'} eq '1') ? 'Cancelled' : 'Available';
542         }
543
544
545         # Find the last 3 people who borrowed this item.
546         $sth2 = $dbh->prepare(
547             "SELECT * FROM old_issues
548                 LEFT JOIN borrowers ON  issues.borrowernumber = borrowers.borrowernumber
549                 WHERE itemnumber = ?
550                 ORDER BY returndate DESC,timestamp DESC"
551         );
552
553         $sth2->execute( $data->{'itemnumber'} );
554         for ( my $i2 = 0 ; $i2 < 2 ; $i2++ )
555         {    # FIXME : error if there is less than 3 pple borrowing this item
556             if ( my $data2 = $sth2->fetchrow_hashref ) {
557                 $data->{"timestamp$i2"} = $data2->{'timestamp'};
558                 $data->{"card$i2"}      = $data2->{'cardnumber'};
559                 $data->{"borrower$i2"}  = $data2->{'borrowernumber'};
560             }    # if
561         }    # for
562
563         $results[$i] = $data;
564         $i++;
565     }
566
567     return (@results);
568 }
569
570 =head2 CanBookBeIssued
571
572   ( $issuingimpossible, $needsconfirmation ) =  CanBookBeIssued( $borrower, 
573                                       $barcode, $duedatespec, $inprocess );
574
575 Check if a book can be issued.
576
577 C<$issuingimpossible> and C<$needsconfirmation> are some hashref.
578
579 =over 4
580
581 =item C<$borrower> hash with borrower informations (from GetMember or GetMemberDetails)
582
583 =item C<$barcode> is the bar code of the book being issued.
584
585 =item C<$duedatespec> is a C4::Dates object.
586
587 =item C<$inprocess>
588
589 =back
590
591 Returns :
592
593 =over 4
594
595 =item C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
596 Possible values are :
597
598 =back
599
600 =head3 INVALID_DATE 
601
602 sticky due date is invalid
603
604 =head3 GNA
605
606 borrower gone with no address
607
608 =head3 CARD_LOST
609
610 borrower declared it's card lost
611
612 =head3 DEBARRED
613
614 borrower debarred
615
616 =head3 UNKNOWN_BARCODE
617
618 barcode unknown
619
620 =head3 NOT_FOR_LOAN
621
622 item is not for loan
623
624 =head3 WTHDRAWN
625
626 item withdrawn.
627
628 =head3 RESTRICTED
629
630 item is restricted (set by ??)
631
632 C<$needsconfirmation> a reference to a hash. It contains reasons why the loan 
633 could be prevented, but ones that can be overriden by the operator.
634
635 Possible values are :
636
637 =head3 DEBT
638
639 borrower has debts.
640
641 =head3 RENEW_ISSUE
642
643 renewing, not issuing
644
645 =head3 ISSUED_TO_ANOTHER
646
647 issued to someone else.
648
649 =head3 RESERVED
650
651 reserved for someone else.
652
653 =head3 INVALID_DATE
654
655 sticky due date is invalid or due date in the past
656
657 =head3 TOO_MANY
658
659 if the borrower borrows to much things
660
661 =cut
662
663 sub CanBookBeIssued {
664     my ( $borrower, $barcode, $duedate, $inprocess ) = @_;
665     my %needsconfirmation;    # filled with problems that needs confirmations
666     my %issuingimpossible;    # filled with problems that causes the issue to be IMPOSSIBLE
667     my $item = GetItem(GetItemnumberFromBarcode( $barcode ));
668     my $issue = GetItemIssue($item->{itemnumber});
669         my $biblioitem = GetBiblioItemData($item->{biblioitemnumber});
670         $item->{'itemtype'}=$item->{'itype'}; 
671     my $dbh             = C4::Context->dbh;
672
673     # MANDATORY CHECKS - unless item exists, nothing else matters
674     unless ( $item->{barcode} ) {
675         $issuingimpossible{UNKNOWN_BARCODE} = 1;
676     }
677         return ( \%issuingimpossible, \%needsconfirmation ) if %issuingimpossible;
678
679     #
680     # DUE DATE is OK ? -- should already have checked.
681     #
682     unless ( $duedate ) {
683         my $issuedate = strftime( "%Y-%m-%d", localtime );
684
685         my $branch = _GetCircControlBranch($item,$borrower);
686         my $itype = ( C4::Context->preference('item-level_itypes') ) ? $item->{'itype'} : $biblioitem->{'itemtype'};
687         $duedate = CalcDateDue( C4::Dates->new( $issuedate, 'iso' ), $itype, $branch, $borrower );
688
689         # Offline circ calls AddIssue directly, doesn't run through here
690         #  So issuingimpossible should be ok.
691     }
692     if ($duedate) {
693         $needsconfirmation{INVALID_DATE} = $duedate->output('syspref')
694           unless $duedate->output('iso') ge C4::Dates->today('iso');
695     } else {
696         $issuingimpossible{INVALID_DATE} = $duedate->output('syspref');
697     }
698
699     #
700     # BORROWER STATUS
701     #
702     if ( $borrower->{'category_type'} eq 'X' && (  $item->{barcode}  )) { 
703         # stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1  .
704         &UpdateStats(C4::Context->userenv->{'branch'},'localuse','','',$item->{'itemnumber'},$item->{'itemtype'},$borrower->{'borrowernumber'});
705         ModDateLastSeen( $item->{'itemnumber'} );
706         return( { STATS => 1 }, {});
707     }
708     if ( $borrower->{flags}->{GNA} ) {
709         $issuingimpossible{GNA} = 1;
710     }
711     if ( $borrower->{flags}->{'LOST'} ) {
712         $issuingimpossible{CARD_LOST} = 1;
713     }
714     if ( $borrower->{flags}->{'DBARRED'} ) {
715         $issuingimpossible{DEBARRED} = 1;
716     }
717     if ( $borrower->{'dateexpiry'} eq '0000-00-00') {
718         $issuingimpossible{EXPIRED} = 1;
719     } else {
720         my @expirydate=  split /-/,$borrower->{'dateexpiry'};
721         if($expirydate[0]==0 || $expirydate[1]==0|| $expirydate[2]==0 ||
722             Date_to_Days(Today) > Date_to_Days( @expirydate )) {
723             $issuingimpossible{EXPIRED} = 1;                                   
724         }
725     }
726     #
727     # BORROWER STATUS
728     #
729
730     # DEBTS
731     my ($amount) =
732       C4::Members::GetMemberAccountRecords( $borrower->{'borrowernumber'}, '' && $duedate->output('iso') );
733     my $amountlimit = C4::Context->preference("noissuescharge");
734     my $allowfineoverride = C4::Context->preference("AllowFineOverride");
735     my $allfinesneedoverride = C4::Context->preference("AllFinesNeedOverride");
736     if ( C4::Context->preference("IssuingInProcess") ) {
737         if ( $amount > $amountlimit && !$inprocess && !$allowfineoverride) {
738             $issuingimpossible{DEBT} = sprintf( "%.2f", $amount );
739         } elsif ( $amount > $amountlimit && !$inprocess && $allowfineoverride) {
740             $needsconfirmation{DEBT} = sprintf( "%.2f", $amount );
741         } elsif ( $allfinesneedoverride && $amount > 0 && $amount <= $amountlimit && !$inprocess ) {
742             $needsconfirmation{DEBT} = sprintf( "%.2f", $amount );
743         }
744     }
745     else {
746         if ( $amount > $amountlimit && $allowfineoverride ) {
747             $needsconfirmation{DEBT} = sprintf( "%.2f", $amount );
748         } elsif ( $amount > $amountlimit && !$allowfineoverride) {
749             $issuingimpossible{DEBT} = sprintf( "%.2f", $amount );
750         } elsif ( $amount > 0 && $allfinesneedoverride ) {
751             $needsconfirmation{DEBT} = sprintf( "%.2f", $amount );
752         }
753     }
754
755     my ($blocktype, $count) = C4::Members::IsMemberBlocked($borrower->{'borrowernumber'});
756     if ($blocktype == -1) {
757         ## patron has outstanding overdue loans
758             if ( C4::Context->preference("OverduesBlockCirc") eq 'block'){
759                 $issuingimpossible{USERBLOCKEDOVERDUE} = $count;
760             }
761             elsif ( C4::Context->preference("OverduesBlockCirc") eq 'confirmation'){
762                 $needsconfirmation{USERBLOCKEDOVERDUE} = $count;
763             }
764     } elsif($blocktype == 1) {
765         # patron has accrued fine days
766         $issuingimpossible{USERBLOCKEDREMAINING} = $count;
767     }
768
769 #
770     # JB34 CHECKS IF BORROWERS DONT HAVE ISSUE TOO MANY BOOKS
771     #
772         my ($current_loan_count, $max_loans_allowed) = TooMany( $borrower, $item->{biblionumber}, $item );
773     # if TooMany max_loans_allowed returns 0 the user doesn't have permission to check out this book
774     if ($max_loans_allowed eq 0) {
775         $needsconfirmation{PATRON_CANT} = 1;
776     } else {
777         if($max_loans_allowed){
778             $needsconfirmation{TOO_MANY} = 1;
779             $needsconfirmation{current_loan_count} = $current_loan_count;
780             $needsconfirmation{max_loans_allowed} = $max_loans_allowed;
781         }
782     }
783
784     #
785     # ITEM CHECKING
786     #
787     if (   $item->{'notforloan'}
788         && $item->{'notforloan'} > 0 )
789     {
790         if(!C4::Context->preference("AllowNotForLoanOverride")){
791             $issuingimpossible{NOT_FOR_LOAN} = 1;
792         }else{
793             $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
794         }
795     }
796     elsif ( !$item->{'notforloan'} ){
797         # we have to check itemtypes.notforloan also
798         if (C4::Context->preference('item-level_itypes')){
799             # this should probably be a subroutine
800             my $sth = $dbh->prepare("SELECT notforloan FROM itemtypes WHERE itemtype = ?");
801             $sth->execute($item->{'itemtype'});
802             my $notforloan=$sth->fetchrow_hashref();
803             $sth->finish();
804             if ($notforloan->{'notforloan'}) {
805                 if (!C4::Context->preference("AllowNotForLoanOverride")) {
806                     $issuingimpossible{NOT_FOR_LOAN} = 1;
807                 } else {
808                     $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
809                 }
810             }
811         }
812         elsif ($biblioitem->{'notforloan'} == 1){
813             if (!C4::Context->preference("AllowNotForLoanOverride")) {
814                 $issuingimpossible{NOT_FOR_LOAN} = 1;
815             } else {
816                 $needsconfirmation{NOT_FOR_LOAN_FORCING} = 1;
817             }
818         }
819     }
820     if ( $item->{'wthdrawn'} && $item->{'wthdrawn'} > 0 )
821     {
822         $issuingimpossible{WTHDRAWN} = 1;
823     }
824     if (   $item->{'restricted'}
825         && $item->{'restricted'} == 1 )
826     {
827         $issuingimpossible{RESTRICTED} = 1;
828     }
829     if ( C4::Context->preference("IndependantBranches") ) {
830         my $userenv = C4::Context->userenv;
831         if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) {
832             $issuingimpossible{ITEMNOTSAMEBRANCH} = 1
833               if ( $item->{C4::Context->preference("HomeOrHoldingBranch")} ne $userenv->{branch} );
834             $needsconfirmation{BORRNOTSAMEBRANCH} = GetBranchName( $borrower->{'branchcode'} )
835               if ( $borrower->{'branchcode'} ne $userenv->{branch} );
836         }
837     }
838
839     #
840     # CHECK IF BOOK ALREADY ISSUED TO THIS BORROWER
841     #
842     if ( $issue->{borrowernumber} && $issue->{borrowernumber} eq $borrower->{'borrowernumber'} )
843     {
844
845         # Already issued to current borrower. Ask whether the loan should
846         # be renewed.
847         my ($CanBookBeRenewed,$renewerror) = CanBookBeRenewed(
848             $borrower->{'borrowernumber'},
849             $item->{'itemnumber'}
850         );
851         if ( $CanBookBeRenewed == 0 ) {    # no more renewals allowed
852             $issuingimpossible{NO_MORE_RENEWALS} = 1;
853         }
854         else {
855             $needsconfirmation{RENEW_ISSUE} = 1;
856         }
857     }
858     elsif ($issue->{borrowernumber}) {
859
860         # issued to someone else
861         my $currborinfo =    C4::Members::GetMember( borrowernumber => $issue->{borrowernumber} );
862
863 #        warn "=>.$currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
864         $needsconfirmation{ISSUED_TO_ANOTHER} = 1;
865         $needsconfirmation{issued_firstname} = $currborinfo->{'firstname'};
866         $needsconfirmation{issued_surname} = $currborinfo->{'surname'};
867         $needsconfirmation{issued_cardnumber} = $currborinfo->{'cardnumber'};
868         $needsconfirmation{issued_borrowernumber} = $currborinfo->{'borrowernumber'};
869     }
870
871     # See if the item is on reserve.
872     my ( $restype, $res ) = C4::Reserves::CheckReserves( $item->{'itemnumber'} );
873     if ($restype) {
874                 my $resbor = $res->{'borrowernumber'};
875                 my ( $resborrower ) = C4::Members::GetMember( borrowernumber => $resbor );
876                 my $branches  = GetBranches();
877                 my $branchname = $branches->{ $res->{'branchcode'} }->{'branchname'};
878         if ( $resbor ne $borrower->{'borrowernumber'} && $restype eq "Waiting" )
879         {
880             # The item is on reserve and waiting, but has been
881             # reserved by some other patron.
882             $needsconfirmation{RESERVE_WAITING} = 1;
883             $needsconfirmation{'resfirstname'} = $resborrower->{'firstname'};
884             $needsconfirmation{'ressurname'} = $resborrower->{'surname'};
885             $needsconfirmation{'rescardnumber'} = $resborrower->{'cardnumber'};
886             $needsconfirmation{'resborrowernumber'} = $resborrower->{'borrowernumber'};
887             $needsconfirmation{'resbranchname'} = $branchname;
888             $needsconfirmation{'reswaitingdate'} = format_date($res->{'waitingdate'});
889         }
890         elsif ( $restype eq "Reserved" ) {
891             # The item is on reserve for someone else.
892             $needsconfirmation{RESERVED} = 1;
893             $needsconfirmation{'resfirstname'} = $resborrower->{'firstname'};
894             $needsconfirmation{'ressurname'} = $resborrower->{'surname'};
895             $needsconfirmation{'rescardnumber'} = $resborrower->{'cardnumber'};
896             $needsconfirmation{'resborrowernumber'} = $resborrower->{'borrowernumber'};
897             $needsconfirmation{'resbranchname'} = $branchname;
898             $needsconfirmation{'resreservedate'} = format_date($res->{'reservedate'});
899         }
900     }
901         return ( \%issuingimpossible, \%needsconfirmation );
902 }
903
904 =head2 AddIssue
905
906   &AddIssue($borrower, $barcode, [$datedue], [$cancelreserve], [$issuedate])
907
908 Issue a book. Does no check, they are done in CanBookBeIssued. If we reach this sub, it means the user confirmed if needed.
909
910 =over 4
911
912 =item C<$borrower> is a hash with borrower informations (from GetMember or GetMemberDetails).
913
914 =item C<$barcode> is the barcode of the item being issued.
915
916 =item C<$datedue> is a C4::Dates object for the max date of return, i.e. the date due (optional).
917 Calculated if empty.
918
919 =item C<$cancelreserve> is 1 to override and cancel any pending reserves for the item (optional).
920
921 =item C<$issuedate> is the date to issue the item in iso (YYYY-MM-DD) format (optional).
922 Defaults to today.  Unlike C<$datedue>, NOT a C4::Dates object, unfortunately.
923
924 AddIssue does the following things :
925
926   - step 01: check that there is a borrowernumber & a barcode provided
927   - check for RENEWAL (book issued & being issued to the same patron)
928       - renewal YES = Calculate Charge & renew
929       - renewal NO  =
930           * BOOK ACTUALLY ISSUED ? do a return if book is actually issued (but to someone else)
931           * RESERVE PLACED ?
932               - fill reserve if reserve to this patron
933               - cancel reserve or not, otherwise
934           * TRANSFERT PENDING ?
935               - complete the transfert
936           * ISSUE THE BOOK
937
938 =back
939
940 =cut
941
942 sub AddIssue {
943     my ( $borrower, $barcode, $datedue, $cancelreserve, $issuedate, $sipmode) = @_;
944     my $dbh = C4::Context->dbh;
945         my $barcodecheck=CheckValidBarcode($barcode);
946     # $issuedate defaults to today.
947     if ( ! defined $issuedate ) {
948         $issuedate = strftime( "%Y-%m-%d", localtime );
949         # TODO: for hourly circ, this will need to be a C4::Dates object
950         # and all calls to AddIssue including issuedate will need to pass a Dates object.
951     }
952         if ($borrower and $barcode and $barcodecheck ne '0'){
953                 # find which item we issue
954                 my $item = GetItem('', $barcode) or return undef;       # if we don't get an Item, abort.
955                 my $branch = _GetCircControlBranch($item,$borrower);
956                 
957                 # get actual issuing if there is one
958                 my $actualissue = GetItemIssue( $item->{itemnumber});
959                 
960                 # get biblioinformation for this item
961                 my $biblio = GetBiblioFromItemNumber($item->{itemnumber});
962                 
963                 #
964                 # check if we just renew the issue.
965                 #
966                 if ($actualissue->{borrowernumber} eq $borrower->{'borrowernumber'}) {
967                         $datedue = AddRenewal(
968                                 $borrower->{'borrowernumber'},
969                                 $item->{'itemnumber'},
970                                 $branch,
971                                 $datedue,
972                 $issuedate, # here interpreted as the renewal date
973                         );
974                 }
975                 else {
976         # it's NOT a renewal
977                         if ( $actualissue->{borrowernumber}) {
978                                 # This book is currently on loan, but not to the person
979                                 # who wants to borrow it now. mark it returned before issuing to the new borrower
980                                 AddReturn(
981                                         $item->{'barcode'},
982                                         C4::Context->userenv->{'branch'}
983                                 );
984                         }
985
986                         # See if the item is on reserve.
987                         my ( $restype, $res ) =
988                           C4::Reserves::CheckReserves( $item->{'itemnumber'} );
989                         if ($restype) {
990                                 my $resbor = $res->{'borrowernumber'};
991                                 if ( $resbor eq $borrower->{'borrowernumber'} ) {
992                                         # The item is reserved by the current patron
993                                         ModReserveFill($res);
994                                 }
995                                 elsif ( $restype eq "Waiting" ) {
996                                         # warn "Waiting";
997                                         # The item is on reserve and waiting, but has been
998                                         # reserved by some other patron.
999                                 }
1000                                 elsif ( $restype eq "Reserved" ) {
1001                                         # warn "Reserved";
1002                                         # The item is reserved by someone else.
1003                                         if ($cancelreserve) { # cancel reserves on this item
1004                                                 CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'});
1005                                         }
1006                                 }
1007                                 if ($cancelreserve) {
1008                                         CancelReserve($res->{'biblionumber'}, 0, $res->{'borrowernumber'});
1009                                 }
1010                                 else {
1011                                         # set waiting reserve to first in reserve queue as book isn't waiting now
1012                                         ModReserve(1,
1013                                                 $res->{'biblionumber'},
1014                                                 $res->{'borrowernumber'},
1015                                                 $res->{'branchcode'}
1016                                         );
1017                                 }
1018                         }
1019
1020                         # Starting process for transfer job (checking transfert and validate it if we have one)
1021             my ($datesent) = GetTransfers($item->{'itemnumber'});
1022             if ($datesent) {
1023         #       updating line of branchtranfert to finish it, and changing the to branch value, implement a comment for visibility of this case (maybe for stats ....)
1024                 my $sth =
1025                     $dbh->prepare(
1026                     "UPDATE branchtransfers 
1027                         SET datearrived = now(),
1028                         tobranch = ?,
1029                         comments = 'Forced branchtransfer'
1030                     WHERE itemnumber= ? AND datearrived IS NULL"
1031                     );
1032                 $sth->execute(C4::Context->userenv->{'branch'},$item->{'itemnumber'});
1033             }
1034
1035         # Record in the database the fact that the book was issued.
1036         my $sth =
1037           $dbh->prepare(
1038                 "INSERT INTO issues 
1039                     (borrowernumber, itemnumber,issuedate, date_due, branchcode)
1040                 VALUES (?,?,?,?,?)"
1041           );
1042         unless ($datedue) {
1043             my $itype = ( C4::Context->preference('item-level_itypes') ) ? $biblio->{'itype'} : $biblio->{'itemtype'};
1044             $datedue = CalcDateDue( C4::Dates->new( $issuedate, 'iso' ), $itype, $branch, $borrower );
1045
1046         }
1047         $sth->execute(
1048             $borrower->{'borrowernumber'},      # borrowernumber
1049             $item->{'itemnumber'},              # itemnumber
1050             $issuedate,                         # issuedate
1051             $datedue->output('iso'),            # date_due
1052             C4::Context->userenv->{'branch'}    # branchcode
1053         );
1054         $sth->finish;
1055         if ( C4::Context->preference('ReturnToShelvingCart') ) { ## ReturnToShelvingCart is on, anything issued should be taken off the cart.
1056           CartToShelf( $item->{'itemnumber'} );
1057         }
1058         $item->{'issues'}++;
1059         ModItem({ issues           => $item->{'issues'},
1060                   holdingbranch    => C4::Context->userenv->{'branch'},
1061                   itemlost         => 0,
1062                   datelastborrowed => C4::Dates->new()->output('iso'),
1063                   onloan           => $datedue->output('iso'),
1064                 }, $item->{'biblionumber'}, $item->{'itemnumber'});
1065         ModDateLastSeen( $item->{'itemnumber'} );
1066
1067         # If it costs to borrow this book, charge it to the patron's account.
1068         my ( $charge, $itemtype ) = GetIssuingCharges(
1069             $item->{'itemnumber'},
1070             $borrower->{'borrowernumber'}
1071         );
1072         if ( $charge > 0 ) {
1073             AddIssuingCharge(
1074                 $item->{'itemnumber'},
1075                 $borrower->{'borrowernumber'}, $charge
1076             );
1077             $item->{'charge'} = $charge;
1078         }
1079
1080         # Record the fact that this book was issued.
1081         &UpdateStats(
1082             C4::Context->userenv->{'branch'},
1083             'issue', $charge,
1084             ($sipmode ? "SIP-$sipmode" : ''), $item->{'itemnumber'},
1085             $item->{'itype'}, $borrower->{'borrowernumber'}
1086         );
1087
1088         # Send a checkout slip.
1089         my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1090         my %conditions = (
1091             branchcode   => $branch,
1092             categorycode => $borrower->{categorycode},
1093             item_type    => $item->{itype},
1094             notification => 'CHECKOUT',
1095         );
1096         if ($circulation_alert->is_enabled_for(\%conditions)) {
1097             SendCirculationAlert({
1098                 type     => 'CHECKOUT',
1099                 item     => $item,
1100                 borrower => $borrower,
1101                 branch   => $branch,
1102             });
1103         }
1104     }
1105
1106     logaction("CIRCULATION", "ISSUE", $borrower->{'borrowernumber'}, $biblio->{'biblionumber'})
1107         if C4::Context->preference("IssueLog");
1108   }
1109   return ($datedue);    # not necessarily the same as when it came in!
1110 }
1111
1112 =head2 GetLoanLength
1113
1114   my $loanlength = &GetLoanLength($borrowertype,$itemtype,branchcode)
1115
1116 Get loan length for an itemtype, a borrower type and a branch
1117
1118 =cut
1119
1120 sub GetLoanLength {
1121     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1122     my $dbh = C4::Context->dbh;
1123     my $sth =
1124       $dbh->prepare(
1125 "select issuelength from issuingrules where categorycode=? and itemtype=? and branchcode=? and issuelength is not null"
1126       );
1127 # warn "in get loan lenght $borrowertype $itemtype $branchcode ";
1128 # try to find issuelength & return the 1st available.
1129 # check with borrowertype, itemtype and branchcode, then without one of those parameters
1130     $sth->execute( $borrowertype, $itemtype, $branchcode );
1131     my $loanlength = $sth->fetchrow_hashref;
1132     return $loanlength->{issuelength}
1133       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1134
1135     $sth->execute( $borrowertype, "*", $branchcode );
1136     $loanlength = $sth->fetchrow_hashref;
1137     return $loanlength->{issuelength}
1138       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1139
1140     $sth->execute( "*", $itemtype, $branchcode );
1141     $loanlength = $sth->fetchrow_hashref;
1142     return $loanlength->{issuelength}
1143       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1144
1145     $sth->execute( "*", "*", $branchcode );
1146     $loanlength = $sth->fetchrow_hashref;
1147     return $loanlength->{issuelength}
1148       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1149
1150     $sth->execute( $borrowertype, $itemtype, "*" );
1151     $loanlength = $sth->fetchrow_hashref;
1152     return $loanlength->{issuelength}
1153       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1154
1155     $sth->execute( $borrowertype, "*", "*" );
1156     $loanlength = $sth->fetchrow_hashref;
1157     return $loanlength->{issuelength}
1158       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1159
1160     $sth->execute( "*", $itemtype, "*" );
1161     $loanlength = $sth->fetchrow_hashref;
1162     return $loanlength->{issuelength}
1163       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1164
1165     $sth->execute( "*", "*", "*" );
1166     $loanlength = $sth->fetchrow_hashref;
1167     return $loanlength->{issuelength}
1168       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1169
1170     # if no rule is set => 21 days (hardcoded)
1171     return 21;
1172 }
1173
1174
1175 =head2 GetHardDueDate
1176
1177   my ($hardduedate,$hardduedatecompare) = &GetHardDueDate($borrowertype,$itemtype,branchcode)
1178
1179 Get the Hard Due Date and it's comparison for an itemtype, a borrower type and a branch
1180
1181 =cut
1182
1183 sub GetHardDueDate {
1184     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1185     my $dbh = C4::Context->dbh;
1186     my $sth =
1187       $dbh->prepare(
1188 "select hardduedate, hardduedatecompare from issuingrules where categorycode=? and itemtype=? and branchcode=?"
1189       );
1190     $sth->execute( $borrowertype, $itemtype, $branchcode );
1191     my $results = $sth->fetchrow_hashref;
1192     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1193       if defined($results) && $results->{hardduedate} ne 'NULL';
1194
1195     $sth->execute( $borrowertype, "*", $branchcode );
1196     $results = $sth->fetchrow_hashref;
1197     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1198       if defined($results) && $results->{hardduedate} ne 'NULL';
1199
1200     $sth->execute( "*", $itemtype, $branchcode );
1201     $results = $sth->fetchrow_hashref;
1202     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1203       if defined($results) && $results->{hardduedate} ne 'NULL';
1204
1205     $sth->execute( "*", "*", $branchcode );
1206     $results = $sth->fetchrow_hashref;
1207     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1208       if defined($results) && $results->{hardduedate} ne 'NULL';
1209
1210     $sth->execute( $borrowertype, $itemtype, "*" );
1211     $results = $sth->fetchrow_hashref;
1212     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1213       if defined($results) && $results->{hardduedate} ne 'NULL';
1214
1215     $sth->execute( $borrowertype, "*", "*" );
1216     $results = $sth->fetchrow_hashref;
1217     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1218       if defined($results) && $results->{hardduedate} ne 'NULL';
1219
1220     $sth->execute( "*", $itemtype, "*" );
1221     $results = $sth->fetchrow_hashref;
1222     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1223       if defined($results) && $results->{hardduedate} ne 'NULL';
1224
1225     $sth->execute( "*", "*", "*" );
1226     $results = $sth->fetchrow_hashref;
1227     return (C4::Dates->new($results->{hardduedate}, 'iso'),$results->{hardduedatecompare})
1228       if defined($results) && $results->{hardduedate} ne 'NULL';
1229
1230     # if no rule is set => return undefined
1231     return (undef, undef);
1232 }
1233
1234 =head2 GetIssuingRule
1235
1236   my $irule = &GetIssuingRule($borrowertype,$itemtype,branchcode)
1237
1238 FIXME - This is a copy-paste of GetLoanLength
1239 as a stop-gap.  Do not wish to change API for GetLoanLength 
1240 this close to release, however, Overdues::GetIssuingRules is broken.
1241
1242 Get the issuing rule for an itemtype, a borrower type and a branch
1243 Returns a hashref from the issuingrules table.
1244
1245 =cut
1246
1247 sub GetIssuingRule {
1248     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1249     my $dbh = C4::Context->dbh;
1250     my $sth =  $dbh->prepare( "select * from issuingrules where categorycode=? and itemtype=? and branchcode=? and issuelength is not null"  );
1251     my $irule;
1252
1253         $sth->execute( $borrowertype, $itemtype, $branchcode );
1254     $irule = $sth->fetchrow_hashref;
1255     return $irule if defined($irule) ;
1256
1257     $sth->execute( $borrowertype, "*", $branchcode );
1258     $irule = $sth->fetchrow_hashref;
1259     return $irule if defined($irule) ;
1260
1261     $sth->execute( "*", $itemtype, $branchcode );
1262     $irule = $sth->fetchrow_hashref;
1263     return $irule if defined($irule) ;
1264
1265     $sth->execute( "*", "*", $branchcode );
1266     $irule = $sth->fetchrow_hashref;
1267     return $irule if defined($irule) ;
1268
1269     $sth->execute( $borrowertype, $itemtype, "*" );
1270     $irule = $sth->fetchrow_hashref;
1271     return $irule if defined($irule) ;
1272
1273     $sth->execute( $borrowertype, "*", "*" );
1274     $irule = $sth->fetchrow_hashref;
1275     return $irule if defined($irule) ;
1276
1277     $sth->execute( "*", $itemtype, "*" );
1278     $irule = $sth->fetchrow_hashref;
1279     return $irule if defined($irule) ;
1280
1281     $sth->execute( "*", "*", "*" );
1282     $irule = $sth->fetchrow_hashref;
1283     return $irule if defined($irule) ;
1284
1285     # if no rule matches,
1286     return undef;
1287 }
1288
1289 =head2 GetBranchBorrowerCircRule
1290
1291   my $branch_cat_rule = GetBranchBorrowerCircRule($branchcode, $categorycode);
1292
1293 Retrieves circulation rule attributes that apply to the given
1294 branch and patron category, regardless of item type.  
1295 The return value is a hashref containing the following key:
1296
1297 maxissueqty - maximum number of loans that a
1298 patron of the given category can have at the given
1299 branch.  If the value is undef, no limit.
1300
1301 This will first check for a specific branch and
1302 category match from branch_borrower_circ_rules. 
1303
1304 If no rule is found, it will then check default_branch_circ_rules
1305 (same branch, default category).  If no rule is found,
1306 it will then check default_borrower_circ_rules (default 
1307 branch, same category), then failing that, default_circ_rules
1308 (default branch, default category).
1309
1310 If no rule has been found in the database, it will default to
1311 the buillt in rule:
1312
1313 maxissueqty - undef
1314
1315 C<$branchcode> and C<$categorycode> should contain the
1316 literal branch code and patron category code, respectively - no
1317 wildcards.
1318
1319 =cut
1320
1321 sub GetBranchBorrowerCircRule {
1322     my $branchcode = shift;
1323     my $categorycode = shift;
1324
1325     my $branch_cat_query = "SELECT maxissueqty
1326                             FROM branch_borrower_circ_rules
1327                             WHERE branchcode = ?
1328                             AND   categorycode = ?";
1329     my $dbh = C4::Context->dbh();
1330     my $sth = $dbh->prepare($branch_cat_query);
1331     $sth->execute($branchcode, $categorycode);
1332     my $result;
1333     if ($result = $sth->fetchrow_hashref()) {
1334         return $result;
1335     }
1336
1337     # try same branch, default borrower category
1338     my $branch_query = "SELECT maxissueqty
1339                         FROM default_branch_circ_rules
1340                         WHERE branchcode = ?";
1341     $sth = $dbh->prepare($branch_query);
1342     $sth->execute($branchcode);
1343     if ($result = $sth->fetchrow_hashref()) {
1344         return $result;
1345     }
1346
1347     # try default branch, same borrower category
1348     my $category_query = "SELECT maxissueqty
1349                           FROM default_borrower_circ_rules
1350                           WHERE categorycode = ?";
1351     $sth = $dbh->prepare($category_query);
1352     $sth->execute($categorycode);
1353     if ($result = $sth->fetchrow_hashref()) {
1354         return $result;
1355     }
1356   
1357     # try default branch, default borrower category
1358     my $default_query = "SELECT maxissueqty
1359                           FROM default_circ_rules";
1360     $sth = $dbh->prepare($default_query);
1361     $sth->execute();
1362     if ($result = $sth->fetchrow_hashref()) {
1363         return $result;
1364     }
1365     
1366     # built-in default circulation rule
1367     return {
1368         maxissueqty => undef,
1369     };
1370 }
1371
1372 =head2 GetBranchItemRule
1373
1374   my $branch_item_rule = GetBranchItemRule($branchcode, $itemtype);
1375
1376 Retrieves circulation rule attributes that apply to the given
1377 branch and item type, regardless of patron category.
1378
1379 The return value is a hashref containing the following key:
1380
1381 holdallowed => Hold policy for this branch and itemtype. Possible values:
1382   0: No holds allowed.
1383   1: Holds allowed only by patrons that have the same homebranch as the item.
1384   2: Holds allowed from any patron.
1385
1386 This searches branchitemrules in the following order:
1387
1388   * Same branchcode and itemtype
1389   * Same branchcode, itemtype '*'
1390   * branchcode '*', same itemtype
1391   * branchcode and itemtype '*'
1392
1393 Neither C<$branchcode> nor C<$categorycode> should be '*'.
1394
1395 =cut
1396
1397 sub GetBranchItemRule {
1398     my ( $branchcode, $itemtype ) = @_;
1399     my $dbh = C4::Context->dbh();
1400     my $result = {};
1401
1402     my @attempts = (
1403         ['SELECT holdallowed
1404             FROM branch_item_rules
1405             WHERE branchcode = ?
1406               AND itemtype = ?', $branchcode, $itemtype],
1407         ['SELECT holdallowed
1408             FROM default_branch_circ_rules
1409             WHERE branchcode = ?', $branchcode],
1410         ['SELECT holdallowed
1411             FROM default_branch_item_rules
1412             WHERE itemtype = ?', $itemtype],
1413         ['SELECT holdallowed
1414             FROM default_circ_rules'],
1415     );
1416
1417     foreach my $attempt (@attempts) {
1418         my ($query, @bind_params) = @{$attempt};
1419
1420         # Since branch/category and branch/itemtype use the same per-branch
1421         # defaults tables, we have to check that the key we want is set, not
1422         # just that a row was returned
1423         return $result if ( defined( $result->{'holdallowed'} = $dbh->selectrow_array( $query, {}, @bind_params ) ) );
1424     }
1425     
1426     # built-in default circulation rule
1427     return {
1428         holdallowed => 2,
1429     };
1430 }
1431
1432 =head2 AddReturn
1433
1434   ($doreturn, $messages, $iteminformation, $borrower) =
1435       &AddReturn($barcode, $branch, $exemptfine, $dropbox);
1436
1437 Returns a book.
1438
1439 =over 4
1440
1441 =item C<$barcode> is the bar code of the book being returned.
1442
1443 =item C<$branch> is the code of the branch where the book is being returned.
1444
1445 =item C<$exemptfine> indicates that overdue charges for the item will be
1446 removed.
1447
1448 =item C<$dropbox> indicates that the check-in date is assumed to be
1449 yesterday, or the last non-holiday as defined in C4::Calendar .  If
1450 overdue charges are applied and C<$dropbox> is true, the last charge
1451 will be removed.  This assumes that the fines accrual script has run
1452 for _today_.
1453
1454 =back
1455
1456 C<&AddReturn> returns a list of four items:
1457
1458 C<$doreturn> is true iff the return succeeded.
1459
1460 C<$messages> is a reference-to-hash giving feedback on the operation.
1461 The keys of the hash are:
1462
1463 =over 4
1464
1465 =item C<BadBarcode>
1466
1467 No item with this barcode exists. The value is C<$barcode>.
1468
1469 =item C<NotIssued>
1470
1471 The book is not currently on loan. The value is C<$barcode>.
1472
1473 =item C<IsPermanent>
1474
1475 The book's home branch is a permanent collection. If you have borrowed
1476 this book, you are not allowed to return it. The value is the code for
1477 the book's home branch.
1478
1479 =item C<wthdrawn>
1480
1481 This book has been withdrawn/cancelled. The value should be ignored.
1482
1483 =item C<Wrongbranch>
1484
1485 This book has was returned to the wrong branch.  The value is a hashref
1486 so that C<$messages->{Wrongbranch}->{Wrongbranch}> and C<$messages->{Wrongbranch}->{Rightbranch}>
1487 contain the branchcode of the incorrect and correct return library, respectively.
1488
1489 =item C<ResFound>
1490
1491 The item was reserved. The value is a reference-to-hash whose keys are
1492 fields from the reserves table of the Koha database, and
1493 C<biblioitemnumber>. It also has the key C<ResFound>, whose value is
1494 either C<Waiting>, C<Reserved>, or 0.
1495
1496 =back
1497
1498 C<$iteminformation> is a reference-to-hash, giving information about the
1499 returned item from the issues table.
1500
1501 C<$borrower> is a reference-to-hash, giving information about the
1502 patron who last borrowed the book.
1503
1504 =cut
1505
1506 sub AddReturn {
1507     my ( $barcode, $branch, $exemptfine, $dropbox ) = @_;
1508     if ($branch and not GetBranchDetail($branch)) {
1509         warn "AddReturn error: branch '$branch' not found.  Reverting to " . C4::Context->userenv->{'branch'};
1510         undef $branch;
1511     }
1512     $branch = C4::Context->userenv->{'branch'} unless $branch;  # we trust userenv to be a safe fallback/default
1513     my $messages;
1514     my $borrower;
1515     my $biblio;
1516     my $doreturn       = 1;
1517     my $validTransfert = 0;
1518     my $stat_type = 'return';    
1519
1520     # get information on item
1521     my $itemnumber = GetItemnumberFromBarcode( $barcode );
1522     unless ($itemnumber) {
1523         return (0, { BadBarcode => $barcode }); # no barcode means no item or borrower.  bail out.
1524     }
1525     my $issue  = GetItemIssue($itemnumber);
1526 #   warn Dumper($iteminformation);
1527     if ($issue and $issue->{borrowernumber}) {
1528         $borrower = C4::Members::GetMemberDetails($issue->{borrowernumber})
1529             or die "Data inconsistency: barcode $barcode (itemnumber:$itemnumber) claims to be issued to non-existant borrowernumber '$issue->{borrowernumber}'\n"
1530                 . Dumper($issue) . "\n";
1531     } else {
1532         $messages->{'NotIssued'} = $barcode;
1533         # even though item is not on loan, it may still be transferred;  therefore, get current branch info
1534         $doreturn = 0;
1535         # No issue, no borrowernumber.  ONLY if $doreturn, *might* you have a $borrower later.
1536         # Record this as a local use, instead of a return, if the RecordLocalUseOnReturn is on
1537         if (C4::Context->preference("RecordLocalUseOnReturn")) {
1538            $messages->{'LocalUse'} = 1;
1539            $stat_type = 'localuse';
1540         }
1541     }
1542
1543     my $item = GetItem($itemnumber) or die "GetItem($itemnumber) failed";
1544         # full item data, but no borrowernumber or checkout info (no issue)
1545         # we know GetItem should work because GetItemnumberFromBarcode worked
1546     my $hbr      = C4::Context->preference("HomeOrHoldingBranchReturn") || "homebranch";
1547     $hbr = $item->{$hbr} || '';
1548         # item must be from items table -- issues table has branchcode and issuingbranch, not homebranch nor holdingbranch
1549
1550     my $borrowernumber = $borrower->{'borrowernumber'} || undef;    # we don't know if we had a borrower or not
1551
1552     # check if the book is in a permanent collection....
1553     # FIXME -- This 'PE' attribute is largely undocumented.  afaict, there's no user interface that reflects this functionality.
1554     if ( $hbr ) {
1555         my $branches = GetBranches();    # a potentially expensive call for a non-feature.
1556         $branches->{$hbr}->{PE} and $messages->{'IsPermanent'} = $hbr;
1557     }
1558
1559     # if indy branches and returning to different branch, refuse the return
1560     if ($hbr ne $branch && C4::Context->preference("IndependantBranches")){
1561         $messages->{'Wrongbranch'} = {
1562             Wrongbranch => $branch,
1563             Rightbranch => $hbr,
1564         };
1565         $doreturn = 0;
1566         # bailing out here - in this case, current desired behavior
1567         # is to act as if no return ever happened at all.
1568         # FIXME - even in an indy branches situation, there should
1569         # still be an option for the library to accept the item
1570         # and transfer it to its owning library.
1571         return ( $doreturn, $messages, $issue, $borrower );
1572     }
1573
1574     if ( $item->{'wthdrawn'} ) { # book has been cancelled
1575         $messages->{'wthdrawn'} = 1;
1576         $doreturn = 0;
1577     }
1578
1579     # case of a return of document (deal with issues and holdingbranch)
1580     if ($doreturn) {
1581         $borrower or warn "AddReturn without current borrower";
1582                 my $circControlBranch;
1583         if ($dropbox) {
1584             # define circControlBranch only if dropbox mode is set
1585             # don't allow dropbox mode to create an invalid entry in issues (issuedate > today)
1586             # FIXME: check issuedate > returndate, factoring in holidays
1587             $circControlBranch = _GetCircControlBranch($item,$borrower) unless ( $item->{'issuedate'} eq C4::Dates->today('iso') );;
1588         }
1589
1590         if ($borrowernumber) {
1591             MarkIssueReturned($borrowernumber, $item->{'itemnumber'}, $circControlBranch, '', $borrower->{'privacy'});
1592             $messages->{'WasReturned'} = 1;    # FIXME is the "= 1" right?  This could be the borrower hash.
1593         }
1594
1595         ModItem({ onloan => undef }, $issue->{'biblionumber'}, $item->{'itemnumber'});
1596     }
1597
1598     # the holdingbranch is updated if the document is returned to another location.
1599     # this is always done regardless of whether the item was on loan or not
1600     if ($item->{'holdingbranch'} ne $branch) {
1601         UpdateHoldingbranch($branch, $item->{'itemnumber'});
1602         $item->{'holdingbranch'} = $branch; # update item data holdingbranch too
1603     }
1604     ModDateLastSeen( $item->{'itemnumber'} );
1605
1606     # check if we have a transfer for this document
1607     my ($datesent,$frombranch,$tobranch) = GetTransfers( $item->{'itemnumber'} );
1608
1609     # if we have a transfer to do, we update the line of transfers with the datearrived
1610     if ($datesent) {
1611         if ( $tobranch eq $branch ) {
1612             my $sth = C4::Context->dbh->prepare(
1613                 "UPDATE branchtransfers SET datearrived = now() WHERE itemnumber= ? AND datearrived IS NULL"
1614             );
1615             $sth->execute( $item->{'itemnumber'} );
1616             # if we have a reservation with valid transfer, we can set it's status to 'W'
1617             C4::Reserves::ModReserveStatus($item->{'itemnumber'}, 'W');
1618         } else {
1619             $messages->{'WrongTransfer'}     = $tobranch;
1620             $messages->{'WrongTransferItem'} = $item->{'itemnumber'};
1621         }
1622         $validTransfert = 1;
1623     }
1624
1625     # fix up the accounts.....
1626     if ($item->{'itemlost'}) {
1627         _FixAccountForLostAndReturned($item->{'itemnumber'}, $borrowernumber, $barcode);    # can tolerate undef $borrowernumber
1628         $messages->{'WasLost'} = 1;
1629     }
1630
1631     # fix up the overdues in accounts...
1632     if ($borrowernumber) {
1633         my $fix = _FixOverduesOnReturn($borrowernumber, $item->{itemnumber}, $exemptfine, $dropbox);
1634         defined($fix) or warn "_FixOverduesOnReturn($borrowernumber, $item->{itemnumber}...) failed!";  # zero is OK, check defined
1635         
1636         # fix fine days
1637         my $debardate = _FixFineDaysOnReturn( $borrower, $item, $issue->{date_due} );
1638         $messages->{'Debarred'} = $debardate if ($debardate);
1639     }
1640
1641     # find reserves.....
1642     # if we don't have a reserve with the status W, we launch the Checkreserves routine
1643     my ($resfound, $resrec) = C4::Reserves::CheckReserves( $item->{'itemnumber'} );
1644     if ($resfound) {
1645           $resrec->{'ResFound'} = $resfound;
1646         $messages->{'ResFound'} = $resrec;
1647     }
1648
1649     # update stats?
1650     # Record the fact that this book was returned.
1651     UpdateStats(
1652         $branch, $stat_type, '0', '',
1653         $item->{'itemnumber'},
1654         $biblio->{'itemtype'},
1655         $borrowernumber
1656     );
1657
1658     # Send a check-in slip. # NOTE: borrower may be undef.  probably shouldn't try to send messages then.
1659     my $circulation_alert = 'C4::ItemCirculationAlertPreference';
1660     my %conditions = (
1661         branchcode   => $branch,
1662         categorycode => $borrower->{categorycode},
1663         item_type    => $item->{itype},
1664         notification => 'CHECKIN',
1665     );
1666     if ($doreturn && $circulation_alert->is_enabled_for(\%conditions)) {
1667         SendCirculationAlert({
1668             type     => 'CHECKIN',
1669             item     => $item,
1670             borrower => $borrower,
1671             branch   => $branch,
1672         });
1673     }
1674     
1675     logaction("CIRCULATION", "RETURN", $borrowernumber, $item->{'biblionumber'})
1676         if C4::Context->preference("ReturnLog");
1677     
1678     # FIXME: make this comment intelligible.
1679     #adding message if holdingbranch is non equal a userenv branch to return the document to homebranch
1680     #we check, if we don't have reserv or transfert for this document, if not, return it to homebranch .
1681
1682     if (($doreturn or $messages->{'NotIssued'}) and !$resfound and ($branch ne $hbr) and not $messages->{'WrongTransfer'}){
1683         if ( C4::Context->preference("AutomaticItemReturn"    ) or
1684             (C4::Context->preference("UseBranchTransferLimits") and
1685              ! IsBranchTransferAllowed($branch, $hbr, $item->{C4::Context->preference("BranchTransferLimitsType")} )
1686            )) {
1687             $debug and warn sprintf "about to call ModItemTransfer(%s, %s, %s)", $item->{'itemnumber'},$branch, $hbr;
1688             $debug and warn "item: " . Dumper($item);
1689             ModItemTransfer($item->{'itemnumber'}, $branch, $hbr);
1690             $messages->{'WasTransfered'} = 1;
1691         } else {
1692             $messages->{'NeedsTransfer'} = 1;   # TODO: instead of 1, specify branchcode that the transfer SHOULD go to, $item->{homebranch}
1693         }
1694     }
1695     return ( $doreturn, $messages, $issue, $borrower );
1696 }
1697
1698 =head2 MarkIssueReturned
1699
1700   MarkIssueReturned($borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy);
1701
1702 Unconditionally marks an issue as being returned by
1703 moving the C<issues> row to C<old_issues> and
1704 setting C<returndate> to the current date, or
1705 the last non-holiday date of the branccode specified in
1706 C<dropbox_branch> .  Assumes you've already checked that 
1707 it's safe to do this, i.e. last non-holiday > issuedate.
1708
1709 if C<$returndate> is specified (in iso format), it is used as the date
1710 of the return. It is ignored when a dropbox_branch is passed in.
1711
1712 C<$privacy> contains the privacy parameter. If the patron has set privacy to 2,
1713 the old_issue is immediately anonymised
1714
1715 Ideally, this function would be internal to C<C4::Circulation>,
1716 not exported, but it is currently needed by one 
1717 routine in C<C4::Accounts>.
1718
1719 =cut
1720
1721 sub MarkIssueReturned {
1722     my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate, $privacy ) = @_;
1723     my $dbh   = C4::Context->dbh;
1724     my $query = "UPDATE issues SET returndate=";
1725     my @bind;
1726     if ($dropbox_branch) {
1727         my $calendar = C4::Calendar->new( branchcode => $dropbox_branch );
1728         my $dropboxdate = $calendar->addDate( C4::Dates->new(), -1 );
1729         $query .= " ? ";
1730         push @bind, $dropboxdate->output('iso');
1731     } elsif ($returndate) {
1732         $query .= " ? ";
1733         push @bind, $returndate;
1734     } else {
1735         $query .= " now() ";
1736     }
1737     $query .= " WHERE  borrowernumber = ?  AND itemnumber = ?";
1738     push @bind, $borrowernumber, $itemnumber;
1739     # FIXME transaction
1740     my $sth_upd  = $dbh->prepare($query);
1741     $sth_upd->execute(@bind);
1742     my $sth_copy = $dbh->prepare("INSERT INTO old_issues SELECT * FROM issues 
1743                                   WHERE borrowernumber = ?
1744                                   AND itemnumber = ?");
1745     $sth_copy->execute($borrowernumber, $itemnumber);
1746     # anonymise patron checkout immediately if $privacy set to 2 and AnonymousPatron is set to a valid borrowernumber
1747     if ( $privacy == 2) {
1748         # The default of 0 does not work due to foreign key constraints
1749         # The anonymisation will fail quietly if AnonymousPatron is not a valid entry
1750         my $anonymouspatron = (C4::Context->preference('AnonymousPatron')) ? C4::Context->preference('AnonymousPatron') : 0;
1751         my $sth_ano = $dbh->prepare("UPDATE old_issues SET borrowernumber=?
1752                                   WHERE borrowernumber = ?
1753                                   AND itemnumber = ?");
1754        $sth_ano->execute($anonymouspatron, $borrowernumber, $itemnumber);
1755     }
1756     my $sth_del  = $dbh->prepare("DELETE FROM issues
1757                                   WHERE borrowernumber = ?
1758                                   AND itemnumber = ?");
1759     $sth_del->execute($borrowernumber, $itemnumber);
1760 }
1761
1762 =head2 _FixFineDaysOnReturn
1763
1764     &_FixFineDaysOnReturn($borrower, $item, $datedue);
1765
1766 C<$borrower> borrower hashref
1767
1768 C<$item> item hashref
1769
1770 C<$datedue> date due
1771
1772 Internal function, called only by AddReturn that calculate and update the user fine days, and debars him
1773
1774 =cut
1775
1776 sub _FixFineDaysOnReturn {
1777     my ( $borrower, $item, $datedue ) = @_;
1778
1779     if ($datedue) {
1780         $datedue = C4::Dates->new( $datedue, "iso" );
1781     } else {
1782         return;
1783     }
1784
1785     my $branchcode = _GetCircControlBranch( $item, $borrower );
1786     my $calendar = C4::Calendar->new( branchcode => $branchcode );
1787     my $today = C4::Dates->new();
1788
1789     my $deltadays = $calendar->daysBetween( $datedue, C4::Dates->new() );
1790
1791     my $circcontrol = C4::Context::preference('CircControl');
1792     my $issuingrule = GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode );
1793     my $finedays    = $issuingrule->{finedays};
1794
1795     # exit if no finedays defined
1796     return unless $finedays;
1797     my $grace = $issuingrule->{firstremind};
1798
1799     if ( $deltadays - $grace > 0 ) {
1800         my @newdate = Add_Delta_Days( Today(), $deltadays * $finedays );
1801         my $isonewdate = join( '-', @newdate );
1802         my ( $deby, $debm, $debd ) = split( /-/, $borrower->{debarred} );
1803         if ( check_date( $deby, $debm, $debd ) ) {
1804             my @olddate = split( /-/, $borrower->{debarred} );
1805
1806             if ( Delta_Days( @olddate, @newdate ) > 0 ) {
1807                 C4::Members::DebarMember( $borrower->{borrowernumber}, $isonewdate );
1808                 return $isonewdate;
1809             }
1810         } else {
1811             C4::Members::DebarMember( $borrower->{borrowernumber}, $isonewdate );
1812             return $isonewdate;
1813         }
1814     }
1815 }
1816
1817 =head2 _FixOverduesOnReturn
1818
1819    &_FixOverduesOnReturn($brn,$itm, $exemptfine, $dropboxmode);
1820
1821 C<$brn> borrowernumber
1822
1823 C<$itm> itemnumber
1824
1825 C<$exemptfine> BOOL -- remove overdue charge associated with this issue. 
1826 C<$dropboxmode> BOOL -- remove lastincrement on overdue charge associated with this issue.
1827
1828 Internal function, called only by AddReturn
1829
1830 =cut
1831
1832 sub _FixOverduesOnReturn {
1833     my ($borrowernumber, $item);
1834     unless ($borrowernumber = shift) {
1835         warn "_FixOverduesOnReturn() not supplied valid borrowernumber";
1836         return;
1837     }
1838     unless ($item = shift) {
1839         warn "_FixOverduesOnReturn() not supplied valid itemnumber";
1840         return;
1841     }
1842     my ($exemptfine, $dropbox) = @_;
1843     my $dbh = C4::Context->dbh;
1844
1845     # check for overdue fine
1846     my $sth = $dbh->prepare(
1847 "SELECT * FROM accountlines WHERE (borrowernumber = ?) AND (itemnumber = ?) AND (accounttype='FU' OR accounttype='O')"
1848     );
1849     $sth->execute( $borrowernumber, $item );
1850
1851     # alter fine to show that the book has been returned
1852     my $data = $sth->fetchrow_hashref;
1853     return 0 unless $data;    # no warning, there's just nothing to fix
1854
1855     my $uquery;
1856     my @bind = ($borrowernumber, $item, $data->{'accountno'});
1857     if ($exemptfine) {
1858         $uquery = "update accountlines set accounttype='FFOR', amountoutstanding=0";
1859         if (C4::Context->preference("FinesLog")) {
1860             &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
1861         }
1862     } elsif ($dropbox && $data->{lastincrement}) {
1863         my $outstanding = $data->{amountoutstanding} - $data->{lastincrement} ;
1864         my $amt = $data->{amount} - $data->{lastincrement} ;
1865         if (C4::Context->preference("FinesLog")) {
1866             &logaction("FINES", 'MODIFY',$borrowernumber,"Dropbox adjustment $amt, item $item");
1867         }
1868          $uquery = "update accountlines set accounttype='F' ";
1869          if($outstanding  >= 0 && $amt >=0) {
1870             $uquery .= ", amount = ? , amountoutstanding=? ";
1871             unshift @bind, ($amt, $outstanding) ;
1872         }
1873     } else {
1874         $uquery = "update accountlines set accounttype='F' ";
1875     }
1876     $uquery .= " where (borrowernumber = ?) and (itemnumber = ?) and (accountno = ?)";
1877     my $usth = $dbh->prepare($uquery);
1878     return $usth->execute(@bind);
1879 }
1880
1881 =head2 _FixAccountForLostAndReturned
1882
1883   &_FixAccountForLostAndReturned($itemnumber, [$borrowernumber, $barcode]);
1884
1885 Calculates the charge for a book lost and returned.
1886
1887 Internal function, not exported, called only by AddReturn.
1888
1889 FIXME: This function reflects how inscrutable fines logic is.  Fix both.
1890 FIXME: Give a positive return value on success.  It might be the $borrowernumber who received credit, or the amount forgiven.
1891
1892 =cut
1893
1894 sub _FixAccountForLostAndReturned {
1895     my $itemnumber     = shift or return;
1896     my $borrowernumber = @_ ? shift : undef;
1897     my $item_id        = @_ ? shift : $itemnumber;  # Send the barcode if you want that logged in the description
1898     my $dbh = C4::Context->dbh;
1899     # check for charge made for lost book
1900     my $sth = $dbh->prepare("SELECT * FROM accountlines WHERE (itemnumber = ?) AND (accounttype='L' OR accounttype='Rep') ORDER BY date DESC");
1901     $sth->execute($itemnumber);
1902     my $data = $sth->fetchrow_hashref;
1903     $data or return;    # bail if there is nothing to do
1904
1905     # writeoff this amount
1906     my $offset;
1907     my $amount = $data->{'amount'};
1908     my $acctno = $data->{'accountno'};
1909     my $amountleft;                                             # Starts off undef/zero.
1910     if ($data->{'amountoutstanding'} == $amount) {
1911         $offset     = $data->{'amount'};
1912         $amountleft = 0;                                        # Hey, it's zero here, too.
1913     } else {
1914         $offset     = $amount - $data->{'amountoutstanding'};   # Um, isn't this the same as ZERO?  We just tested those two things are ==
1915         $amountleft = $data->{'amountoutstanding'} - $amount;   # Um, isn't this the same as ZERO?  We just tested those two things are ==
1916     }
1917     my $usth = $dbh->prepare("UPDATE accountlines SET accounttype = 'LR',amountoutstanding='0'
1918         WHERE (borrowernumber = ?)
1919         AND (itemnumber = ?) AND (accountno = ?) ");
1920     $usth->execute($data->{'borrowernumber'},$itemnumber,$acctno);      # We might be adjusting an account for some OTHER borrowernumber now.  Not the one we passed in.  
1921     #check if any credit is left if so writeoff other accounts
1922     my $nextaccntno = getnextacctno($data->{'borrowernumber'});
1923     $amountleft *= -1 if ($amountleft < 0);
1924     if ($amountleft > 0) {
1925         my $msth = $dbh->prepare("SELECT * FROM accountlines WHERE (borrowernumber = ?)
1926                             AND (amountoutstanding >0) ORDER BY date");     # might want to order by amountoustanding ASC (pay smallest first)
1927         $msth->execute($data->{'borrowernumber'});
1928         # offset transactions
1929         my $newamtos;
1930         my $accdata;
1931         while (($accdata=$msth->fetchrow_hashref) and ($amountleft>0)){
1932             if ($accdata->{'amountoutstanding'} < $amountleft) {
1933                 $newamtos = 0;
1934                 $amountleft -= $accdata->{'amountoutstanding'};
1935             }  else {
1936                 $newamtos = $accdata->{'amountoutstanding'} - $amountleft;
1937                 $amountleft = 0;
1938             }
1939             my $thisacct = $accdata->{'accountno'};
1940             # FIXME: move prepares outside while loop!
1941             my $usth = $dbh->prepare("UPDATE accountlines SET amountoutstanding= ?
1942                     WHERE (borrowernumber = ?)
1943                     AND (accountno=?)");
1944             $usth->execute($newamtos,$data->{'borrowernumber'},'$thisacct');    # FIXME: '$thisacct' is a string literal!
1945             $usth = $dbh->prepare("INSERT INTO accountoffsets
1946                 (borrowernumber, accountno, offsetaccount,  offsetamount)
1947                 VALUES
1948                 (?,?,?,?)");
1949             $usth->execute($data->{'borrowernumber'},$accdata->{'accountno'},$nextaccntno,$newamtos);
1950         }
1951         $msth->finish;  # $msth might actually have data left
1952     }
1953     $amountleft *= -1 if ($amountleft > 0);
1954     my $desc = "Item Returned " . $item_id;
1955     $usth = $dbh->prepare("INSERT INTO accountlines
1956         (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
1957         VALUES (?,?,now(),?,?,'CR',?)");
1958     $usth->execute($data->{'borrowernumber'},$nextaccntno,0-$amount,$desc,$amountleft);
1959     if ($borrowernumber) {
1960         # FIXME: same as query above.  use 1 sth for both
1961         $usth = $dbh->prepare("INSERT INTO accountoffsets
1962             (borrowernumber, accountno, offsetaccount,  offsetamount)
1963             VALUES (?,?,?,?)");
1964         $usth->execute($borrowernumber, $data->{'accountno'}, $nextaccntno, $offset);
1965     }
1966     ModItem({ paidfor => '' }, undef, $itemnumber);
1967     return;
1968 }
1969
1970 =head2 _GetCircControlBranch
1971
1972    my $circ_control_branch = _GetCircControlBranch($iteminfos, $borrower);
1973
1974 Internal function : 
1975
1976 Return the library code to be used to determine which circulation
1977 policy applies to a transaction.  Looks up the CircControl and
1978 HomeOrHoldingBranch system preferences.
1979
1980 C<$iteminfos> is a hashref to iteminfo. Only {homebranch or holdingbranch} is used.
1981
1982 C<$borrower> is a hashref to borrower. Only {branchcode} is used.
1983
1984 =cut
1985
1986 sub _GetCircControlBranch {
1987     my ($item, $borrower) = @_;
1988     my $circcontrol = C4::Context->preference('CircControl');
1989     my $branch;
1990
1991     if ($circcontrol eq 'PickupLibrary') {
1992         $branch= C4::Context->userenv->{'branch'} if C4::Context->userenv;
1993     } elsif ($circcontrol eq 'PatronLibrary') {
1994         $branch=$borrower->{branchcode};
1995     } else {
1996         my $branchfield = C4::Context->preference('HomeOrHoldingBranch') || 'homebranch';
1997         $branch = $item->{$branchfield};
1998         # default to item home branch if holdingbranch is used
1999         # and is not defined
2000         if (!defined($branch) && $branchfield eq 'holdingbranch') {
2001             $branch = $item->{homebranch};
2002         }
2003     }
2004     return $branch;
2005 }
2006
2007
2008
2009
2010
2011
2012 =head2 GetItemIssue
2013
2014   $issue = &GetItemIssue($itemnumber);
2015
2016 Returns patron currently having a book, or undef if not checked out.
2017
2018 C<$itemnumber> is the itemnumber.
2019
2020 C<$issue> is a hashref of the row from the issues table.
2021
2022 =cut
2023
2024 sub GetItemIssue {
2025     my ($itemnumber) = @_;
2026     return unless $itemnumber;
2027     my $sth = C4::Context->dbh->prepare(
2028         "SELECT *
2029         FROM issues 
2030         LEFT JOIN items ON issues.itemnumber=items.itemnumber
2031         WHERE issues.itemnumber=?");
2032     $sth->execute($itemnumber);
2033     my $data = $sth->fetchrow_hashref;
2034     return unless $data;
2035     $data->{'overdue'} = ($data->{'date_due'} lt C4::Dates->today('iso')) ? 1 : 0;
2036     return ($data);
2037 }
2038
2039 =head2 GetOpenIssue
2040
2041   $issue = GetOpenIssue( $itemnumber );
2042
2043 Returns the row from the issues table if the item is currently issued, undef if the item is not currently issued
2044
2045 C<$itemnumber> is the item's itemnumber
2046
2047 Returns a hashref
2048
2049 =cut
2050
2051 sub GetOpenIssue {
2052   my ( $itemnumber ) = @_;
2053
2054   my $dbh = C4::Context->dbh;  
2055   my $sth = $dbh->prepare( "SELECT * FROM issues WHERE itemnumber = ? AND returndate IS NULL" );
2056   $sth->execute( $itemnumber );
2057   my $issue = $sth->fetchrow_hashref();
2058   return $issue;
2059 }
2060
2061 =head2 GetItemIssues
2062
2063   $issues = &GetItemIssues($itemnumber, $history);
2064
2065 Returns patrons that have issued a book
2066
2067 C<$itemnumber> is the itemnumber
2068 C<$history> is false if you just want the current "issuer" (if any)
2069 and true if you want issues history from old_issues also.
2070
2071 Returns reference to an array of hashes
2072
2073 =cut
2074
2075 sub GetItemIssues {
2076     my ( $itemnumber, $history ) = @_;
2077     
2078     my $today = C4::Dates->today('iso');  # get today date
2079     my $sql = "SELECT * FROM issues 
2080               JOIN borrowers USING (borrowernumber)
2081               JOIN items     USING (itemnumber)
2082               WHERE issues.itemnumber = ? ";
2083     if ($history) {
2084         $sql .= "UNION ALL
2085                  SELECT * FROM old_issues 
2086                  LEFT JOIN borrowers USING (borrowernumber)
2087                  JOIN items USING (itemnumber)
2088                  WHERE old_issues.itemnumber = ? ";
2089     }
2090     $sql .= "ORDER BY date_due DESC";
2091     my $sth = C4::Context->dbh->prepare($sql);
2092     if ($history) {
2093         $sth->execute($itemnumber, $itemnumber);
2094     } else {
2095         $sth->execute($itemnumber);
2096     }
2097     my $results = $sth->fetchall_arrayref({});
2098     foreach (@$results) {
2099         $_->{'overdue'} = ($_->{'date_due'} lt $today) ? 1 : 0;
2100     }
2101     return $results;
2102 }
2103
2104 =head2 GetBiblioIssues
2105
2106   $issues = GetBiblioIssues($biblionumber);
2107
2108 this function get all issues from a biblionumber.
2109
2110 Return:
2111 C<$issues> is a reference to array which each value is ref-to-hash. This ref-to-hash containts all column from
2112 tables issues and the firstname,surname & cardnumber from borrowers.
2113
2114 =cut
2115
2116 sub GetBiblioIssues {
2117     my $biblionumber = shift;
2118     return undef unless $biblionumber;
2119     my $dbh   = C4::Context->dbh;
2120     my $query = "
2121         SELECT issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2122         FROM issues
2123             LEFT JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
2124             LEFT JOIN items ON issues.itemnumber = items.itemnumber
2125             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2126             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2127         WHERE biblio.biblionumber = ?
2128         UNION ALL
2129         SELECT old_issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
2130         FROM old_issues
2131             LEFT JOIN borrowers ON borrowers.borrowernumber = old_issues.borrowernumber
2132             LEFT JOIN items ON old_issues.itemnumber = items.itemnumber
2133             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
2134             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
2135         WHERE biblio.biblionumber = ?
2136         ORDER BY timestamp
2137     ";
2138     my $sth = $dbh->prepare($query);
2139     $sth->execute($biblionumber, $biblionumber);
2140
2141     my @issues;
2142     while ( my $data = $sth->fetchrow_hashref ) {
2143         push @issues, $data;
2144     }
2145     return \@issues;
2146 }
2147
2148 =head2 GetUpcomingDueIssues
2149
2150   my $upcoming_dues = GetUpcomingDueIssues( { days_in_advance => 4 } );
2151
2152 =cut
2153
2154 sub GetUpcomingDueIssues {
2155     my $params = shift;
2156
2157     $params->{'days_in_advance'} = 7 unless exists $params->{'days_in_advance'};
2158     my $dbh = C4::Context->dbh;
2159
2160     my $statement = <<END_SQL;
2161 SELECT issues.*, items.itype as itemtype, items.homebranch, TO_DAYS( date_due )-TO_DAYS( NOW() ) as days_until_due, branches.branchemail
2162 FROM issues 
2163 LEFT JOIN items USING (itemnumber)
2164 LEFT OUTER JOIN branches USING (branchcode)
2165 WhERE returndate is NULL
2166 AND ( TO_DAYS( NOW() )-TO_DAYS( date_due ) ) < ?
2167 END_SQL
2168
2169     my @bind_parameters = ( $params->{'days_in_advance'} );
2170     
2171     my $sth = $dbh->prepare( $statement );
2172     $sth->execute( @bind_parameters );
2173     my $upcoming_dues = $sth->fetchall_arrayref({});
2174     $sth->finish;
2175
2176     return $upcoming_dues;
2177 }
2178
2179 =head2 CanBookBeRenewed
2180
2181   ($ok,$error) = &CanBookBeRenewed($borrowernumber, $itemnumber[, $override_limit]);
2182
2183 Find out whether a borrowed item may be renewed.
2184
2185 C<$dbh> is a DBI handle to the Koha database.
2186
2187 C<$borrowernumber> is the borrower number of the patron who currently
2188 has the item on loan.
2189
2190 C<$itemnumber> is the number of the item to renew.
2191
2192 C<$override_limit>, if supplied with a true value, causes
2193 the limit on the number of times that the loan can be renewed
2194 (as controlled by the item type) to be ignored.
2195
2196 C<$CanBookBeRenewed> returns a true value iff the item may be renewed. The
2197 item must currently be on loan to the specified borrower; renewals
2198 must be allowed for the item's type; and the borrower must not have
2199 already renewed the loan. $error will contain the reason the renewal can not proceed
2200
2201 =cut
2202
2203 sub CanBookBeRenewed {
2204
2205     # check renewal status
2206     my ( $borrowernumber, $itemnumber, $override_limit ) = @_;
2207     my $dbh       = C4::Context->dbh;
2208     my $renews    = 1;
2209     my $renewokay = 0;
2210         my $error;
2211
2212     # Look in the issues table for this item, lent to this borrower,
2213     # and not yet returned.
2214
2215     # Look in the issues table for this item, lent to this borrower,
2216     # and not yet returned.
2217     my %branch = (
2218             'ItemHomeLibrary' => 'items.homebranch',
2219             'PickupLibrary'   => 'items.holdingbranch',
2220             'PatronLibrary'   => 'borrowers.branchcode'
2221             );
2222     my $controlbranch = $branch{C4::Context->preference('CircControl')};
2223     my $itype         = C4::Context->preference('item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype';
2224     
2225     my $sthcount = $dbh->prepare("
2226                    SELECT 
2227                     borrowers.categorycode, biblioitems.itemtype, issues.renewals, renewalsallowed, $controlbranch
2228                    FROM  issuingrules, 
2229                    issues 
2230                    LEFT JOIN items USING (itemnumber) 
2231                    LEFT JOIN borrowers USING (borrowernumber) 
2232                    LEFT JOIN biblioitems USING (biblioitemnumber)
2233                    
2234                    WHERE
2235                     (issuingrules.categorycode = borrowers.categorycode OR issuingrules.categorycode = '*')
2236                    AND
2237                     (issuingrules.itemtype = $itype OR issuingrules.itemtype = '*')
2238                    AND
2239                     (issuingrules.branchcode = $controlbranch OR issuingrules.branchcode = '*') 
2240                    AND 
2241                     borrowernumber = ? 
2242                    AND
2243                     itemnumber = ?
2244                    ORDER BY
2245                     issuingrules.categorycode desc,
2246                     issuingrules.itemtype desc,
2247                     issuingrules.branchcode desc
2248                    LIMIT 1;
2249                   ");
2250
2251     $sthcount->execute( $borrowernumber, $itemnumber );
2252     if ( my $data1 = $sthcount->fetchrow_hashref ) {
2253         
2254         if ( ( $data1->{renewalsallowed} && $data1->{renewalsallowed} > $data1->{renewals} ) || $override_limit ) {
2255             $renewokay = 1;
2256         }
2257         else {
2258                         $error="too_many";
2259                 }
2260                 
2261         my ( $resfound, $resrec ) = C4::Reserves::CheckReserves($itemnumber);
2262         if ($resfound) {
2263             $renewokay = 0;
2264                         $error="on_reserve"
2265         }
2266
2267     }
2268     return ($renewokay,$error);
2269 }
2270
2271 =head2 AddRenewal
2272
2273   &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate]);
2274
2275 Renews a loan.
2276
2277 C<$borrowernumber> is the borrower number of the patron who currently
2278 has the item.
2279
2280 C<$itemnumber> is the number of the item to renew.
2281
2282 C<$branch> is the library where the renewal took place (if any).
2283            The library that controls the circ policies for the renewal is retrieved from the issues record.
2284
2285 C<$datedue> can be a C4::Dates object used to set the due date.
2286
2287 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate.  If
2288 this parameter is not supplied, lastreneweddate is set to the current date.
2289
2290 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
2291 from the book's item type.
2292
2293 =cut
2294
2295 sub AddRenewal {
2296     my $borrowernumber  = shift or return undef;
2297     my $itemnumber      = shift or return undef;
2298     my $branch          = shift;
2299     my $datedue         = shift;
2300     my $lastreneweddate = shift || C4::Dates->new()->output('iso');
2301     my $item   = GetItem($itemnumber) or return undef;
2302     my $biblio = GetBiblioFromItemNumber($itemnumber) or return undef;
2303
2304     my $dbh = C4::Context->dbh;
2305     # Find the issues record for this book
2306     my $sth =
2307       $dbh->prepare("SELECT * FROM issues
2308                         WHERE borrowernumber=? 
2309                         AND itemnumber=?"
2310       );
2311     $sth->execute( $borrowernumber, $itemnumber );
2312     my $issuedata = $sth->fetchrow_hashref;
2313     $sth->finish;
2314     if($datedue && ! $datedue->output('iso')){
2315         warn "Invalid date passed to AddRenewal.";
2316         return undef;
2317     }
2318     # If the due date wasn't specified, calculate it by adding the
2319     # book's loan length to today's date or the current due date
2320     # based on the value of the RenewalPeriodBase syspref.
2321     unless ($datedue) {
2322
2323         my $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber ) or return undef;
2324         my $itemtype = (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'};
2325
2326         $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
2327                                         C4::Dates->new($issuedata->{date_due}, 'iso') :
2328                                         C4::Dates->new();
2329         $datedue =  CalcDateDue($datedue,$itemtype,$issuedata->{'branchcode'},$borrower);
2330     }
2331
2332     # Update the issues record to have the new due date, and a new count
2333     # of how many times it has been renewed.
2334     my $renews = $issuedata->{'renewals'} + 1;
2335     $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, lastreneweddate = ?
2336                             WHERE borrowernumber=? 
2337                             AND itemnumber=?"
2338     );
2339     $sth->execute( $datedue->output('iso'), $renews, $lastreneweddate, $borrowernumber, $itemnumber );
2340     $sth->finish;
2341
2342     # Update the renewal count on the item, and tell zebra to reindex
2343     $renews = $biblio->{'renewals'} + 1;
2344     ModItem({ renewals => $renews, onloan => $datedue->output('iso') }, $biblio->{'biblionumber'}, $itemnumber);
2345
2346     # Charge a new rental fee, if applicable?
2347     my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
2348     if ( $charge > 0 ) {
2349         my $accountno = getnextacctno( $borrowernumber );
2350         my $item = GetBiblioFromItemNumber($itemnumber);
2351         my $manager_id = 0;
2352         $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv; 
2353         $sth = $dbh->prepare(
2354                 "INSERT INTO accountlines
2355                     (date, borrowernumber, accountno, amount, manager_id,
2356                     description,accounttype, amountoutstanding, itemnumber)
2357                     VALUES (now(),?,?,?,?,?,?,?,?)"
2358         );
2359         $sth->execute( $borrowernumber, $accountno, $charge, $manager_id,
2360             "Renewal of Rental Item $item->{'title'} $item->{'barcode'}",
2361             'Rent', $charge, $itemnumber );
2362         $sth->finish;
2363     }
2364     # Log the renewal
2365     UpdateStats( $branch, 'renew', $charge, '', $itemnumber, $item->{itype}, $borrowernumber);
2366         return $datedue;
2367 }
2368
2369 sub GetRenewCount {
2370     # check renewal status
2371     my ( $bornum, $itemno ) = @_;
2372     my $dbh           = C4::Context->dbh;
2373     my $renewcount    = 0;
2374     my $renewsallowed = 0;
2375     my $renewsleft    = 0;
2376
2377     my $borrower = C4::Members::GetMember( borrowernumber => $bornum);
2378     my $item     = GetItem($itemno); 
2379
2380     # Look in the issues table for this item, lent to this borrower,
2381     # and not yet returned.
2382
2383     # FIXME - I think this function could be redone to use only one SQL call.
2384     my $sth = $dbh->prepare(
2385         "select * from issues
2386                                 where (borrowernumber = ?)
2387                                 and (itemnumber = ?)"
2388     );
2389     $sth->execute( $bornum, $itemno );
2390     my $data = $sth->fetchrow_hashref;
2391     $renewcount = $data->{'renewals'} if $data->{'renewals'};
2392     $sth->finish;
2393     # $item and $borrower should be calculated
2394     my $branchcode = _GetCircControlBranch($item, $borrower);
2395     
2396     my $issuingrule = GetIssuingRule($borrower->{categorycode}, $item->{itype}, $branchcode);
2397     
2398     $renewsallowed = $issuingrule->{'renewalsallowed'};
2399     $renewsleft    = $renewsallowed - $renewcount;
2400     if($renewsleft < 0){ $renewsleft = 0; }
2401     return ( $renewcount, $renewsallowed, $renewsleft );
2402 }
2403
2404 =head2 GetIssuingCharges
2405
2406   ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
2407
2408 Calculate how much it would cost for a given patron to borrow a given
2409 item, including any applicable discounts.
2410
2411 C<$itemnumber> is the item number of item the patron wishes to borrow.
2412
2413 C<$borrowernumber> is the patron's borrower number.
2414
2415 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
2416 and C<$item_type> is the code for the item's item type (e.g., C<VID>
2417 if it's a video).
2418
2419 =cut
2420
2421 sub GetIssuingCharges {
2422
2423     # calculate charges due
2424     my ( $itemnumber, $borrowernumber ) = @_;
2425     my $charge = 0;
2426     my $dbh    = C4::Context->dbh;
2427     my $item_type;
2428
2429     # Get the book's item type and rental charge (via its biblioitem).
2430     my $charge_query = 'SELECT itemtypes.itemtype,rentalcharge FROM items
2431         LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber';
2432     $charge_query .= (C4::Context->preference('item-level_itypes'))
2433         ? ' LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype'
2434         : ' LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype';
2435
2436     $charge_query .= ' WHERE items.itemnumber =?';
2437
2438     my $sth = $dbh->prepare($charge_query);
2439     $sth->execute($itemnumber);
2440     if ( my $item_data = $sth->fetchrow_hashref ) {
2441         $item_type = $item_data->{itemtype};
2442         $charge    = $item_data->{rentalcharge};
2443         my $branch = C4::Branch::mybranch();
2444         my $discount_query = q|SELECT rentaldiscount,
2445             issuingrules.itemtype, issuingrules.branchcode
2446             FROM borrowers
2447             LEFT JOIN issuingrules ON borrowers.categorycode = issuingrules.categorycode
2448             WHERE borrowers.borrowernumber = ?
2449             AND (issuingrules.itemtype = ? OR issuingrules.itemtype = '*')
2450             AND (issuingrules.branchcode = ? OR issuingrules.branchcode = '*')|;
2451         my $discount_sth = $dbh->prepare($discount_query);
2452         $discount_sth->execute( $borrowernumber, $item_type, $branch );
2453         my $discount_rules = $discount_sth->fetchall_arrayref({});
2454         if (@{$discount_rules}) {
2455             # We may have multiple rules so get the most specific
2456             my $discount = _get_discount_from_rule($discount_rules, $branch, $item_type);
2457             $charge = ( $charge * ( 100 - $discount ) ) / 100;
2458         }
2459     }
2460
2461     $sth->finish; # we havent _explicitly_ fetched all rows
2462     return ( $charge, $item_type );
2463 }
2464
2465 # Select most appropriate discount rule from those returned
2466 sub _get_discount_from_rule {
2467     my ($rules_ref, $branch, $itemtype) = @_;
2468     my $discount;
2469
2470     if (@{$rules_ref} == 1) { # only 1 applicable rule use it
2471         $discount = $rules_ref->[0]->{rentaldiscount};
2472         return (defined $discount) ? $discount : 0;
2473     }
2474     # could have up to 4 does one match $branch and $itemtype
2475     my @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq $itemtype } @{$rules_ref};
2476     if (@d) {
2477         $discount = $d[0]->{rentaldiscount};
2478         return (defined $discount) ? $discount : 0;
2479     }
2480     # do we have item type + all branches
2481     @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq $itemtype } @{$rules_ref};
2482     if (@d) {
2483         $discount = $d[0]->{rentaldiscount};
2484         return (defined $discount) ? $discount : 0;
2485     }
2486     # do we all item types + this branch
2487     @d = grep { $_->{branchcode} eq $branch && $_->{itemtype} eq q{*} } @{$rules_ref};
2488     if (@d) {
2489         $discount = $d[0]->{rentaldiscount};
2490         return (defined $discount) ? $discount : 0;
2491     }
2492     # so all and all (surely we wont get here)
2493     @d = grep { $_->{branchcode} eq q{*} && $_->{itemtype} eq q{*} } @{$rules_ref};
2494     if (@d) {
2495         $discount = $d[0]->{rentaldiscount};
2496         return (defined $discount) ? $discount : 0;
2497     }
2498     # none of the above
2499     return 0;
2500 }
2501
2502 =head2 AddIssuingCharge
2503
2504   &AddIssuingCharge( $itemno, $borrowernumber, $charge )
2505
2506 =cut
2507
2508 sub AddIssuingCharge {
2509     my ( $itemnumber, $borrowernumber, $charge ) = @_;
2510     my $dbh = C4::Context->dbh;
2511     my $nextaccntno = getnextacctno( $borrowernumber );
2512     my $manager_id = 0;
2513     $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv;
2514     my $query ="
2515         INSERT INTO accountlines
2516             (borrowernumber, itemnumber, accountno,
2517             date, amount, description, accounttype,
2518             amountoutstanding, manager_id)
2519         VALUES (?, ?, ?,now(), ?, 'Rental', 'Rent',?,?)
2520     ";
2521     my $sth = $dbh->prepare($query);
2522     $sth->execute( $borrowernumber, $itemnumber, $nextaccntno, $charge, $charge, $manager_id );
2523     $sth->finish;
2524 }
2525
2526 =head2 GetTransfers
2527
2528   GetTransfers($itemnumber);
2529
2530 =cut
2531
2532 sub GetTransfers {
2533     my ($itemnumber) = @_;
2534
2535     my $dbh = C4::Context->dbh;
2536
2537     my $query = '
2538         SELECT datesent,
2539                frombranch,
2540                tobranch
2541         FROM branchtransfers
2542         WHERE itemnumber = ?
2543           AND datearrived IS NULL
2544         ';
2545     my $sth = $dbh->prepare($query);
2546     $sth->execute($itemnumber);
2547     my @row = $sth->fetchrow_array();
2548     $sth->finish;
2549     return @row;
2550 }
2551
2552 =head2 GetTransfersFromTo
2553
2554   @results = GetTransfersFromTo($frombranch,$tobranch);
2555
2556 Returns the list of pending transfers between $from and $to branch
2557
2558 =cut
2559
2560 sub GetTransfersFromTo {
2561     my ( $frombranch, $tobranch ) = @_;
2562     return unless ( $frombranch && $tobranch );
2563     my $dbh   = C4::Context->dbh;
2564     my $query = "
2565         SELECT itemnumber,datesent,frombranch
2566         FROM   branchtransfers
2567         WHERE  frombranch=?
2568           AND  tobranch=?
2569           AND datearrived IS NULL
2570     ";
2571     my $sth = $dbh->prepare($query);
2572     $sth->execute( $frombranch, $tobranch );
2573     my @gettransfers;
2574
2575     while ( my $data = $sth->fetchrow_hashref ) {
2576         push @gettransfers, $data;
2577     }
2578     $sth->finish;
2579     return (@gettransfers);
2580 }
2581
2582 =head2 DeleteTransfer
2583
2584   &DeleteTransfer($itemnumber);
2585
2586 =cut
2587
2588 sub DeleteTransfer {
2589     my ($itemnumber) = @_;
2590     my $dbh          = C4::Context->dbh;
2591     my $sth          = $dbh->prepare(
2592         "DELETE FROM branchtransfers
2593          WHERE itemnumber=?
2594          AND datearrived IS NULL "
2595     );
2596     $sth->execute($itemnumber);
2597     $sth->finish;
2598 }
2599
2600 =head2 AnonymiseIssueHistory
2601
2602   $rows = AnonymiseIssueHistory($date,$borrowernumber)
2603
2604 This function write NULL instead of C<$borrowernumber> given on input arg into the table issues.
2605 if C<$borrowernumber> is not set, it will delete the issue history for all borrower older than C<$date>.
2606
2607 If c<$borrowernumber> is set, it will delete issue history for only that borrower, regardless of their opac privacy
2608 setting (force delete).
2609
2610 return the number of affected rows.
2611
2612 =cut
2613
2614 sub AnonymiseIssueHistory {
2615     my $date           = shift;
2616     my $borrowernumber = shift;
2617     my $dbh            = C4::Context->dbh;
2618     my $query          = "
2619         UPDATE old_issues
2620         SET    borrowernumber = ?
2621         WHERE  returndate < ?
2622           AND borrowernumber IS NOT NULL
2623     ";
2624
2625     # The default of 0 does not work due to foreign key constraints
2626     # The anonymisation will fail quietly if AnonymousPatron is not a valid entry
2627     my $anonymouspatron = (C4::Context->preference('AnonymousPatron')) ? C4::Context->preference('AnonymousPatron') : 0;
2628     my @bind_params = ($anonymouspatron, $date);
2629     if (defined $borrowernumber) {
2630        $query .= " AND borrowernumber = ?";
2631        push @bind_params, $borrowernumber;
2632     } else {
2633        $query .= " AND (SELECT privacy FROM borrowers WHERE borrowers.borrowernumber=old_issues.borrowernumber) <> 0";
2634     }
2635     my $sth = $dbh->prepare($query);
2636     $sth->execute(@bind_params);
2637     my $rows_affected = $sth->rows;  ### doublecheck row count return function
2638     return $rows_affected;
2639 }
2640
2641 =head2 SendCirculationAlert
2642
2643 Send out a C<check-in> or C<checkout> alert using the messaging system.
2644
2645 B<Parameters>:
2646
2647 =over 4
2648
2649 =item type
2650
2651 Valid values for this parameter are: C<CHECKIN> and C<CHECKOUT>.
2652
2653 =item item
2654
2655 Hashref of information about the item being checked in or out.
2656
2657 =item borrower
2658
2659 Hashref of information about the borrower of the item.
2660
2661 =item branch
2662
2663 The branchcode from where the checkout or check-in took place.
2664
2665 =back
2666
2667 B<Example>:
2668
2669     SendCirculationAlert({
2670         type     => 'CHECKOUT',
2671         item     => $item,
2672         borrower => $borrower,
2673         branch   => $branch,
2674     });
2675
2676 =cut
2677
2678 sub SendCirculationAlert {
2679     my ($opts) = @_;
2680     my ($type, $item, $borrower, $branch) =
2681         ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch});
2682     my %message_name = (
2683         CHECKIN  => 'Item_Check_in',
2684         CHECKOUT => 'Item_Checkout',
2685     );
2686     my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({
2687         borrowernumber => $borrower->{borrowernumber},
2688         message_name   => $message_name{$type},
2689     });
2690     my $letter = C4::Letters::getletter('circulation', $type);
2691     C4::Letters::parseletter($letter, 'biblio',      $item->{biblionumber});
2692     C4::Letters::parseletter($letter, 'biblioitems', $item->{biblionumber});
2693     C4::Letters::parseletter($letter, 'borrowers',   $borrower->{borrowernumber});
2694     C4::Letters::parseletter($letter, 'branches',    $branch);
2695     my @transports = @{ $borrower_preferences->{transports} };
2696     # warn "no transports" unless @transports;
2697     for (@transports) {
2698         # warn "transport: $_";
2699         my $message = C4::Message->find_last_message($borrower, $type, $_);
2700         if (!$message) {
2701             #warn "create new message";
2702             C4::Message->enqueue($letter, $borrower, $_);
2703         } else {
2704             #warn "append to old message";
2705             $message->append($letter);
2706             $message->update;
2707         }
2708     }
2709     $letter;
2710 }
2711
2712 =head2 updateWrongTransfer
2713
2714   $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
2715
2716 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 
2717
2718 =cut
2719
2720 sub updateWrongTransfer {
2721         my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
2722         my $dbh = C4::Context->dbh;     
2723 # first step validate the actual line of transfert .
2724         my $sth =
2725                 $dbh->prepare(
2726                         "update branchtransfers set datearrived = now(),tobranch=?,comments='wrongtransfer' where itemnumber= ? AND datearrived IS NULL"
2727                 );
2728                 $sth->execute($FromLibrary,$itemNumber);
2729                 $sth->finish;
2730
2731 # second step create a new line of branchtransfer to the right location .
2732         ModItemTransfer($itemNumber, $FromLibrary, $waitingAtLibrary);
2733
2734 #third step changing holdingbranch of item
2735         UpdateHoldingbranch($FromLibrary,$itemNumber);
2736 }
2737
2738 =head2 UpdateHoldingbranch
2739
2740   $items = UpdateHoldingbranch($branch,$itmenumber);
2741
2742 Simple methode for updating hodlingbranch in items BDD line
2743
2744 =cut
2745
2746 sub UpdateHoldingbranch {
2747         my ( $branch,$itemnumber ) = @_;
2748     ModItem({ holdingbranch => $branch }, undef, $itemnumber);
2749 }
2750
2751 =head2 CalcDateDue
2752
2753 $newdatedue = CalcDateDue($startdate,$itemtype,$branchcode,$borrower);
2754
2755 this function calculates the due date given the start date and configured circulation rules,
2756 checking against the holidays calendar as per the 'useDaysMode' syspref.
2757 C<$startdate>   = C4::Dates object representing start date of loan period (assumed to be today)
2758 C<$itemtype>  = itemtype code of item in question
2759 C<$branch>  = location whose calendar to use
2760 C<$borrower> = Borrower object
2761
2762 =cut
2763
2764 sub CalcDateDue { 
2765         my ($startdate,$itemtype,$branch,$borrower) = @_;
2766         my $datedue;
2767         my $loanlength = GetLoanLength($borrower->{'categorycode'},$itemtype, $branch);
2768
2769         # if globalDueDate ON the datedue is set to that date
2770         if ( C4::Context->preference('globalDueDate')
2771              && ( C4::Context->preference('globalDueDate') =~ C4::Dates->regexp('syspref') ) ) {
2772             $datedue = C4::Dates->new( C4::Context->preference('globalDueDate') );
2773         } else {
2774         # otherwise, calculate the datedue as normal
2775                 if(C4::Context->preference('useDaysMode') eq 'Days') {  # ignoring calendar
2776                         my $timedue = time + ($loanlength) * 86400;
2777                 #FIXME - assumes now even though we take a startdate 
2778                         my @datearr  = localtime($timedue);
2779                         $datedue = C4::Dates->new( sprintf("%04d-%02d-%02d", 1900 + $datearr[5], $datearr[4] + 1, $datearr[3]), 'iso');
2780                 } else {
2781                         my $calendar = C4::Calendar->new(  branchcode => $branch );
2782                         $datedue = $calendar->addDate($startdate, $loanlength);
2783                 }
2784         }
2785
2786         # if Hard Due Dates are used, retreive them and apply as necessary
2787         my ($hardduedate, $hardduedatecompare) = GetHardDueDate($borrower->{'categorycode'},$itemtype, $branch);
2788         if ( $hardduedate && $hardduedate->output('iso') && $hardduedate->output('iso') ne '0000-00-00') {
2789             # if the calculated due date is after the 'before' Hard Due Date (ceiling), override
2790             if ( $datedue->output( 'iso' ) gt $hardduedate->output( 'iso' ) && $hardduedatecompare == -1) {
2791                 $datedue = $hardduedate;
2792             # if the calculated date is before the 'after' Hard Due Date (floor), override
2793             } elsif ( $datedue->output( 'iso' ) lt $hardduedate->output( 'iso' ) && $hardduedatecompare == 1) {
2794                 $datedue = $hardduedate;               
2795             # if the hard due date is set to 'exactly', overrride
2796             } elsif ( $hardduedatecompare == 0) {
2797                 $datedue = $hardduedate;
2798             }
2799             # in all other cases, keep the date due as it is
2800         }
2801
2802         # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
2803         if ( C4::Context->preference('ReturnBeforeExpiry') && $datedue->output('iso') gt $borrower->{dateexpiry} ) {
2804             $datedue = C4::Dates->new( $borrower->{dateexpiry}, 'iso' );
2805         }
2806
2807         return $datedue;
2808 }
2809
2810 =head2 CheckValidDatedue
2811
2812   $newdatedue = CheckValidDatedue($date_due,$itemnumber,$branchcode);
2813
2814 This function does not account for holiday exceptions nor does it handle the 'useDaysMode' syspref .
2815 To be replaced by CalcDateDue() once C4::Calendar use is tested.
2816
2817 this function validates the loan length against the holidays calendar, and adjusts the due date as per the 'useDaysMode' syspref.
2818 C<$date_due>   = returndate calculate with no day check
2819 C<$itemnumber>  = itemnumber
2820 C<$branchcode>  = location of issue (affected by 'CircControl' syspref)
2821 C<$loanlength>  = loan length prior to adjustment
2822
2823 =cut
2824
2825 sub CheckValidDatedue {
2826 my ($date_due,$itemnumber,$branchcode)=@_;
2827 my @datedue=split('-',$date_due->output('iso'));
2828 my $years=$datedue[0];
2829 my $month=$datedue[1];
2830 my $day=$datedue[2];
2831 # die "Item# $itemnumber ($branchcode) due: " . ${date_due}->output() . "\n(Y,M,D) = ($years,$month,$day)":
2832 my $dow;
2833 for (my $i=0;$i<2;$i++){
2834     $dow=Day_of_Week($years,$month,$day);
2835     ($dow=0) if ($dow>6);
2836     my $result=CheckRepeatableHolidays($itemnumber,$dow,$branchcode);
2837     my $countspecial=CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
2838     my $countspecialrepeatable=CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
2839         if (($result ne '0') or ($countspecial ne '0') or ($countspecialrepeatable ne '0') ){
2840         $i=0;
2841         (($years,$month,$day) = Add_Delta_Days($years,$month,$day, 1))if ($i ne '1');
2842         }
2843     }
2844     my $newdatedue=C4::Dates->new(sprintf("%04d-%02d-%02d",$years,$month,$day),'iso');
2845 return $newdatedue;
2846 }
2847
2848
2849 =head2 CheckRepeatableHolidays
2850
2851   $countrepeatable = CheckRepeatableHoliday($itemnumber,$week_day,$branchcode);
2852
2853 This function checks if the date due is a repeatable holiday
2854
2855 C<$date_due>   = returndate calculate with no day check
2856 C<$itemnumber>  = itemnumber
2857 C<$branchcode>  = localisation of issue 
2858
2859 =cut
2860
2861 sub CheckRepeatableHolidays{
2862 my($itemnumber,$week_day,$branchcode)=@_;
2863 my $dbh = C4::Context->dbh;
2864 my $query = qq|SELECT count(*)  
2865         FROM repeatable_holidays 
2866         WHERE branchcode=?
2867         AND weekday=?|;
2868 my $sth = $dbh->prepare($query);
2869 $sth->execute($branchcode,$week_day);
2870 my $result=$sth->fetchrow;
2871 $sth->finish;
2872 return $result;
2873 }
2874
2875
2876 =head2 CheckSpecialHolidays
2877
2878   $countspecial = CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
2879
2880 This function check if the date is a special holiday
2881
2882 C<$years>   = the years of datedue
2883 C<$month>   = the month of datedue
2884 C<$day>     = the day of datedue
2885 C<$itemnumber>  = itemnumber
2886 C<$branchcode>  = localisation of issue 
2887
2888 =cut
2889
2890 sub CheckSpecialHolidays{
2891 my ($years,$month,$day,$itemnumber,$branchcode) = @_;
2892 my $dbh = C4::Context->dbh;
2893 my $query=qq|SELECT count(*) 
2894              FROM `special_holidays`
2895              WHERE year=?
2896              AND month=?
2897              AND day=?
2898              AND branchcode=?
2899             |;
2900 my $sth = $dbh->prepare($query);
2901 $sth->execute($years,$month,$day,$branchcode);
2902 my $countspecial=$sth->fetchrow ;
2903 $sth->finish;
2904 return $countspecial;
2905 }
2906
2907 =head2 CheckRepeatableSpecialHolidays
2908
2909   $countspecial = CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
2910
2911 This function check if the date is a repeatble special holidays
2912
2913 C<$month>   = the month of datedue
2914 C<$day>     = the day of datedue
2915 C<$itemnumber>  = itemnumber
2916 C<$branchcode>  = localisation of issue 
2917
2918 =cut
2919
2920 sub CheckRepeatableSpecialHolidays{
2921 my ($month,$day,$itemnumber,$branchcode) = @_;
2922 my $dbh = C4::Context->dbh;
2923 my $query=qq|SELECT count(*) 
2924              FROM `repeatable_holidays`
2925              WHERE month=?
2926              AND day=?
2927              AND branchcode=?
2928             |;
2929 my $sth = $dbh->prepare($query);
2930 $sth->execute($month,$day,$branchcode);
2931 my $countspecial=$sth->fetchrow ;
2932 $sth->finish;
2933 return $countspecial;
2934 }
2935
2936
2937
2938 sub CheckValidBarcode{
2939 my ($barcode) = @_;
2940 my $dbh = C4::Context->dbh;
2941 my $query=qq|SELECT count(*) 
2942              FROM items 
2943              WHERE barcode=?
2944             |;
2945 my $sth = $dbh->prepare($query);
2946 $sth->execute($barcode);
2947 my $exist=$sth->fetchrow ;
2948 $sth->finish;
2949 return $exist;
2950 }
2951
2952 =head2 IsBranchTransferAllowed
2953
2954   $allowed = IsBranchTransferAllowed( $toBranch, $fromBranch, $code );
2955
2956 Code is either an itemtype or collection doe depending on the pref BranchTransferLimitsType
2957
2958 =cut
2959
2960 sub IsBranchTransferAllowed {
2961         my ( $toBranch, $fromBranch, $code ) = @_;
2962
2963         if ( $toBranch eq $fromBranch ) { return 1; } ## Short circuit for speed.
2964         
2965         my $limitType = C4::Context->preference("BranchTransferLimitsType");   
2966         my $dbh = C4::Context->dbh;
2967             
2968         my $sth = $dbh->prepare("SELECT * FROM branch_transfer_limits WHERE toBranch = ? AND fromBranch = ? AND $limitType = ?");
2969         $sth->execute( $toBranch, $fromBranch, $code );
2970         my $limit = $sth->fetchrow_hashref();
2971                         
2972         ## If a row is found, then that combination is not allowed, if no matching row is found, then the combination *is allowed*
2973         if ( $limit->{'limitId'} ) {
2974                 return 0;
2975         } else {
2976                 return 1;
2977         }
2978 }                                                        
2979
2980 =head2 CreateBranchTransferLimit
2981
2982   CreateBranchTransferLimit( $toBranch, $fromBranch, $code );
2983
2984 $code is either itemtype or collection code depending on what the pref BranchTransferLimitsType is set to.
2985
2986 =cut
2987
2988 sub CreateBranchTransferLimit {
2989    my ( $toBranch, $fromBranch, $code ) = @_;
2990
2991    my $limitType = C4::Context->preference("BranchTransferLimitsType");
2992    
2993    my $dbh = C4::Context->dbh;
2994    
2995    my $sth = $dbh->prepare("INSERT INTO branch_transfer_limits ( $limitType, toBranch, fromBranch ) VALUES ( ?, ?, ? )");
2996    $sth->execute( $code, $toBranch, $fromBranch );
2997 }
2998
2999 =head2 DeleteBranchTransferLimits
3000
3001   DeleteBranchTransferLimits();
3002
3003 =cut
3004
3005 sub DeleteBranchTransferLimits {
3006    my $dbh = C4::Context->dbh;
3007    my $sth = $dbh->prepare("TRUNCATE TABLE branch_transfer_limits");
3008    $sth->execute();
3009 }
3010
3011 sub ReturnLostItem{
3012     my ( $borrowernumber, $itemnum ) = @_;
3013
3014     MarkIssueReturned( $borrowernumber, $itemnum );
3015     my $borrower = C4::Members::GetMember( 'borrowernumber'=>$borrowernumber );
3016     my @datearr = localtime(time);
3017     my $date = ( 1900 + $datearr[5] ) . "-" . ( $datearr[4] + 1 ) . "-" . $datearr[3];
3018     my $bor = "$borrower->{'firstname'} $borrower->{'surname'} $borrower->{'cardnumber'}";
3019     ModItem({ paidfor =>  "Paid for by $bor $date" }, undef, $itemnum);
3020 }
3021
3022
3023 sub LostItem{
3024     my ($itemnumber, $mark_returned, $charge_fee) = @_;
3025
3026     my $dbh = C4::Context->dbh();
3027     my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title 
3028                            FROM issues 
3029                            JOIN items USING (itemnumber) 
3030                            JOIN biblio USING (biblionumber)
3031                            WHERE issues.itemnumber=?");
3032     $sth->execute($itemnumber);
3033     my $issues=$sth->fetchrow_hashref();
3034     $sth->finish;
3035
3036     # if a borrower lost the item, add a replacement cost to the their record
3037     if ( my $borrowernumber = $issues->{borrowernumber} ){
3038
3039         C4::Accounts::chargelostitem($borrowernumber, $itemnumber, $issues->{'replacementprice'}, "Lost Item $issues->{'title'} $issues->{'barcode'}")
3040           if $charge_fee;
3041         #FIXME : Should probably have a way to distinguish this from an item that really was returned.
3042         #warn " $issues->{'borrowernumber'}  /  $itemnumber ";
3043         MarkIssueReturned($borrowernumber,$itemnumber) if $mark_returned;
3044     }
3045 }
3046
3047
3048 1;
3049
3050 __END__
3051
3052 =head1 AUTHOR
3053
3054 Koha Development Team <http://koha-community.org/>
3055
3056 =cut
3057