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