[replaceprevious](bug #3678) Fix circulation
[koha.git] / C4 / Circulation.pm
1 package C4::Circulation;
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 use strict;
22 #use warnings;  # soon!
23 use C4::Context;
24 use C4::Stats;
25 use C4::Reserves;
26 use C4::Koha;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Members;
30 use C4::Dates;
31 use C4::Calendar;
32 use C4::Accounts;
33 use 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 $itemnumber = GetItemnumberFromBarcode($barcode);
1316     my $iteminformation = GetItemIssue( $itemnumber );
1317     my $biblio = GetBiblioItemData($iteminformation->{'biblioitemnumber'});
1318 #     use Data::Dumper;warn Data::Dumper::Dumper($iteminformation);  
1319     unless ( $iteminformation->{'itemnumber'} or $itemnumber) {
1320         $messages->{'BadBarcode'} = $barcode;
1321         $doreturn = 0;
1322     } else {
1323         # find the borrower
1324         if ( not $iteminformation->{borrowernumber} ) {
1325             $messages->{'NotIssued'} = $barcode;
1326             $doreturn = 0;
1327         }
1328         
1329         # even though item is not on loan, it may still
1330         # be transferred; therefore, get current branch information
1331         my $curr_iteminfo = GetItem($itemnumber);
1332         $iteminformation->{'homebranch'} = $curr_iteminfo->{'homebranch'};
1333         $iteminformation->{'holdingbranch'} = $curr_iteminfo->{'holdingbranch'};
1334         $iteminformation->{'itemlost'} = $curr_iteminfo->{'itemlost'};
1335         
1336         # check if the book is in a permanent collection....
1337         my $hbr      = $iteminformation->{C4::Context->preference("HomeOrHoldingBranch")};
1338         my $branches = GetBranches();
1339                 # FIXME -- This 'PE' attribute is largely undocumented.  afaict, there's no user interface that reflects this functionality.
1340         if ( $hbr && $branches->{$hbr}->{'PE'} ) {
1341             $messages->{'IsPermanent'} = $hbr;
1342         }
1343                 
1344                     # if independent branches are on and returning to different branch, refuse the return
1345         if ($hbr ne $branch && C4::Context->preference("IndependantBranches") && $iteminformation->{borrowernumber}){
1346                           $messages->{'Wrongbranch'} = 1;
1347                           $doreturn=0;
1348                     }
1349                         
1350         # check that the book has been cancelled
1351         if ( $iteminformation->{'wthdrawn'} ) {
1352             $messages->{'wthdrawn'} = 1;
1353             $doreturn = 0;
1354         }
1355     
1356
1357     #     new op dev : if the book returned in an other branch update the holding branch
1358     
1359     # update issues, thereby returning book (should push this out into another subroutine
1360         $borrower = C4::Members::GetMemberDetails( $iteminformation->{borrowernumber}, 0 );
1361     
1362     # case of a return of document (deal with issues and holdingbranch)
1363     
1364         if ($doreturn) {
1365                         my $circControlBranch = _GetCircControlBranch($iteminformation,$borrower);
1366                         if($dropbox) {
1367                                 # don't allow dropbox mode to create an invalid entry in issues (issuedate > returndate) FIXME: actually checks eq, not gt
1368                                 undef($dropbox) if ( $iteminformation->{'issuedate'} eq C4::Dates->today('iso') );
1369                         }
1370             MarkIssueReturned($borrower->{'borrowernumber'}, $iteminformation->{'itemnumber'},$circControlBranch);
1371             $messages->{'WasReturned'} = 1;    # FIXME is the "= 1" right?  
1372             # continue to deal with returns cases, but not only if we have an issue
1373             
1374             
1375             # We update the holdingbranch from circControlBranch variable
1376             UpdateHoldingbranch($branch,$iteminformation->{'itemnumber'});
1377             $iteminformation->{'holdingbranch'} = $branch;
1378         
1379             
1380             ModDateLastSeen( $iteminformation->{'itemnumber'} );
1381             ModItem({ onloan => undef }, $biblio->{'biblionumber'}, $iteminformation->{'itemnumber'});
1382
1383             if ($iteminformation->{borrowernumber}){
1384               ($borrower) = C4::Members::GetMemberDetails( $iteminformation->{borrowernumber}, 0 );
1385             }
1386         }
1387     
1388     # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
1389     #     check if we have a transfer for this document
1390         my ($datesent,$frombranch,$tobranch) = GetTransfers( $iteminformation->{'itemnumber'} );
1391     
1392     #     if we have a transfer to do, we update the line of transfers with the datearrived
1393         if ($datesent) {
1394             if ( $tobranch eq $branch ) {
1395                     my $sth =
1396                     $dbh->prepare(
1397                             "UPDATE branchtransfers SET datearrived = now() WHERE itemnumber= ? AND datearrived IS NULL"
1398                     );
1399                     $sth->execute( $iteminformation->{'itemnumber'} );
1400                     $sth->finish;
1401     #         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'
1402             C4::Reserves::ModReserveStatus( $iteminformation->{'itemnumber'},'W' );
1403             }
1404         else {
1405             $messages->{'WrongTransfer'} = $tobranch;
1406             $messages->{'WrongTransferItem'} = $iteminformation->{'itemnumber'};
1407         }
1408         $validTransfert = 1;
1409         }
1410     
1411     # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
1412         # fix up the accounts.....
1413         if ($iteminformation->{'itemlost'}) {
1414                 FixAccountForLostAndReturned($iteminformation, $borrower);
1415                 ModItem({ itemlost => '0' }, $biblio->{'biblionumber'}, $iteminformation->{'itemnumber'});
1416                 $messages->{'WasLost'} = 1;
1417         }
1418         # fix up the overdues in accounts...
1419         FixOverduesOnReturn( $borrower->{'borrowernumber'},
1420             $iteminformation->{'itemnumber'}, $exemptfine, $dropbox );
1421     
1422     # find reserves.....
1423     #     if we don't have a reserve with the status W, we launch the Checkreserves routine
1424         my ( $resfound, $resrec ) = 
1425         C4::Reserves::CheckReserves( $itemnumber, $barcode );
1426         if ($resfound) {
1427             $resrec->{'ResFound'}   = $resfound;
1428             $messages->{'ResFound'} = $resrec;
1429             $reserveDone = 1;
1430         }
1431     
1432         # update stats?
1433         # Record the fact that this book was returned.
1434         UpdateStats(
1435             $branch, 'return', '0', '',
1436             $iteminformation->{'itemnumber'},
1437             $biblio->{'itemtype'},
1438             $borrower->{'borrowernumber'}
1439         );
1440         
1441         logaction("CIRCULATION", "RETURN", $iteminformation->{borrowernumber}, $iteminformation->{'biblionumber'}) 
1442             if C4::Context->preference("ReturnLog");
1443         
1444         #adding message if holdingbranch is non equal a userenv branch to return the document to homebranch
1445         #we check, if we don't have reserv or transfert for this document, if not, return it to homebranch .
1446         
1447         if (($doreturn or $messages->{'NotIssued'}) and ($branch ne $iteminformation->{$hbr}) and not $messages->{'WrongTransfer'} and ($validTransfert ne 1) and ($reserveDone ne 1) ){
1448                         if (C4::Context->preference("AutomaticItemReturn") == 1) {
1449                                 ModItemTransfer($iteminformation->{'itemnumber'}, $branch, $iteminformation->{$hbr});
1450                                 $messages->{'WasTransfered'} = 1;
1451                         }
1452                         else {
1453                                 $messages->{'NeedsTransfer'} = 1;
1454                         }
1455         }
1456     }
1457     return ( $doreturn, $messages, $iteminformation, $borrower );
1458 }
1459
1460 =head2 MarkIssueReturned
1461
1462 =over 4
1463
1464 MarkIssueReturned($borrowernumber, $itemnumber, $dropbox_branch, $returndate);
1465
1466 =back
1467
1468 Unconditionally marks an issue as being returned by
1469 moving the C<issues> row to C<old_issues> and
1470 setting C<returndate> to the current date, or
1471 the last non-holiday date of the branccode specified in
1472 C<dropbox_branch> .  Assumes you've already checked that 
1473 it's safe to do this, i.e. last non-holiday > issuedate.
1474
1475 if C<$returndate> is specified (in iso format), it is used as the date
1476 of the return. It is ignored when a dropbox_branch is passed in.
1477
1478 Ideally, this function would be internal to C<C4::Circulation>,
1479 not exported, but it is currently needed by one 
1480 routine in C<C4::Accounts>.
1481
1482 =cut
1483
1484 sub MarkIssueReturned {
1485     my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate ) = @_;
1486     my $dbh   = C4::Context->dbh;
1487     my $query = "UPDATE issues SET returndate=";
1488     my @bind;
1489     if ($dropbox_branch) {
1490         my $calendar = C4::Calendar->new( branchcode => $dropbox_branch );
1491         my $dropboxdate = $calendar->addDate( C4::Dates->new(), -1 );
1492         $query .= " ? ";
1493         push @bind, $dropboxdate->output('iso');
1494     } elsif ($returndate) {
1495         $query .= " ? ";
1496         push @bind, $returndate;
1497     } else {
1498         $query .= " now() ";
1499     }
1500     $query .= " WHERE  borrowernumber = ?  AND itemnumber = ?";
1501     push @bind, $borrowernumber, $itemnumber;
1502     # FIXME transaction
1503     my $sth_upd  = $dbh->prepare($query);
1504     $sth_upd->execute(@bind);
1505     my $sth_copy = $dbh->prepare("INSERT INTO old_issues SELECT * FROM issues 
1506                                   WHERE borrowernumber = ?
1507                                   AND itemnumber = ?");
1508     $sth_copy->execute($borrowernumber, $itemnumber);
1509     my $sth_del  = $dbh->prepare("DELETE FROM issues
1510                                   WHERE borrowernumber = ?
1511                                   AND itemnumber = ?");
1512     $sth_del->execute($borrowernumber, $itemnumber);
1513 }
1514
1515 =head2 FixOverduesOnReturn
1516
1517     &FixOverduesOnReturn($brn,$itm, $exemptfine, $dropboxmode);
1518
1519 C<$brn> borrowernumber
1520
1521 C<$itm> itemnumber
1522
1523 C<$exemptfine> BOOL -- remove overdue charge associated with this issue. 
1524 C<$dropboxmode> BOOL -- remove lastincrement on overdue charge associated with this issue.
1525
1526 internal function, called only by AddReturn
1527
1528 =cut
1529
1530 sub FixOverduesOnReturn {
1531     my ( $borrowernumber, $item, $exemptfine, $dropbox ) = @_;
1532     my $dbh = C4::Context->dbh;
1533
1534     # check for overdue fine
1535     my $sth =
1536       $dbh->prepare(
1537 "SELECT * FROM accountlines WHERE (borrowernumber = ?) AND (itemnumber = ?) AND (accounttype='FU' OR accounttype='O')"
1538       );
1539     $sth->execute( $borrowernumber, $item );
1540
1541     # alter fine to show that the book has been returned
1542    my $data; 
1543         if ($data = $sth->fetchrow_hashref) {
1544         my $uquery;
1545                 my @bind = ($borrowernumber,$item ,$data->{'accountno'});
1546                 if ($exemptfine) {
1547                         $uquery = "update accountlines set accounttype='FFOR', amountoutstanding=0";
1548                         if (C4::Context->preference("FinesLog")) {
1549                         &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
1550                         }
1551                 } elsif ($dropbox && $data->{lastincrement}) {
1552                         my $outstanding = $data->{amountoutstanding} - $data->{lastincrement} ;
1553                         my $amt = $data->{amount} - $data->{lastincrement} ;
1554                         if (C4::Context->preference("FinesLog")) {
1555                         &logaction("FINES", 'MODIFY',$borrowernumber,"Dropbox adjustment $amt, item $item");
1556                         }
1557                          $uquery = "update accountlines set accounttype='F' ";
1558                          if($outstanding  >= 0 && $amt >=0) {
1559                                 $uquery .= ", amount = ? , amountoutstanding=? ";
1560                                 unshift @bind, ($amt, $outstanding) ;
1561                         }
1562                 } else {
1563                         $uquery = "update accountlines set accounttype='F' ";
1564                 }
1565                 $uquery .= " where (borrowernumber = ?) and (itemnumber = ?) and (accountno = ?)";
1566         my $usth = $dbh->prepare($uquery);
1567         $usth->execute(@bind);
1568         $usth->finish();
1569     }
1570
1571     $sth->finish();
1572     return;
1573 }
1574
1575 =head2 FixAccountForLostAndReturned
1576
1577         &FixAccountForLostAndReturned($iteminfo,$borrower);
1578
1579 Calculates the charge for a book lost and returned (Not exported & used only once)
1580
1581 C<$iteminfo> is a hashref to iteminfo. Only {itemnumber} is used.
1582
1583 C<$borrower> is a hashref to borrower. Only {borrowernumber is used.
1584
1585 Internal function, called by AddReturn
1586
1587 =cut
1588
1589 sub FixAccountForLostAndReturned {
1590         my ($iteminfo, $borrower) = @_;
1591         my $dbh = C4::Context->dbh;
1592         my $itm = $iteminfo->{'itemnumber'};
1593         # check for charge made for lost book
1594         my $sth = $dbh->prepare("SELECT * FROM accountlines WHERE (itemnumber = ?) AND (accounttype='L' OR accounttype='Rep') ORDER BY date DESC");
1595         $sth->execute($itm);
1596         if (my $data = $sth->fetchrow_hashref) {
1597         # writeoff this amount
1598                 my $offset;
1599                 my $amount = $data->{'amount'};
1600                 my $acctno = $data->{'accountno'};
1601                 my $amountleft;
1602                 if ($data->{'amountoutstanding'} == $amount) {
1603                 $offset = $data->{'amount'};
1604                 $amountleft = 0;
1605                 } else {
1606                 $offset = $amount - $data->{'amountoutstanding'};
1607                 $amountleft = $data->{'amountoutstanding'} - $amount;
1608                 }
1609                 my $usth = $dbh->prepare("UPDATE accountlines SET accounttype = 'LR',amountoutstanding='0'
1610                         WHERE (borrowernumber = ?)
1611                         AND (itemnumber = ?) AND (accountno = ?) ");
1612                 $usth->execute($data->{'borrowernumber'},$itm,$acctno);
1613         #check if any credit is left if so writeoff other accounts
1614                 my $nextaccntno = getnextacctno($data->{'borrowernumber'});
1615                 if ($amountleft < 0){
1616                 $amountleft*=-1;
1617                 }
1618                 if ($amountleft > 0){
1619                 my $msth = $dbh->prepare("SELECT * FROM accountlines WHERE (borrowernumber = ?)
1620                                                         AND (amountoutstanding >0) ORDER BY date");
1621                 $msth->execute($data->{'borrowernumber'});
1622         # offset transactions
1623                 my $newamtos;
1624                 my $accdata;
1625                 while (($accdata=$msth->fetchrow_hashref) and ($amountleft>0)){
1626                         if ($accdata->{'amountoutstanding'} < $amountleft) {
1627                         $newamtos = 0;
1628                         $amountleft -= $accdata->{'amountoutstanding'};
1629                         }  else {
1630                         $newamtos = $accdata->{'amountoutstanding'} - $amountleft;
1631                         $amountleft = 0;
1632                         }
1633                         my $thisacct = $accdata->{'accountno'};
1634                         my $usth = $dbh->prepare("UPDATE accountlines SET amountoutstanding= ?
1635                                         WHERE (borrowernumber = ?)
1636                                         AND (accountno=?)");
1637                         $usth->execute($newamtos,$data->{'borrowernumber'},'$thisacct');
1638                         $usth->finish;
1639                         $usth = $dbh->prepare("INSERT INTO accountoffsets
1640                                 (borrowernumber, accountno, offsetaccount,  offsetamount)
1641                                 VALUES
1642                                 (?,?,?,?)");
1643                         $usth->execute($data->{'borrowernumber'},$accdata->{'accountno'},$nextaccntno,$newamtos);
1644                 }
1645                 $msth->finish;  # $msth might actually have data left
1646                 }
1647                 if ($amountleft > 0){
1648                         $amountleft*=-1;
1649                 }
1650                 my $desc="Item Returned ".$iteminfo->{'barcode'};
1651                 $usth = $dbh->prepare("INSERT INTO accountlines
1652                         (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
1653                         VALUES (?,?,now(),?,?,'CR',?)");
1654                 $usth->execute($data->{'borrowernumber'},$nextaccntno,0-$amount,$desc,$amountleft);
1655                 $usth = $dbh->prepare("INSERT INTO accountoffsets
1656                         (borrowernumber, accountno, offsetaccount,  offsetamount)
1657                         VALUES (?,?,?,?)");
1658                 $usth->execute($borrower->{'borrowernumber'},$data->{'accountno'},$nextaccntno,$offset);
1659         ModItem({ paidfor => '' }, undef, $itm);
1660         }
1661         $sth->finish;
1662         return;
1663 }
1664
1665 =head2 _GetCircControlBranch
1666
1667    my $circ_control_branch = _GetCircControlBranch($iteminfos, $borrower);
1668
1669 Internal function : 
1670
1671 Return the library code to be used to determine which circulation
1672 policy applies to a transaction.  Looks up the CircControl and
1673 HomeOrHoldingBranch system preferences.
1674
1675 C<$iteminfos> is a hashref to iteminfo. Only {itemnumber} is used.
1676
1677 C<$borrower> is a hashref to borrower. Only {borrowernumber is used.
1678
1679 =cut
1680
1681 sub _GetCircControlBranch {
1682     my ($iteminfos, $borrower) = @_;
1683     my $circcontrol = C4::Context->preference('CircControl');
1684     my $branch;
1685
1686     if ($circcontrol eq 'PickupLibrary') {
1687         $branch= C4::Context->userenv->{'branch'};
1688     } elsif ($circcontrol eq 'PatronLibrary') {
1689         $branch=$borrower->{branchcode};
1690     } else {
1691         my $branchfield = C4::Context->preference('HomeOrHoldingBranch') || 'homebranch';
1692         $branch = $iteminfos->{$branchfield};
1693     }
1694     return $branch;
1695 }
1696
1697 =head2 GetItemIssue
1698
1699 $issues = &GetItemIssue($itemnumber);
1700
1701 Returns patron currently having a book, or undef if not checked out.
1702
1703 C<$itemnumber> is the itemnumber
1704
1705 C<$issues> is an array of hashes.
1706
1707 =cut
1708
1709 sub GetItemIssue {
1710     my ($itemnumber) = @_;
1711     return unless $itemnumber;
1712     my $sth = C4::Context->dbh->prepare(
1713         "SELECT *
1714         FROM issues 
1715         LEFT JOIN items ON issues.itemnumber=items.itemnumber
1716         WHERE issues.itemnumber=?");
1717     $sth->execute($itemnumber);
1718     my $data = $sth->fetchrow_hashref;
1719     return unless $data;
1720     $data->{'overdue'} = ($data->{'date_due'} lt C4::Dates->today('iso')) ? 1 : 0;
1721     $data->{'itemnumber'} = $itemnumber; # fill itemnumber, in case item is not on issue.
1722     # FIXME: that would mean issues.itemnumber IS NULL and we didn't really match it.
1723     return ($data);
1724 }
1725
1726 =head2 GetItemIssues
1727
1728 $issues = &GetItemIssues($itemnumber, $history);
1729
1730 Returns patrons that have issued a book
1731
1732 C<$itemnumber> is the itemnumber
1733 C<$history> is false if you just want the current "issuer" (if any)
1734 and true if you want issues history from old_issues also.
1735
1736 Returns reference to an array of hashes
1737
1738 =cut
1739
1740 sub GetItemIssues {
1741     my ( $itemnumber, $history ) = @_;
1742     
1743     my $today = C4::Dates->today('iso');  # get today date
1744     my $sql = "SELECT * FROM issues 
1745               JOIN borrowers USING (borrowernumber)
1746               JOIN items     USING (itemnumber)
1747               WHERE issues.itemnumber = ? ";
1748     if ($history) {
1749         $sql .= "UNION ALL
1750                  SELECT * FROM old_issues 
1751                  LEFT JOIN borrowers USING (borrowernumber)
1752                  JOIN items USING (itemnumber)
1753                  WHERE old_issues.itemnumber = ? ";
1754     }
1755     $sql .= "ORDER BY date_due DESC";
1756     my $sth = C4::Context->dbh->prepare($sql);
1757     if ($history) {
1758         $sth->execute($itemnumber, $itemnumber);
1759     } else {
1760         $sth->execute($itemnumber);
1761     }
1762     my $results = $sth->fetchall_arrayref({});
1763     foreach (@$results) {
1764         $_->{'overdue'} = ($_->{'date_due'} lt $today) ? 1 : 0;
1765     }
1766     return $results;
1767 }
1768
1769 =head2 GetBiblioIssues
1770
1771 $issues = GetBiblioIssues($biblionumber);
1772
1773 this function get all issues from a biblionumber.
1774
1775 Return:
1776 C<$issues> is a reference to array which each value is ref-to-hash. This ref-to-hash containts all column from
1777 tables issues and the firstname,surname & cardnumber from borrowers.
1778
1779 =cut
1780
1781 sub GetBiblioIssues {
1782     my $biblionumber = shift;
1783     return undef unless $biblionumber;
1784     my $dbh   = C4::Context->dbh;
1785     my $query = "
1786         SELECT issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
1787         FROM issues
1788             LEFT JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
1789             LEFT JOIN items ON issues.itemnumber = items.itemnumber
1790             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
1791             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
1792         WHERE biblio.biblionumber = ?
1793         UNION ALL
1794         SELECT old_issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
1795         FROM old_issues
1796             LEFT JOIN borrowers ON borrowers.borrowernumber = old_issues.borrowernumber
1797             LEFT JOIN items ON old_issues.itemnumber = items.itemnumber
1798             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
1799             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
1800         WHERE biblio.biblionumber = ?
1801         ORDER BY timestamp
1802     ";
1803     my $sth = $dbh->prepare($query);
1804     $sth->execute($biblionumber, $biblionumber);
1805
1806     my @issues;
1807     while ( my $data = $sth->fetchrow_hashref ) {
1808         push @issues, $data;
1809     }
1810     return \@issues;
1811 }
1812
1813 =head2 GetUpcomingDueIssues
1814
1815 =over 4
1816  
1817 my $upcoming_dues = GetUpcomingDueIssues( { days_in_advance => 4 } );
1818
1819 =back
1820
1821 =cut
1822
1823 sub GetUpcomingDueIssues {
1824     my $params = shift;
1825
1826     $params->{'days_in_advance'} = 7 unless exists $params->{'days_in_advance'};
1827     my $dbh = C4::Context->dbh;
1828
1829     my $statement = <<END_SQL;
1830 SELECT issues.*, items.itype as itemtype, items.homebranch, TO_DAYS( date_due )-TO_DAYS( NOW() ) as days_until_due
1831 FROM issues 
1832 LEFT JOIN items USING (itemnumber)
1833 WhERE returndate is NULL
1834 AND ( TO_DAYS( NOW() )-TO_DAYS( date_due ) ) < ?
1835 END_SQL
1836
1837     my @bind_parameters = ( $params->{'days_in_advance'} );
1838     
1839     my $sth = $dbh->prepare( $statement );
1840     $sth->execute( @bind_parameters );
1841     my $upcoming_dues = $sth->fetchall_arrayref({});
1842     $sth->finish;
1843
1844     return $upcoming_dues;
1845 }
1846
1847 =head2 CanBookBeRenewed
1848
1849 ($ok,$error) = &CanBookBeRenewed($borrowernumber, $itemnumber[, $override_limit]);
1850
1851 Find out whether a borrowed item may be renewed.
1852
1853 C<$dbh> is a DBI handle to the Koha database.
1854
1855 C<$borrowernumber> is the borrower number of the patron who currently
1856 has the item on loan.
1857
1858 C<$itemnumber> is the number of the item to renew.
1859
1860 C<$override_limit>, if supplied with a true value, causes
1861 the limit on the number of times that the loan can be renewed
1862 (as controlled by the item type) to be ignored.
1863
1864 C<$CanBookBeRenewed> returns a true value iff the item may be renewed. The
1865 item must currently be on loan to the specified borrower; renewals
1866 must be allowed for the item's type; and the borrower must not have
1867 already renewed the loan. $error will contain the reason the renewal can not proceed
1868
1869 =cut
1870
1871 sub CanBookBeRenewed {
1872
1873     # check renewal status
1874     my ( $borrowernumber, $itemnumber, $override_limit ) = @_;
1875     my $dbh       = C4::Context->dbh;
1876     my $renews    = 1;
1877     my $renewokay = 0;
1878         my $error;
1879
1880     # Look in the issues table for this item, lent to this borrower,
1881     # and not yet returned.
1882
1883     # FIXME - I think this function could be redone to use only one SQL call.
1884     my $sth1 = $dbh->prepare(
1885         "SELECT * FROM issues
1886             WHERE borrowernumber = ?
1887             AND itemnumber = ?"
1888     );
1889     $sth1->execute( $borrowernumber, $itemnumber );
1890     if ( my $data1 = $sth1->fetchrow_hashref ) {
1891
1892         # Found a matching item
1893
1894         # See if this item may be renewed. This query is convoluted
1895         # because it's a bit messy: given the item number, we need to find
1896         # the biblioitem, which gives us the itemtype, which tells us
1897         # whether it may be renewed.
1898         my $query = "SELECT renewalsallowed FROM items ";
1899         $query .= (C4::Context->preference('item-level_itypes'))
1900                     ? "LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype "
1901                     : "LEFT JOIN biblioitems on items.biblioitemnumber = biblioitems.biblioitemnumber
1902                        LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype ";
1903         $query .= "WHERE items.itemnumber = ?";
1904         my $sth2 = $dbh->prepare($query);
1905         $sth2->execute($itemnumber);
1906         if ( my $data2 = $sth2->fetchrow_hashref ) {
1907             $renews = $data2->{'renewalsallowed'};
1908         }
1909         if ( ( $renews && $renews > $data1->{'renewals'} ) || $override_limit ) {
1910             $renewokay = 1;
1911         }
1912         else {
1913                         $error="too_many";
1914                 }
1915         $sth2->finish;
1916         my ( $resfound, $resrec ) = C4::Reserves::CheckReserves($itemnumber);
1917         if ($resfound) {
1918             $renewokay = 0;
1919                         $error="on_reserve"
1920         }
1921
1922     }
1923     $sth1->finish;
1924     return ($renewokay,$error);
1925 }
1926
1927 =head2 AddRenewal
1928
1929 &AddRenewal($borrowernumber, $itemnumber, $branch, [$datedue], [$lastreneweddate]);
1930
1931 Renews a loan.
1932
1933 C<$borrowernumber> is the borrower number of the patron who currently
1934 has the item.
1935
1936 C<$itemnumber> is the number of the item to renew.
1937
1938 C<$branch> is the library where the renewal took place (if any).
1939            The library that controls the circ policies for the renewal is retrieved from the issues record.
1940
1941 C<$datedue> can be a C4::Dates object used to set the due date.
1942
1943 C<$lastreneweddate> is an optional ISO-formatted date used to set issues.lastreneweddate.  If
1944 this parameter is not supplied, lastreneweddate is set to the current date.
1945
1946 If C<$datedue> is the empty string, C<&AddRenewal> will calculate the due date automatically
1947 from the book's item type.
1948
1949 =cut
1950
1951 sub AddRenewal {
1952     
1953     my $borrowernumber  = shift or return undef;
1954     my $itemnumber      = shift or return undef;
1955     my $item   = GetItem($itemnumber) or return undef;
1956     my $branch  = (@_) ? shift : $item->{homebranch};   # opac-renew doesn't send branch
1957     my $datedue         = shift;
1958     my $lastreneweddate = shift || C4::Dates->new()->output('iso');
1959
1960
1961     my $biblio = GetBiblioFromItemNumber($itemnumber) or return undef;
1962
1963     # If the due date wasn't specified, calculate it by adding the
1964     # book's loan length to today's date.
1965     unless ($datedue && $datedue->output('iso')) {
1966
1967         my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 ) or return undef;
1968         my $loanlength = GetLoanLength(
1969             $borrower->{'categorycode'},
1970              (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'} ,
1971                         $item->{homebranch}                     # item's homebranch determines loanlength OR do we want the branch specified by the AddRenewal argument?
1972         );
1973                 #FIXME -- use circControl?
1974                 $datedue =  CalcDateDue(C4::Dates->new(),$loanlength,$branch);  # this branch is the transactional branch.
1975                                                                 # The question of whether to use item's homebranch calendar is open.
1976     }
1977
1978     # $lastreneweddate defaults to today.
1979     unless (defined $lastreneweddate) {
1980         $lastreneweddate = strftime( "%Y-%m-%d", localtime );
1981     }
1982
1983     my $dbh = C4::Context->dbh;
1984     # Find the issues record for this book
1985     my $sth =
1986       $dbh->prepare("SELECT * FROM issues
1987                         WHERE borrowernumber=? 
1988                         AND itemnumber=?"
1989       );
1990     $sth->execute( $borrowernumber, $itemnumber );
1991     my $issuedata = $sth->fetchrow_hashref;
1992     $sth->finish;
1993     if($datedue && ! $datedue->output('iso')){
1994         warn "Invalid date passed to AddRenewal.";
1995         return undef;
1996     }
1997     # If the due date wasn't specified, calculate it by adding the
1998     # book's loan length to today's date or the current due date
1999     # based on the value of the RenewalPeriodBase syspref.
2000     unless ($datedue) {
2001
2002         my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 ) or return undef;
2003         my $loanlength = GetLoanLength(
2004                     $borrower->{'categorycode'},
2005                     (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'} ,
2006                                 $issuedata->{'branchcode'}  );   # that's the circ control branch.
2007
2008         $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
2009                                         C4::Dates->new($issuedata->{date_due}, 'iso') :
2010                                         C4::Dates->new();
2011         $datedue =  CalcDateDue($datedue,$loanlength,$issuedata->{'branchcode'},$borrower);
2012     }
2013
2014     # Update the issues record to have the new due date, and a new count
2015     # of how many times it has been renewed.
2016     my $renews = $issuedata->{'renewals'} + 1;
2017     $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?, lastreneweddate = ?
2018                             WHERE borrowernumber=? 
2019                             AND itemnumber=?"
2020     );
2021     $sth->execute( $datedue->output('iso'), $renews, $lastreneweddate, $borrowernumber, $itemnumber );
2022     $sth->finish;
2023
2024     # Update the renewal count on the item, and tell zebra to reindex
2025     $renews = $biblio->{'renewals'} + 1;
2026     ModItem({ renewals => $renews, onloan => $datedue->output('iso') }, $biblio->{'biblionumber'}, $itemnumber);
2027
2028     # Charge a new rental fee, if applicable?
2029     my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
2030     if ( $charge > 0 ) {
2031         my $accountno = getnextacctno( $borrowernumber );
2032         my $item = GetBiblioFromItemNumber($itemnumber);
2033         $sth = $dbh->prepare(
2034                 "INSERT INTO accountlines
2035                     (date,
2036                                         borrowernumber, accountno, amount,
2037                     description,
2038                                         accounttype, amountoutstanding, itemnumber
2039                                         )
2040                     VALUES (now(),?,?,?,?,?,?,?)"
2041         );
2042         $sth->execute( $borrowernumber, $accountno, $charge,
2043             "Renewal of Rental Item $item->{'title'} $item->{'barcode'}",
2044             'Rent', $charge, $itemnumber );
2045         $sth->finish;
2046     }
2047     # Log the renewal
2048     UpdateStats( $branch, 'renew', $charge, '', $itemnumber, $item->{itype}, $borrowernumber);
2049         return $datedue;
2050 }
2051
2052 sub GetRenewCount {
2053     # check renewal status
2054     my ($bornum,$itemno)=@_;
2055     my $dbh = C4::Context->dbh;
2056     my $renewcount = 0;
2057         my $renewsallowed = 0;
2058         my $renewsleft = 0;
2059     # Look in the issues table for this item, lent to this borrower,
2060     # and not yet returned.
2061
2062     # FIXME - I think this function could be redone to use only one SQL call.
2063     my $sth = $dbh->prepare("select * from issues
2064                                 where (borrowernumber = ?)
2065                                 and (itemnumber = ?)");
2066     $sth->execute($bornum,$itemno);
2067     my $data = $sth->fetchrow_hashref;
2068     $renewcount = $data->{'renewals'} if $data->{'renewals'};
2069     $sth->finish;
2070     my $query = "SELECT renewalsallowed FROM items ";
2071     $query .= (C4::Context->preference('item-level_itypes'))
2072                 ? "LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype "
2073                 : "LEFT JOIN biblioitems on items.biblioitemnumber = biblioitems.biblioitemnumber
2074                    LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype ";
2075     $query .= "WHERE items.itemnumber = ?";
2076     my $sth2 = $dbh->prepare($query);
2077     $sth2->execute($itemno);
2078     my $data2 = $sth2->fetchrow_hashref();
2079     $renewsallowed = $data2->{'renewalsallowed'};
2080     $renewsleft = $renewsallowed - $renewcount;
2081     return ($renewcount,$renewsallowed,$renewsleft);
2082 }
2083
2084 =head2 GetIssuingCharges
2085
2086 ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
2087
2088 Calculate how much it would cost for a given patron to borrow a given
2089 item, including any applicable discounts.
2090
2091 C<$itemnumber> is the item number of item the patron wishes to borrow.
2092
2093 C<$borrowernumber> is the patron's borrower number.
2094
2095 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
2096 and C<$item_type> is the code for the item's item type (e.g., C<VID>
2097 if it's a video).
2098
2099 =cut
2100
2101 sub GetIssuingCharges {
2102
2103     # calculate charges due
2104     my ( $itemnumber, $borrowernumber ) = @_;
2105     my $charge = 0;
2106     my $dbh    = C4::Context->dbh;
2107     my $item_type;
2108
2109     # Get the book's item type and rental charge (via its biblioitem).
2110     my $qcharge =     "SELECT itemtypes.itemtype,rentalcharge FROM items
2111             LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber";
2112         $qcharge .= (C4::Context->preference('item-level_itypes'))
2113                 ? " LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype "
2114                 : " LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype ";
2115         
2116     $qcharge .=      "WHERE items.itemnumber =?";
2117    
2118     my $sth1 = $dbh->prepare($qcharge);
2119     $sth1->execute($itemnumber);
2120     if ( my $data1 = $sth1->fetchrow_hashref ) {
2121         $item_type = $data1->{'itemtype'};
2122         $charge    = $data1->{'rentalcharge'};
2123         my $q2 = "SELECT rentaldiscount FROM borrowers
2124             LEFT JOIN issuingrules ON borrowers.categorycode = issuingrules.categorycode
2125             WHERE borrowers.borrowernumber = ?
2126             AND issuingrules.itemtype = ?";
2127         my $sth2 = $dbh->prepare($q2);
2128         $sth2->execute( $borrowernumber, $item_type );
2129         if ( my $data2 = $sth2->fetchrow_hashref ) {
2130             my $discount = $data2->{'rentaldiscount'};
2131             if ( $discount eq 'NULL' ) {
2132                 $discount = 0;
2133             }
2134             $charge = ( $charge * ( 100 - $discount ) ) / 100;
2135         }
2136         $sth2->finish;
2137     }
2138
2139     $sth1->finish;
2140     return ( $charge, $item_type );
2141 }
2142
2143 =head2 AddIssuingCharge
2144
2145 &AddIssuingCharge( $itemno, $borrowernumber, $charge )
2146
2147 =cut
2148
2149 sub AddIssuingCharge {
2150     my ( $itemnumber, $borrowernumber, $charge ) = @_;
2151     my $dbh = C4::Context->dbh;
2152     my $nextaccntno = getnextacctno( $borrowernumber );
2153     my $query ="
2154         INSERT INTO accountlines
2155             (borrowernumber, itemnumber, accountno,
2156             date, amount, description, accounttype,
2157             amountoutstanding)
2158         VALUES (?, ?, ?,now(), ?, 'Rental', 'Rent',?)
2159     ";
2160     my $sth = $dbh->prepare($query);
2161     $sth->execute( $borrowernumber, $itemnumber, $nextaccntno, $charge, $charge );
2162     $sth->finish;
2163 }
2164
2165 =head2 GetTransfers
2166
2167 GetTransfers($itemnumber);
2168
2169 =cut
2170
2171 sub GetTransfers {
2172     my ($itemnumber) = @_;
2173
2174     my $dbh = C4::Context->dbh;
2175
2176     my $query = '
2177         SELECT datesent,
2178                frombranch,
2179                tobranch
2180         FROM branchtransfers
2181         WHERE itemnumber = ?
2182           AND datearrived IS NULL
2183         ';
2184     my $sth = $dbh->prepare($query);
2185     $sth->execute($itemnumber);
2186     my @row = $sth->fetchrow_array();
2187     $sth->finish;
2188     return @row;
2189 }
2190
2191
2192 =head2 GetTransfersFromTo
2193
2194 @results = GetTransfersFromTo($frombranch,$tobranch);
2195
2196 Returns the list of pending transfers between $from and $to branch
2197
2198 =cut
2199
2200 sub GetTransfersFromTo {
2201     my ( $frombranch, $tobranch ) = @_;
2202     return unless ( $frombranch && $tobranch );
2203     my $dbh   = C4::Context->dbh;
2204     my $query = "
2205         SELECT itemnumber,datesent,frombranch
2206         FROM   branchtransfers
2207         WHERE  frombranch=?
2208           AND  tobranch=?
2209           AND datearrived IS NULL
2210     ";
2211     my $sth = $dbh->prepare($query);
2212     $sth->execute( $frombranch, $tobranch );
2213     my @gettransfers;
2214
2215     while ( my $data = $sth->fetchrow_hashref ) {
2216         push @gettransfers, $data;
2217     }
2218     $sth->finish;
2219     return (@gettransfers);
2220 }
2221
2222 =head2 DeleteTransfer
2223
2224 &DeleteTransfer($itemnumber);
2225
2226 =cut
2227
2228 sub DeleteTransfer {
2229     my ($itemnumber) = @_;
2230     my $dbh          = C4::Context->dbh;
2231     my $sth          = $dbh->prepare(
2232         "DELETE FROM branchtransfers
2233          WHERE itemnumber=?
2234          AND datearrived IS NULL "
2235     );
2236     $sth->execute($itemnumber);
2237     $sth->finish;
2238 }
2239
2240 =head2 AnonymiseIssueHistory
2241
2242 $rows = AnonymiseIssueHistory($borrowernumber,$date)
2243
2244 This function write NULL instead of C<$borrowernumber> given on input arg into the table issues.
2245 if C<$borrowernumber> is not set, it will delete the issue history for all borrower older than C<$date>.
2246
2247 return the number of affected rows.
2248
2249 =cut
2250
2251 sub AnonymiseIssueHistory {
2252     my $date           = shift;
2253     my $borrowernumber = shift;
2254     my $dbh            = C4::Context->dbh;
2255     my $query          = "
2256         UPDATE old_issues
2257         SET    borrowernumber = NULL
2258         WHERE  returndate < '".$date."'
2259           AND borrowernumber IS NOT NULL
2260     ";
2261     $query .= " AND borrowernumber = '".$borrowernumber."'" if defined $borrowernumber;
2262     my $rows_affected = $dbh->do($query);
2263     return $rows_affected;
2264 }
2265
2266 =head2 updateWrongTransfer
2267
2268 $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
2269
2270 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 
2271
2272 =cut
2273
2274 sub updateWrongTransfer {
2275         my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
2276         my $dbh = C4::Context->dbh;     
2277 # first step validate the actual line of transfert .
2278         my $sth =
2279                 $dbh->prepare(
2280                         "update branchtransfers set datearrived = now(),tobranch=?,comments='wrongtransfer' where itemnumber= ? AND datearrived IS NULL"
2281                 );
2282                 $sth->execute($FromLibrary,$itemNumber);
2283                 $sth->finish;
2284
2285 # second step create a new line of branchtransfer to the right location .
2286         ModItemTransfer($itemNumber, $FromLibrary, $waitingAtLibrary);
2287
2288 #third step changing holdingbranch of item
2289         UpdateHoldingbranch($FromLibrary,$itemNumber);
2290 }
2291
2292 =head2 UpdateHoldingbranch
2293
2294 $items = UpdateHoldingbranch($branch,$itmenumber);
2295 Simple methode for updating hodlingbranch in items BDD line
2296
2297 =cut
2298
2299 sub UpdateHoldingbranch {
2300         my ( $branch,$itemnumber ) = @_;
2301     ModItem({ holdingbranch => $branch }, undef, $itemnumber);
2302 }
2303
2304 =head2 CalcDateDue
2305
2306 $newdatedue = CalcDateDue($startdate,$loanlength,$branchcode);
2307 this function calculates the due date given the loan length ,
2308 checking against the holidays calendar as per the 'useDaysMode' syspref.
2309 C<$startdate>   = C4::Dates object representing start date of loan period (assumed to be today)
2310 C<$branch>  = location whose calendar to use
2311 C<$loanlength>  = loan length prior to adjustment
2312 =cut
2313
2314 sub CalcDateDue { 
2315         my ($startdate,$loanlength,$branch,$borrower) = @_;
2316         my $datedue;
2317
2318         if(C4::Context->preference('useDaysMode') eq 'Days') {  # ignoring calendar
2319                 my $timedue = time + ($loanlength) * 86400;
2320         #FIXME - assumes now even though we take a startdate 
2321                 my @datearr  = localtime($timedue);
2322                 $datedue = C4::Dates->new( sprintf("%04d-%02d-%02d", 1900 + $datearr[5], $datearr[4] + 1, $datearr[3]), 'iso');
2323         } else {
2324                 my $calendar = C4::Calendar->new(  branchcode => $branch );
2325                 $datedue = $calendar->addDate($startdate, $loanlength);
2326         }
2327
2328         # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
2329         if ( C4::Context->preference('ReturnBeforeExpiry') && $datedue->output('iso') gt $borrower->{dateexpiry} ) {
2330             $datedue = C4::Dates->new( $borrower->{dateexpiry}, 'iso' );
2331         }
2332
2333         # if ceilingDueDate ON the datedue can't be after the ceiling date
2334         if ( C4::Context->preference('ceilingDueDate')
2335              && ( C4::Context->preference('ceilingDueDate') =~ C4::Dates->regexp('syspref') )
2336              && $datedue->output gt C4::Context->preference('ceilingDueDate') ) {
2337             $datedue = C4::Dates->new( C4::Context->preference('ceilingDueDate') );
2338         }
2339
2340         return $datedue;
2341 }
2342
2343 =head2 CheckValidDatedue
2344        This function does not account for holiday exceptions nor does it handle the 'useDaysMode' syspref .
2345        To be replaced by CalcDateDue() once C4::Calendar use is tested.
2346
2347 $newdatedue = CheckValidDatedue($date_due,$itemnumber,$branchcode);
2348 this function validates the loan length against the holidays calendar, and adjusts the due date as per the 'useDaysMode' syspref.
2349 C<$date_due>   = returndate calculate with no day check
2350 C<$itemnumber>  = itemnumber
2351 C<$branchcode>  = location of issue (affected by 'CircControl' syspref)
2352 C<$loanlength>  = loan length prior to adjustment
2353 =cut
2354
2355 sub CheckValidDatedue {
2356 my ($date_due,$itemnumber,$branchcode)=@_;
2357 my @datedue=split('-',$date_due->output('iso'));
2358 my $years=$datedue[0];
2359 my $month=$datedue[1];
2360 my $day=$datedue[2];
2361 # die "Item# $itemnumber ($branchcode) due: " . ${date_due}->output() . "\n(Y,M,D) = ($years,$month,$day)":
2362 my $dow;
2363 for (my $i=0;$i<2;$i++){
2364     $dow=Day_of_Week($years,$month,$day);
2365     ($dow=0) if ($dow>6);
2366     my $result=CheckRepeatableHolidays($itemnumber,$dow,$branchcode);
2367     my $countspecial=CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
2368     my $countspecialrepeatable=CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
2369         if (($result ne '0') or ($countspecial ne '0') or ($countspecialrepeatable ne '0') ){
2370         $i=0;
2371         (($years,$month,$day) = Add_Delta_Days($years,$month,$day, 1))if ($i ne '1');
2372         }
2373     }
2374     my $newdatedue=C4::Dates->new(sprintf("%04d-%02d-%02d",$years,$month,$day),'iso');
2375 return $newdatedue;
2376 }
2377
2378
2379 =head2 CheckRepeatableHolidays
2380
2381 $countrepeatable = CheckRepeatableHoliday($itemnumber,$week_day,$branchcode);
2382 this function checks if the date due is a repeatable holiday
2383 C<$date_due>   = returndate calculate with no day check
2384 C<$itemnumber>  = itemnumber
2385 C<$branchcode>  = localisation of issue 
2386
2387 =cut
2388
2389 sub CheckRepeatableHolidays{
2390 my($itemnumber,$week_day,$branchcode)=@_;
2391 my $dbh = C4::Context->dbh;
2392 my $query = qq|SELECT count(*)  
2393         FROM repeatable_holidays 
2394         WHERE branchcode=?
2395         AND weekday=?|;
2396 my $sth = $dbh->prepare($query);
2397 $sth->execute($branchcode,$week_day);
2398 my $result=$sth->fetchrow;
2399 $sth->finish;
2400 return $result;
2401 }
2402
2403
2404 =head2 CheckSpecialHolidays
2405
2406 $countspecial = CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
2407 this function check if the date is a special holiday
2408 C<$years>   = the years of datedue
2409 C<$month>   = the month of datedue
2410 C<$day>     = the day of datedue
2411 C<$itemnumber>  = itemnumber
2412 C<$branchcode>  = localisation of issue 
2413
2414 =cut
2415
2416 sub CheckSpecialHolidays{
2417 my ($years,$month,$day,$itemnumber,$branchcode) = @_;
2418 my $dbh = C4::Context->dbh;
2419 my $query=qq|SELECT count(*) 
2420              FROM `special_holidays`
2421              WHERE year=?
2422              AND month=?
2423              AND day=?
2424              AND branchcode=?
2425             |;
2426 my $sth = $dbh->prepare($query);
2427 $sth->execute($years,$month,$day,$branchcode);
2428 my $countspecial=$sth->fetchrow ;
2429 $sth->finish;
2430 return $countspecial;
2431 }
2432
2433 =head2 CheckRepeatableSpecialHolidays
2434
2435 $countspecial = CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
2436 this function check if the date is a repeatble special holidays
2437 C<$month>   = the month of datedue
2438 C<$day>     = the day of datedue
2439 C<$itemnumber>  = itemnumber
2440 C<$branchcode>  = localisation of issue 
2441
2442 =cut
2443
2444 sub CheckRepeatableSpecialHolidays{
2445 my ($month,$day,$itemnumber,$branchcode) = @_;
2446 my $dbh = C4::Context->dbh;
2447 my $query=qq|SELECT count(*) 
2448              FROM `repeatable_holidays`
2449              WHERE month=?
2450              AND day=?
2451              AND branchcode=?
2452             |;
2453 my $sth = $dbh->prepare($query);
2454 $sth->execute($month,$day,$branchcode);
2455 my $countspecial=$sth->fetchrow ;
2456 $sth->finish;
2457 return $countspecial;
2458 }
2459
2460
2461
2462 sub CheckValidBarcode{
2463 my ($barcode) = @_;
2464 my $dbh = C4::Context->dbh;
2465 my $query=qq|SELECT count(*) 
2466              FROM items 
2467              WHERE barcode=?
2468             |;
2469 my $sth = $dbh->prepare($query);
2470 $sth->execute($barcode);
2471 my $exist=$sth->fetchrow ;
2472 $sth->finish;
2473 return $exist;
2474 }
2475
2476 1;
2477
2478 __END__
2479
2480 =head1 AUTHOR
2481
2482 Koha Developement team <info@koha.org>
2483
2484 =cut
2485