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