AddReturn now always updates holdingbranch
[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 = _GetCircControlBranch($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 = _GetCircControlBranch($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 = _GetCircControlBranch($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 = _GetCircControlBranch($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         ModItem({ onloan => undef }, $issue->{'biblionumber'}, $item->{'itemnumber'});
1473     }
1474
1475     # the holdingbranch is updated if the document is returned to another location.
1476     # this is always done regardless of whether the item was on loan or not
1477     if ($item->{'holdingbranch'} ne $branch) {
1478         UpdateHoldingbranch($branch, $item->{'itemnumber'});
1479         $item->{'holdingbranch'} = $branch; # update item data holdingbranch too
1480     }
1481     ModDateLastSeen( $item->{'itemnumber'} );
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 _GetCircControlBranch
1780
1781    my $circ_control_branch = _GetCircControlBranch($iteminfos, $borrower);
1782
1783 Internal function : 
1784
1785 Return the library code to be used to determine which circulation
1786 policy applies to a transaction.  Looks up the CircControl and
1787 HomeOrHoldingBranch system preferences.
1788
1789 C<$iteminfos> is a hashref to iteminfo. Only {homebranch or holdingbranch} is used.
1790
1791 C<$borrower> is a hashref to borrower. Only {branchcode} is used.
1792
1793 =cut
1794
1795 sub _GetCircControlBranch {
1796     my ($item, $borrower) = @_;
1797     my $circcontrol = C4::Context->preference('CircControl');
1798     my $branch;
1799
1800     if ($circcontrol eq 'PickupLibrary') {
1801         $branch= C4::Context->userenv->{'branch'};
1802     } elsif ($circcontrol eq 'PatronLibrary') {
1803         $branch=$borrower->{branchcode};
1804     } else {
1805         my $branchfield = C4::Context->preference('HomeOrHoldingBranch') || 'homebranch';
1806         $branch = $item->{$branchfield};
1807         # default to item home branch if holdingbranch is used
1808         # and is not defined
1809         if (!defined($branch) && $branchfield eq 'holdingbranch') {
1810             $branch = $item->{homebranch};
1811         }
1812     }
1813     return $branch;
1814 }
1815
1816
1817
1818
1819
1820
1821 =head2 GetItemIssue
1822
1823 $issue = &GetItemIssue($itemnumber);
1824
1825 Returns patron currently having a book, or undef if not checked out.
1826
1827 C<$itemnumber> is the itemnumber.
1828
1829 C<$issue> is a hashref of the row from the issues table.
1830
1831 =cut
1832
1833 sub GetItemIssue {
1834     my ($itemnumber) = @_;
1835     return unless $itemnumber;
1836     my $sth = C4::Context->dbh->prepare(
1837         "SELECT *
1838         FROM issues 
1839         LEFT JOIN items ON issues.itemnumber=items.itemnumber
1840         WHERE issues.itemnumber=?");
1841     $sth->execute($itemnumber);
1842     my $data = $sth->fetchrow_hashref;
1843     return unless $data;
1844     $data->{'overdue'} = ($data->{'date_due'} lt C4::Dates->today('iso')) ? 1 : 0;
1845     return ($data);
1846 }
1847
1848 =head2 GetOpenIssue
1849
1850 $issue = GetOpenIssue( $itemnumber );
1851
1852 Returns the row from the issues table if the item is currently issued, undef if the item is not currently issued
1853
1854 C<$itemnumber> is the item's itemnumber
1855
1856 Returns a hashref
1857
1858 =cut
1859
1860 sub GetOpenIssue {
1861   my ( $itemnumber ) = @_;
1862
1863   my $dbh = C4::Context->dbh;  
1864   my $sth = $dbh->prepare( "SELECT * FROM issues WHERE itemnumber = ? AND returndate IS NULL" );
1865   $sth->execute( $itemnumber );
1866   my $issue = $sth->fetchrow_hashref();
1867   return $issue;
1868 }
1869
1870 =head2 GetItemIssues
1871
1872 $issues = &GetItemIssues($itemnumber, $history);
1873
1874 Returns patrons that have issued a book
1875
1876 C<$itemnumber> is the itemnumber
1877 C<$history> is false if you just want the current "issuer" (if any)
1878 and true if you want issues history from old_issues also.
1879
1880 Returns reference to an array of hashes
1881
1882 =cut
1883
1884 sub GetItemIssues {
1885     my ( $itemnumber, $history ) = @_;
1886     
1887     my $today = C4::Dates->today('iso');  # get today date
1888     my $sql = "SELECT * FROM issues 
1889               JOIN borrowers USING (borrowernumber)
1890               JOIN items     USING (itemnumber)
1891               WHERE issues.itemnumber = ? ";
1892     if ($history) {
1893         $sql .= "UNION ALL
1894                  SELECT * FROM old_issues 
1895                  LEFT JOIN borrowers USING (borrowernumber)
1896                  JOIN items USING (itemnumber)
1897                  WHERE old_issues.itemnumber = ? ";
1898     }
1899     $sql .= "ORDER BY date_due DESC";
1900     my $sth = C4::Context->dbh->prepare($sql);
1901     if ($history) {
1902         $sth->execute($itemnumber, $itemnumber);
1903     } else {
1904         $sth->execute($itemnumber);
1905     }
1906     my $results = $sth->fetchall_arrayref({});
1907     foreach (@$results) {
1908         $_->{'overdue'} = ($_->{'date_due'} lt $today) ? 1 : 0;
1909     }
1910     return $results;
1911 }
1912
1913 =head2 GetBiblioIssues
1914
1915 $issues = GetBiblioIssues($biblionumber);
1916
1917 this function get all issues from a biblionumber.
1918
1919 Return:
1920 C<$issues> is a reference to array which each value is ref-to-hash. This ref-to-hash containts all column from
1921 tables issues and the firstname,surname & cardnumber from borrowers.
1922
1923 =cut
1924
1925 sub GetBiblioIssues {
1926     my $biblionumber = shift;
1927     return undef unless $biblionumber;
1928     my $dbh   = C4::Context->dbh;
1929     my $query = "
1930         SELECT issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
1931         FROM issues
1932             LEFT JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
1933             LEFT JOIN items ON issues.itemnumber = items.itemnumber
1934             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
1935             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
1936         WHERE biblio.biblionumber = ?
1937         UNION ALL
1938         SELECT old_issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
1939         FROM old_issues
1940             LEFT JOIN borrowers ON borrowers.borrowernumber = old_issues.borrowernumber
1941             LEFT JOIN items ON old_issues.itemnumber = items.itemnumber
1942             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
1943             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
1944         WHERE biblio.biblionumber = ?
1945         ORDER BY timestamp
1946     ";
1947     my $sth = $dbh->prepare($query);
1948     $sth->execute($biblionumber, $biblionumber);
1949
1950     my @issues;
1951     while ( my $data = $sth->fetchrow_hashref ) {
1952         push @issues, $data;
1953     }
1954     return \@issues;
1955 }
1956
1957 =head2 GetUpcomingDueIssues
1958
1959 =over 4
1960  
1961 my $upcoming_dues = GetUpcomingDueIssues( { days_in_advance => 4 } );
1962
1963 =back
1964
1965 =cut
1966
1967 sub GetUpcomingDueIssues {
1968     my $params = shift;
1969
1970     $params->{'days_in_advance'} = 7 unless exists $params->{'days_in_advance'};
1971     my $dbh = C4::Context->dbh;
1972
1973     my $statement = <<END_SQL;
1974 SELECT issues.*, items.itype as itemtype, items.homebranch, TO_DAYS( date_due )-TO_DAYS( NOW() ) as days_until_due
1975 FROM issues 
1976 LEFT JOIN items USING (itemnumber)
1977 WhERE returndate is NULL
1978 AND ( TO_DAYS( NOW() )-TO_DAYS( date_due ) ) < ?
1979 END_SQL
1980
1981     my @bind_parameters = ( $params->{'days_in_advance'} );
1982     
1983     my $sth = $dbh->prepare( $statement );
1984     $sth->execute( @bind_parameters );
1985     my $upcoming_dues = $sth->fetchall_arrayref({});
1986     $sth->finish;
1987
1988     return $upcoming_dues;
1989 }
1990
1991 =head2 CanBookBeRenewed
1992
1993 ($ok,$error) = &CanBookBeRenewed($borrowernumber, $itemnumber[, $override_limit]);
1994
1995 Find out whether a borrowed item may be renewed.
1996
1997 C<$dbh> is a DBI handle to the Koha database.
1998
1999 C<$borrowernumber> is the borrower number of the patron who currently
2000 has the item on loan.
2001
2002 C<$itemnumber> is the number of the item to renew.
2003
2004 C<$override_limit>, if supplied with a true value, causes
2005 the limit on the number of times that the loan can be renewed
2006 (as controlled by the item type) to be ignored.
2007
2008 C<$CanBookBeRenewed> returns a true value iff the item may be renewed. The
2009 item must currently be on loan to the specified borrower; renewals
2010 must be allowed for the item's type; and the borrower must not have
2011 already renewed the loan. $error will contain the reason the renewal can not proceed
2012
2013 =cut
2014
2015 sub CanBookBeRenewed {
2016
2017     # check renewal status
2018     my ( $borrowernumber, $itemnumber, $override_limit ) = @_;
2019     my $dbh       = C4::Context->dbh;
2020     my $renews    = 1;
2021     my $renewokay = 0;
2022         my $error;
2023
2024     # Look in the issues table for this item, lent to this borrower,
2025     # and not yet returned.
2026
2027     # FIXME - I think this function could be redone to use only one SQL call.
2028     my $sth1 = $dbh->prepare(
2029         "SELECT * FROM issues
2030             WHERE borrowernumber = ?
2031             AND itemnumber = ?"
2032     );
2033     $sth1->execute( $borrowernumber, $itemnumber );
2034     if ( my $data1 = $sth1->fetchrow_hashref ) {
2035
2036         # Found a matching item
2037
2038         # See if this item may be renewed. This query is convoluted
2039         # because it's a bit messy: given the item number, we need to find
2040         # the biblioitem, which gives us the itemtype, which tells us
2041         # whether it may be renewed.
2042         my $query = "SELECT renewalsallowed FROM items ";
2043         $query .= (C4::Context->preference('item-level_itypes'))
2044                     ? "LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype "
2045                     : "LEFT JOIN biblioitems on items.biblioitemnumber = biblioitems.biblioitemnumber
2046                        LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype ";
2047         $query .= "WHERE items.itemnumber = ?";
2048         my $sth2 = $dbh->prepare($query);
2049         $sth2->execute($itemnumber);
2050         if ( my $data2 = $sth2->fetchrow_hashref ) {
2051             $renews = $data2->{'renewalsallowed'};
2052         }
2053         if ( ( $renews && $renews > $data1->{'renewals'} ) || $override_limit ) {
2054             $renewokay = 1;
2055         }
2056         else {
2057                         $error="too_many";
2058                 }
2059         $sth2->finish;
2060         my ( $resfound, $resrec ) = C4::Reserves::CheckReserves($itemnumber);
2061         if ($resfound) {
2062             $renewokay = 0;
2063                         $error="on_reserve"
2064         }
2065
2066     }
2067     $sth1->finish;
2068     return ($renewokay,$error);
2069 }
2070
2071 =head2 AddRenewal
2072
2073 &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate]);
2074
2075 Renews a loan.
2076
2077 C<$borrowernumber> is the borrower number of the patron who currently
2078 has the item.
2079
2080 C<$itemnumber> is the number of the item to renew.
2081
2082 C<$branch> is the library where the renewal took place (if any).
2083            The library that controls the circ policies for the renewal is retrieved from the issues record.
2084
2085 C<$datedue> can be a C4::Dates object used to set the due date.
2086
2087 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate.  If
2088 this parameter is not supplied, lastreneweddate is set to the current date.
2089
2090 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
2091 from the book's item type.
2092
2093 =cut
2094
2095 sub AddRenewal {
2096     my $borrowernumber  = shift or return undef;
2097     my $itemnumber      = shift or return undef;
2098     my $branch          = shift;
2099     my $datedue         = shift;
2100     my $lastreneweddate = shift || C4::Dates->new()->output('iso');
2101     my $item   = GetItem($itemnumber) or return undef;
2102     my $biblio = GetBiblioFromItemNumber($itemnumber) or return undef;
2103
2104     my $dbh = C4::Context->dbh;
2105     # Find the issues record for this book
2106     my $sth =
2107       $dbh->prepare("SELECT * FROM issues
2108                         WHERE borrowernumber=? 
2109                         AND itemnumber=?"
2110       );
2111     $sth->execute( $borrowernumber, $itemnumber );
2112     my $issuedata = $sth->fetchrow_hashref;
2113     $sth->finish;
2114     if($datedue && ! $datedue->output('iso')){
2115         warn "Invalid date passed to AddRenewal.";
2116         return undef;
2117     }
2118     # If the due date wasn't specified, calculate it by adding the
2119     # book's loan length to today's date or the current due date
2120     # based on the value of the RenewalPeriodBase syspref.
2121     unless ($datedue) {
2122
2123         my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 ) or return undef;
2124         my $loanlength = GetLoanLength(
2125                     $borrower->{'categorycode'},
2126                     (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'} ,
2127                                 $issuedata->{'branchcode'}  );   # that's the circ control branch.
2128
2129         $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
2130                                         C4::Dates->new($issuedata->{date_due}, 'iso') :
2131                                         C4::Dates->new();
2132         $datedue =  CalcDateDue($datedue,$loanlength,$issuedata->{'branchcode'},$borrower);
2133     }
2134
2135     # Update the issues record to have the new due date, and a new count
2136     # of how many times it has been renewed.
2137     my $renews = $issuedata->{'renewals'} + 1;
2138     $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, lastreneweddate = ?
2139                             WHERE borrowernumber=? 
2140                             AND itemnumber=?"
2141     );
2142     $sth->execute( $datedue->output('iso'), $renews, $lastreneweddate, $borrowernumber, $itemnumber );
2143     $sth->finish;
2144
2145     # Update the renewal count on the item, and tell zebra to reindex
2146     $renews = $biblio->{'renewals'} + 1;
2147     ModItem({ renewals => $renews, onloan => $datedue->output('iso') }, $biblio->{'biblionumber'}, $itemnumber);
2148
2149     # Charge a new rental fee, if applicable?
2150     my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
2151     if ( $charge > 0 ) {
2152         my $accountno = getnextacctno( $borrowernumber );
2153         my $item = GetBiblioFromItemNumber($itemnumber);
2154         $sth = $dbh->prepare(
2155                 "INSERT INTO accountlines
2156                     (date,
2157                                         borrowernumber, accountno, amount,
2158                     description,
2159                                         accounttype, amountoutstanding, itemnumber
2160                                         )
2161                     VALUES (now(),?,?,?,?,?,?,?)"
2162         );
2163         $sth->execute( $borrowernumber, $accountno, $charge,
2164             "Renewal of Rental Item $item->{'title'} $item->{'barcode'}",
2165             'Rent', $charge, $itemnumber );
2166         $sth->finish;
2167     }
2168     # Log the renewal
2169     UpdateStats( $branch, 'renew', $charge, '', $itemnumber, $item->{itype}, $borrowernumber);
2170         return $datedue;
2171 }
2172
2173 sub GetRenewCount {
2174     # check renewal status
2175     my ($bornum,$itemno)=@_;
2176     my $dbh = C4::Context->dbh;
2177     my $renewcount = 0;
2178         my $renewsallowed = 0;
2179         my $renewsleft = 0;
2180     # Look in the issues table for this item, lent to this borrower,
2181     # and not yet returned.
2182
2183     # FIXME - I think this function could be redone to use only one SQL call.
2184     my $sth = $dbh->prepare("select * from issues
2185                                 where (borrowernumber = ?)
2186                                 and (itemnumber = ?)");
2187     $sth->execute($bornum,$itemno);
2188     my $data = $sth->fetchrow_hashref;
2189     $renewcount = $data->{'renewals'} if $data->{'renewals'};
2190     $sth->finish;
2191     my $query = "SELECT renewalsallowed FROM items ";
2192     $query .= (C4::Context->preference('item-level_itypes'))
2193                 ? "LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype "
2194                 : "LEFT JOIN biblioitems on items.biblioitemnumber = biblioitems.biblioitemnumber
2195                    LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype ";
2196     $query .= "WHERE items.itemnumber = ?";
2197     my $sth2 = $dbh->prepare($query);
2198     $sth2->execute($itemno);
2199     my $data2 = $sth2->fetchrow_hashref();
2200     $renewsallowed = $data2->{'renewalsallowed'};
2201     $renewsleft = $renewsallowed - $renewcount;
2202     return ($renewcount,$renewsallowed,$renewsleft);
2203 }
2204
2205 =head2 GetIssuingCharges
2206
2207 ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
2208
2209 Calculate how much it would cost for a given patron to borrow a given
2210 item, including any applicable discounts.
2211
2212 C<$itemnumber> is the item number of item the patron wishes to borrow.
2213
2214 C<$borrowernumber> is the patron's borrower number.
2215
2216 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
2217 and C<$item_type> is the code for the item's item type (e.g., C<VID>
2218 if it's a video).
2219
2220 =cut
2221
2222 sub GetIssuingCharges {
2223
2224     # calculate charges due
2225     my ( $itemnumber, $borrowernumber ) = @_;
2226     my $charge = 0;
2227     my $dbh    = C4::Context->dbh;
2228     my $item_type;
2229
2230     # Get the book's item type and rental charge (via its biblioitem).
2231     my $qcharge =     "SELECT itemtypes.itemtype,rentalcharge FROM items
2232             LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber";
2233         $qcharge .= (C4::Context->preference('item-level_itypes'))
2234                 ? " LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype "
2235                 : " LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype ";
2236         
2237     $qcharge .=      "WHERE items.itemnumber =?";
2238    
2239     my $sth1 = $dbh->prepare($qcharge);
2240     $sth1->execute($itemnumber);
2241     if ( my $data1 = $sth1->fetchrow_hashref ) {
2242         $item_type = $data1->{'itemtype'};
2243         $charge    = $data1->{'rentalcharge'};
2244         my $q2 = "SELECT rentaldiscount FROM borrowers
2245             LEFT JOIN issuingrules ON borrowers.categorycode = issuingrules.categorycode
2246             WHERE borrowers.borrowernumber = ?
2247             AND issuingrules.itemtype = ?";
2248         my $sth2 = $dbh->prepare($q2);
2249         $sth2->execute( $borrowernumber, $item_type );
2250         if ( my $data2 = $sth2->fetchrow_hashref ) {
2251             my $discount = $data2->{'rentaldiscount'};
2252             if ( $discount eq 'NULL' ) {
2253                 $discount = 0;
2254             }
2255             $charge = ( $charge * ( 100 - $discount ) ) / 100;
2256         }
2257         $sth2->finish;
2258     }
2259
2260     $sth1->finish;
2261     return ( $charge, $item_type );
2262 }
2263
2264 =head2 AddIssuingCharge
2265
2266 &AddIssuingCharge( $itemno, $borrowernumber, $charge )
2267
2268 =cut
2269
2270 sub AddIssuingCharge {
2271     my ( $itemnumber, $borrowernumber, $charge ) = @_;
2272     my $dbh = C4::Context->dbh;
2273     my $nextaccntno = getnextacctno( $borrowernumber );
2274     my $query ="
2275         INSERT INTO accountlines
2276             (borrowernumber, itemnumber, accountno,
2277             date, amount, description, accounttype,
2278             amountoutstanding)
2279         VALUES (?, ?, ?,now(), ?, 'Rental', 'Rent',?)
2280     ";
2281     my $sth = $dbh->prepare($query);
2282     $sth->execute( $borrowernumber, $itemnumber, $nextaccntno, $charge, $charge );
2283     $sth->finish;
2284 }
2285
2286 =head2 GetTransfers
2287
2288 GetTransfers($itemnumber);
2289
2290 =cut
2291
2292 sub GetTransfers {
2293     my ($itemnumber) = @_;
2294
2295     my $dbh = C4::Context->dbh;
2296
2297     my $query = '
2298         SELECT datesent,
2299                frombranch,
2300                tobranch
2301         FROM branchtransfers
2302         WHERE itemnumber = ?
2303           AND datearrived IS NULL
2304         ';
2305     my $sth = $dbh->prepare($query);
2306     $sth->execute($itemnumber);
2307     my @row = $sth->fetchrow_array();
2308     $sth->finish;
2309     return @row;
2310 }
2311
2312 =head2 GetTransfersFromTo
2313
2314 @results = GetTransfersFromTo($frombranch,$tobranch);
2315
2316 Returns the list of pending transfers between $from and $to branch
2317
2318 =cut
2319
2320 sub GetTransfersFromTo {
2321     my ( $frombranch, $tobranch ) = @_;
2322     return unless ( $frombranch && $tobranch );
2323     my $dbh   = C4::Context->dbh;
2324     my $query = "
2325         SELECT itemnumber,datesent,frombranch
2326         FROM   branchtransfers
2327         WHERE  frombranch=?
2328           AND  tobranch=?
2329           AND datearrived IS NULL
2330     ";
2331     my $sth = $dbh->prepare($query);
2332     $sth->execute( $frombranch, $tobranch );
2333     my @gettransfers;
2334
2335     while ( my $data = $sth->fetchrow_hashref ) {
2336         push @gettransfers, $data;
2337     }
2338     $sth->finish;
2339     return (@gettransfers);
2340 }
2341
2342 =head2 DeleteTransfer
2343
2344 &DeleteTransfer($itemnumber);
2345
2346 =cut
2347
2348 sub DeleteTransfer {
2349     my ($itemnumber) = @_;
2350     my $dbh          = C4::Context->dbh;
2351     my $sth          = $dbh->prepare(
2352         "DELETE FROM branchtransfers
2353          WHERE itemnumber=?
2354          AND datearrived IS NULL "
2355     );
2356     $sth->execute($itemnumber);
2357     $sth->finish;
2358 }
2359
2360 =head2 AnonymiseIssueHistory
2361
2362 $rows = AnonymiseIssueHistory($borrowernumber,$date)
2363
2364 This function write NULL instead of C<$borrowernumber> given on input arg into the table issues.
2365 if C<$borrowernumber> is not set, it will delete the issue history for all borrower older than C<$date>.
2366
2367 return the number of affected rows.
2368
2369 =cut
2370
2371 sub AnonymiseIssueHistory {
2372     my $date           = shift;
2373     my $borrowernumber = shift;
2374     my $dbh            = C4::Context->dbh;
2375     my $query          = "
2376         UPDATE old_issues
2377         SET    borrowernumber = NULL
2378         WHERE  returndate < '".$date."'
2379           AND borrowernumber IS NOT NULL
2380     ";
2381     $query .= " AND borrowernumber = '".$borrowernumber."'" if defined $borrowernumber;
2382     my $rows_affected = $dbh->do($query);
2383     return $rows_affected;
2384 }
2385
2386 =head2 SendCirculationAlert
2387
2388 Send out a C<check-in> or C<checkout> alert using the messaging system.
2389
2390 B<Parameters>:
2391
2392 =over 4
2393
2394 =item type
2395
2396 Valid values for this parameter are: C<CHECKIN> and C<CHECKOUT>.
2397
2398 =item item
2399
2400 Hashref of information about the item being checked in or out.
2401
2402 =item borrower
2403
2404 Hashref of information about the borrower of the item.
2405
2406 =item branch
2407
2408 The branchcode from where the checkout or check-in took place.
2409
2410 =back
2411
2412 B<Example>:
2413
2414     SendCirculationAlert({
2415         type     => 'CHECKOUT',
2416         item     => $item,
2417         borrower => $borrower,
2418         branch   => $branch,
2419     });
2420
2421 =cut
2422
2423 sub SendCirculationAlert {
2424     my ($opts) = @_;
2425     my ($type, $item, $borrower, $branch) =
2426         ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch});
2427     my %message_name = (
2428         CHECKIN  => 'Item Check-in',
2429         CHECKOUT => 'Item Checkout',
2430     );
2431     my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({
2432         borrowernumber => $borrower->{borrowernumber},
2433         message_name   => $message_name{$type},
2434     });
2435     my $letter = C4::Letters::getletter('circulation', $type);
2436     C4::Letters::parseletter($letter, 'biblio',      $item->{biblionumber});
2437     C4::Letters::parseletter($letter, 'biblioitems', $item->{biblionumber});
2438     C4::Letters::parseletter($letter, 'borrowers',   $borrower->{borrowernumber});
2439     C4::Letters::parseletter($letter, 'branches',    $branch);
2440     my @transports = @{ $borrower_preferences->{transports} };
2441     # warn "no transports" unless @transports;
2442     for (@transports) {
2443         # warn "transport: $_";
2444         my $message = C4::Message->find_last_message($borrower, $type, $_);
2445         if (!$message) {
2446             #warn "create new message";
2447             C4::Message->enqueue($letter, $borrower, $_);
2448         } else {
2449             #warn "append to old message";
2450             $message->append($letter);
2451             $message->update;
2452         }
2453     }
2454     $letter;
2455 }
2456
2457 =head2 updateWrongTransfer
2458
2459 $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
2460
2461 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 
2462
2463 =cut
2464
2465 sub updateWrongTransfer {
2466         my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
2467         my $dbh = C4::Context->dbh;     
2468 # first step validate the actual line of transfert .
2469         my $sth =
2470                 $dbh->prepare(
2471                         "update branchtransfers set datearrived = now(),tobranch=?,comments='wrongtransfer' where itemnumber= ? AND datearrived IS NULL"
2472                 );
2473                 $sth->execute($FromLibrary,$itemNumber);
2474                 $sth->finish;
2475
2476 # second step create a new line of branchtransfer to the right location .
2477         ModItemTransfer($itemNumber, $FromLibrary, $waitingAtLibrary);
2478
2479 #third step changing holdingbranch of item
2480         UpdateHoldingbranch($FromLibrary,$itemNumber);
2481 }
2482
2483 =head2 UpdateHoldingbranch
2484
2485 $items = UpdateHoldingbranch($branch,$itmenumber);
2486 Simple methode for updating hodlingbranch in items BDD line
2487
2488 =cut
2489
2490 sub UpdateHoldingbranch {
2491         my ( $branch,$itemnumber ) = @_;
2492     ModItem({ holdingbranch => $branch }, undef, $itemnumber);
2493 }
2494
2495 =head2 CalcDateDue
2496
2497 $newdatedue = CalcDateDue($startdate,$loanlength,$branchcode);
2498 this function calculates the due date given the loan length ,
2499 checking against the holidays calendar as per the 'useDaysMode' syspref.
2500 C<$startdate>   = C4::Dates object representing start date of loan period (assumed to be today)
2501 C<$branch>  = location whose calendar to use
2502 C<$loanlength>  = loan length prior to adjustment
2503 =cut
2504
2505 sub CalcDateDue { 
2506         my ($startdate,$loanlength,$branch,$borrower) = @_;
2507         my $datedue;
2508
2509         if(C4::Context->preference('useDaysMode') eq 'Days') {  # ignoring calendar
2510                 my $timedue = time + ($loanlength) * 86400;
2511         #FIXME - assumes now even though we take a startdate 
2512                 my @datearr  = localtime($timedue);
2513                 $datedue = C4::Dates->new( sprintf("%04d-%02d-%02d", 1900 + $datearr[5], $datearr[4] + 1, $datearr[3]), 'iso');
2514         } else {
2515                 my $calendar = C4::Calendar->new(  branchcode => $branch );
2516                 $datedue = $calendar->addDate($startdate, $loanlength);
2517         }
2518
2519         # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
2520         if ( C4::Context->preference('ReturnBeforeExpiry') && $datedue->output('iso') gt $borrower->{dateexpiry} ) {
2521             $datedue = C4::Dates->new( $borrower->{dateexpiry}, 'iso' );
2522         }
2523
2524         # if ceilingDueDate ON the datedue can't be after the ceiling date
2525         if ( C4::Context->preference('ceilingDueDate')
2526              && ( C4::Context->preference('ceilingDueDate') =~ C4::Dates->regexp('syspref') ) ) {
2527             my $ceilingDate = C4::Dates->new( C4::Context->preference('ceilingDueDate') );
2528             if ( $datedue->output( 'iso' ) gt $ceilingDate->output( 'iso' ) ) {
2529                 $datedue = $ceilingDate;
2530             }
2531         }
2532
2533         return $datedue;
2534 }
2535
2536 =head2 CheckValidDatedue
2537        This function does not account for holiday exceptions nor does it handle the 'useDaysMode' syspref .
2538        To be replaced by CalcDateDue() once C4::Calendar use is tested.
2539
2540 $newdatedue = CheckValidDatedue($date_due,$itemnumber,$branchcode);
2541 this function validates the loan length against the holidays calendar, and adjusts the due date as per the 'useDaysMode' syspref.
2542 C<$date_due>   = returndate calculate with no day check
2543 C<$itemnumber>  = itemnumber
2544 C<$branchcode>  = location of issue (affected by 'CircControl' syspref)
2545 C<$loanlength>  = loan length prior to adjustment
2546 =cut
2547
2548 sub CheckValidDatedue {
2549 my ($date_due,$itemnumber,$branchcode)=@_;
2550 my @datedue=split('-',$date_due->output('iso'));
2551 my $years=$datedue[0];
2552 my $month=$datedue[1];
2553 my $day=$datedue[2];
2554 # die "Item# $itemnumber ($branchcode) due: " . ${date_due}->output() . "\n(Y,M,D) = ($years,$month,$day)":
2555 my $dow;
2556 for (my $i=0;$i<2;$i++){
2557     $dow=Day_of_Week($years,$month,$day);
2558     ($dow=0) if ($dow>6);
2559     my $result=CheckRepeatableHolidays($itemnumber,$dow,$branchcode);
2560     my $countspecial=CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
2561     my $countspecialrepeatable=CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
2562         if (($result ne '0') or ($countspecial ne '0') or ($countspecialrepeatable ne '0') ){
2563         $i=0;
2564         (($years,$month,$day) = Add_Delta_Days($years,$month,$day, 1))if ($i ne '1');
2565         }
2566     }
2567     my $newdatedue=C4::Dates->new(sprintf("%04d-%02d-%02d",$years,$month,$day),'iso');
2568 return $newdatedue;
2569 }
2570
2571
2572 =head2 CheckRepeatableHolidays
2573
2574 $countrepeatable = CheckRepeatableHoliday($itemnumber,$week_day,$branchcode);
2575 this function checks if the date due is a repeatable holiday
2576 C<$date_due>   = returndate calculate with no day check
2577 C<$itemnumber>  = itemnumber
2578 C<$branchcode>  = localisation of issue 
2579
2580 =cut
2581
2582 sub CheckRepeatableHolidays{
2583 my($itemnumber,$week_day,$branchcode)=@_;
2584 my $dbh = C4::Context->dbh;
2585 my $query = qq|SELECT count(*)  
2586         FROM repeatable_holidays 
2587         WHERE branchcode=?
2588         AND weekday=?|;
2589 my $sth = $dbh->prepare($query);
2590 $sth->execute($branchcode,$week_day);
2591 my $result=$sth->fetchrow;
2592 $sth->finish;
2593 return $result;
2594 }
2595
2596
2597 =head2 CheckSpecialHolidays
2598
2599 $countspecial = CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
2600 this function check if the date is a special holiday
2601 C<$years>   = the years of datedue
2602 C<$month>   = the month of datedue
2603 C<$day>     = the day of datedue
2604 C<$itemnumber>  = itemnumber
2605 C<$branchcode>  = localisation of issue 
2606
2607 =cut
2608
2609 sub CheckSpecialHolidays{
2610 my ($years,$month,$day,$itemnumber,$branchcode) = @_;
2611 my $dbh = C4::Context->dbh;
2612 my $query=qq|SELECT count(*) 
2613              FROM `special_holidays`
2614              WHERE year=?
2615              AND month=?
2616              AND day=?
2617              AND branchcode=?
2618             |;
2619 my $sth = $dbh->prepare($query);
2620 $sth->execute($years,$month,$day,$branchcode);
2621 my $countspecial=$sth->fetchrow ;
2622 $sth->finish;
2623 return $countspecial;
2624 }
2625
2626 =head2 CheckRepeatableSpecialHolidays
2627
2628 $countspecial = CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
2629 this function check if the date is a repeatble special holidays
2630 C<$month>   = the month of datedue
2631 C<$day>     = the day of datedue
2632 C<$itemnumber>  = itemnumber
2633 C<$branchcode>  = localisation of issue 
2634
2635 =cut
2636
2637 sub CheckRepeatableSpecialHolidays{
2638 my ($month,$day,$itemnumber,$branchcode) = @_;
2639 my $dbh = C4::Context->dbh;
2640 my $query=qq|SELECT count(*) 
2641              FROM `repeatable_holidays`
2642              WHERE month=?
2643              AND day=?
2644              AND branchcode=?
2645             |;
2646 my $sth = $dbh->prepare($query);
2647 $sth->execute($month,$day,$branchcode);
2648 my $countspecial=$sth->fetchrow ;
2649 $sth->finish;
2650 return $countspecial;
2651 }
2652
2653
2654
2655 sub CheckValidBarcode{
2656 my ($barcode) = @_;
2657 my $dbh = C4::Context->dbh;
2658 my $query=qq|SELECT count(*) 
2659              FROM items 
2660              WHERE barcode=?
2661             |;
2662 my $sth = $dbh->prepare($query);
2663 $sth->execute($barcode);
2664 my $exist=$sth->fetchrow ;
2665 $sth->finish;
2666 return $exist;
2667 }
2668
2669 =head2 IsBranchTransferAllowed
2670
2671 $allowed = IsBranchTransferAllowed( $toBranch, $fromBranch, $code );
2672
2673 Code is either an itemtype or collection doe depending on the pref BranchTransferLimitsType
2674
2675 =cut
2676
2677 sub IsBranchTransferAllowed {
2678         my ( $toBranch, $fromBranch, $code ) = @_;
2679
2680         if ( $toBranch eq $fromBranch ) { return 1; } ## Short circuit for speed.
2681         
2682         my $limitType = C4::Context->preference("BranchTransferLimitsType");   
2683         my $dbh = C4::Context->dbh;
2684             
2685         my $sth = $dbh->prepare("SELECT * FROM branch_transfer_limits WHERE toBranch = ? AND fromBranch = ? AND $limitType = ?");
2686         $sth->execute( $toBranch, $fromBranch, $code );
2687         my $limit = $sth->fetchrow_hashref();
2688                         
2689         ## If a row is found, then that combination is not allowed, if no matching row is found, then the combination *is allowed*
2690         if ( $limit->{'limitId'} ) {
2691                 return 0;
2692         } else {
2693                 return 1;
2694         }
2695 }                                                        
2696
2697 =head2 CreateBranchTransferLimit
2698
2699 CreateBranchTransferLimit( $toBranch, $fromBranch, $code );
2700
2701 $code is either itemtype or collection code depending on what the pref BranchTransferLimitsType is set to.
2702
2703 =cut
2704
2705 sub CreateBranchTransferLimit {
2706    my ( $toBranch, $fromBranch, $code ) = @_;
2707
2708    my $limitType = C4::Context->preference("BranchTransferLimitsType");
2709    
2710    my $dbh = C4::Context->dbh;
2711    
2712    my $sth = $dbh->prepare("INSERT INTO branch_transfer_limits ( $limitType, toBranch, fromBranch ) VALUES ( ?, ?, ? )");
2713    $sth->execute( $code, $toBranch, $fromBranch );
2714 }
2715
2716 =head2 DeleteBranchTransferLimits
2717
2718 DeleteBranchTransferLimits();
2719
2720 =cut
2721
2722 sub DeleteBranchTransferLimits {
2723    my $dbh = C4::Context->dbh;
2724    my $sth = $dbh->prepare("TRUNCATE TABLE branch_transfer_limits");
2725    $sth->execute();
2726 }
2727
2728
2729   1;
2730
2731 __END__
2732
2733 =head1 AUTHOR
2734
2735 Koha Developement team <info@koha.org>
2736
2737 =cut
2738