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