Adding calendar widget to circulation/stickyduedate
[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 require Exporter;
23 use C4::Context;
24 use C4::Stats;
25 use C4::Reserves;
26 use C4::Koha;
27 use C4::Biblio;
28 use C4::Members;
29 use C4::Date;
30 use Date::Calc qw(
31   Today
32   Today_and_Now
33   Add_Delta_YM
34   Add_Delta_DHMS
35   Date_to_Days
36   Day_of_Week
37   Add_Delta_Days        
38 );
39 use POSIX qw(strftime);
40 use C4::Branch; # GetBranches
41 use C4::Log; # logaction
42
43 our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,%EXPORT_TAGS);
44
45 # set the version for version checking
46 $VERSION = 3.00;
47
48 =head1 NAME
49
50 C4::Circulation - Koha circulation module
51
52 =head1 SYNOPSIS
53
54 use C4::Circulation;
55
56 =head1 DESCRIPTION
57
58 The functions in this module deal with circulation, issues, and
59 returns, as well as general information about the library.
60 Also deals with stocktaking.
61
62 =head1 FUNCTIONS
63
64 =cut
65
66 @ISA    = qw(Exporter);
67
68 # FIXME subs that should probably be elsewhere
69 push @EXPORT, qw(
70   &FixOverduesOnReturn
71   &cuecatbarcodedecode
72 );
73
74 # subs to deal with issuing a book
75 push @EXPORT, qw(
76   &CanBookBeIssued
77   &CanBookBeRenewed
78   &AddIssue
79   &AddRenewal
80   &GetItemIssue
81   &GetItemIssues
82   &GetBorrowerIssues
83   &GetIssuingCharges
84   &GetBiblioIssues
85   &AnonymiseIssueHistory
86 );
87 # subs to deal with returns
88 push @EXPORT, qw(
89   &AddReturn
90 );
91
92 # subs to deal with transfers
93 push @EXPORT, qw(
94   &transferbook
95   &GetTransfers
96   &GetTransfersFromTo
97   &updateWrongTransfer
98   &DeleteTransfer
99 );
100
101 # FIXME - At least, I'm pretty sure this is for decoding CueCat stuff.
102 # FIXME From Paul : i don't understand what this sub does & why it has to be called on every circ. Speak of this with chris maybe ?
103
104 =head2 decode
105
106 =head3 $str = &decode($chunk);
107
108 =over 4
109
110 =item Decodes a segment of a string emitted by a CueCat barcode scanner and
111 returns it.
112
113 =back
114
115 =cut
116
117 sub cuecatbarcodedecode {
118     my ($barcode) = @_;
119     chomp($barcode);
120     my @fields = split( /\./, $barcode );
121     my @results = map( decode($_), @fields[ 1 .. $#fields ] );
122     if ( $#results == 2 ) {
123         return $results[2];
124     }
125     else {
126         return $barcode;
127     }
128 }
129
130 =head2 decode
131
132 =head3 $str = &decode($chunk);
133
134 =over 4
135
136 =item Decodes a segment of a string emitted by a CueCat barcode scanner and
137 returns it.
138
139 =back
140
141 =cut
142
143 sub decode {
144     my ($encoded) = @_;
145     my $seq =
146       'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-';
147     my @s = map { index( $seq, $_ ); } split( //, $encoded );
148     my $l = ( $#s + 1 ) % 4;
149     if ($l) {
150         if ( $l == 1 ) {
151             warn "Error!";
152             return;
153         }
154         $l = 4 - $l;
155         $#s += $l;
156     }
157     my $r = '';
158     while ( $#s >= 0 ) {
159         my $n = ( ( $s[0] << 6 | $s[1] ) << 6 | $s[2] ) << 6 | $s[3];
160         $r .=
161             chr( ( $n >> 16 ) ^ 67 )
162          .chr( ( $n >> 8 & 255 ) ^ 67 )
163          .chr( ( $n & 255 ) ^ 67 );
164         @s = @s[ 4 .. $#s ];
165     }
166     $r = substr( $r, 0, length($r) - $l );
167     return $r;
168 }
169
170 =head2 transferbook
171
172 ($dotransfer, $messages, $iteminformation) = &transferbook($newbranch, $barcode, $ignore_reserves);
173
174 Transfers an item to a new branch. If the item is currently on loan, it is automatically returned before the actual transfer.
175
176 C<$newbranch> is the code for the branch to which the item should be transferred.
177
178 C<$barcode> is the barcode of the item to be transferred.
179
180 If C<$ignore_reserves> is true, C<&transferbook> ignores reserves.
181 Otherwise, if an item is reserved, the transfer fails.
182
183 Returns three values:
184
185 =head3 $dotransfer 
186
187 is true if the transfer was successful.
188
189 =head3 $messages
190
191 is a reference-to-hash which may have any of the following keys:
192
193 =over 4
194
195 =item C<BadBarcode>
196
197 There is no item in the catalog with the given barcode. The value is C<$barcode>.
198
199 =item C<IsPermanent>
200
201 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.
202
203 =item C<DestinationEqualsHolding>
204
205 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.
206
207 =item C<WasReturned>
208
209 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.
210
211 =item C<ResFound>
212
213 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>.
214
215 =item C<WasTransferred>
216
217 The item was eligible to be transferred. Barring problems communicating with the database, the transfer should indeed have succeeded. The value should be ignored.
218
219 =back
220
221 =cut
222
223 sub transferbook {
224     my ( $tbr, $barcode, $ignoreRs ) = @_;
225     my $messages;
226     my $dotransfer      = 1;
227     my $branches        = GetBranches();
228     my $itemnumber = GetItemnumberFromBarcode( $barcode );
229     my $issue      = GetItemIssue($itemnumber);
230     my $biblio = GetBiblioFromItemNumber($itemnumber);
231
232     # bad barcode..
233     if ( not $itemnumber ) {
234         $messages->{'BadBarcode'} = $barcode;
235         $dotransfer = 0;
236     }
237
238     # get branches of book...
239     my $hbr = $biblio->{'homebranch'};
240     my $fbr = $biblio->{'holdingbranch'};
241
242     # if is permanent...
243     if ( $hbr && $branches->{$hbr}->{'PE'} ) {
244         $messages->{'IsPermanent'} = $hbr;
245     }
246
247     # can't transfer book if is already there....
248     if ( $fbr eq $tbr ) {
249         $messages->{'DestinationEqualsHolding'} = 1;
250         $dotransfer = 0;
251     }
252
253     # check if it is still issued to someone, return it...
254     if ($issue->{borrowernumber}) {
255         AddReturn( $barcode, $fbr );
256         $messages->{'WasReturned'} = $issue->{borrowernumber};
257     }
258
259     # find reserves.....
260     # That'll save a database query.
261     my ( $resfound, $resrec ) =
262       CheckReserves( $itemnumber );
263     if ( $resfound and not $ignoreRs ) {
264         $resrec->{'ResFound'} = $resfound;
265
266         #         $messages->{'ResFound'} = $resrec;
267         $dotransfer = 1;
268     }
269
270     #actually do the transfer....
271     if ($dotransfer) {
272         ModItemTransfer( $itemnumber, $fbr, $tbr );
273
274         # don't need to update MARC anymore, we do it in batch now
275         $messages->{'WasTransfered'} = 1;
276                 ModDateLastSeen( $itemnumber );
277     }
278     return ( $dotransfer, $messages, $biblio );
279 }
280
281 =head2 CanBookBeIssued
282
283 Check if a book can be issued.
284
285 my ($issuingimpossible,$needsconfirmation) = CanBookBeIssued($borrower,$barcode,$year,$month,$day);
286
287 =over 4
288
289 =item C<$borrower> hash with borrower informations (from GetMemberDetails)
290
291 =item C<$barcode> is the bar code of the book being issued.
292
293 =item C<$year> C<$month> C<$day> contains the date of the return (in case it's forced by "stickyduedate".
294
295 =back
296
297 Returns :
298
299 =over 4
300
301 =item C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
302 Possible values are :
303
304 =back
305
306 =head3 INVALID_DATE 
307
308 sticky due date is invalid
309
310 =head3 GNA
311
312 borrower gone with no address
313
314 =head3 CARD_LOST
315
316 borrower declared it's card lost
317
318 =head3 DEBARRED
319
320 borrower debarred
321
322 =head3 UNKNOWN_BARCODE
323
324 barcode unknown
325
326 =head3 NOT_FOR_LOAN
327
328 item is not for loan
329
330 =head3 WTHDRAWN
331
332 item withdrawn.
333
334 =head3 RESTRICTED
335
336 item is restricted (set by ??)
337
338 C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
339 Possible values are :
340
341 =head3 DEBT
342
343 borrower has debts.
344
345 =head3 RENEW_ISSUE
346
347 renewing, not issuing
348
349 =head3 ISSUED_TO_ANOTHER
350
351 issued to someone else.
352
353 =head3 RESERVED
354
355 reserved for someone else.
356
357 =head3 INVALID_DATE
358
359 sticky due date is invalid
360
361 =head3 TOO_MANY
362
363 if the borrower borrows to much things
364
365 =cut
366
367 # check if a book can be issued.
368
369
370 sub TooMany {
371     my $borrower        = shift;
372     my $biblionumber = shift;
373         my $item                = shift;
374     my $cat_borrower    = $borrower->{'categorycode'};
375     my $branch_borrower = $borrower->{'branchcode'};
376     my $dbh             = C4::Context->dbh;
377
378  my $branch_issuer = C4::Context->userenv->{'branchcode'};
379 #TODO : specify issuer or borrower for circrule.
380   my $type = (C4::Context->preference('item-level_itypes')) 
381                         ? $item->{'itype'}         # item-level
382                         : $item->{'itemtype'};     # biblio-level
383   
384   my $sth =
385       $dbh->prepare(
386                 'SELECT * FROM issuingrules 
387                         WHERE categorycode = ? 
388                             AND branchcode = ?
389                             AND itemtype = ? '
390       );
391
392     my $query2 = "SELECT  COUNT(*) FROM issues i, biblioitems s1, items s2 
393                 WHERE i.borrowernumber = ? 
394                     AND i.returndate IS NULL 
395                     AND i.itemnumber = s2.itemnumber 
396                     AND s1.biblioitemnumber = s2.biblioitemnumber"
397                                 . (C4::Context->preference('item-level_itypes'))
398                                 ? " AND s2.itype=? "
399                 : " AND s1.itemtype= ? ";
400     my $sth2=  $dbh->prepare($query2);
401     my $sth3 =
402       $dbh->prepare(
403             'SELECT COUNT(*) FROM issues
404                 WHERE borrowernumber = ?
405                     AND returndate IS NULL'
406             );
407     my $alreadyissued;
408
409     # check the 3 parameters (branch / itemtype / category code
410     $sth->execute( $cat_borrower, $type, $branch_borrower );
411     my $result = $sth->fetchrow_hashref;
412 #     warn "$cat_borrower, $type, $branch_borrower = ".Data::Dumper::Dumper($result);
413
414     if ( $result->{maxissueqty} ne '' ) {
415 #         warn "checking on everything set";
416         $sth2->execute( $borrower->{'borrowernumber'}, $type );
417         my $alreadyissued = $sth2->fetchrow;
418         if ( $result->{'maxissueqty'} <= $alreadyissued ) {
419             return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on branch/category/itemtype failed)" );
420         }
421         # now checking for total
422         $sth->execute( $cat_borrower, '', $branch_borrower );
423         my $result = $sth->fetchrow_hashref;
424         if ( $result->{maxissueqty} ne '*' ) {
425             $sth2->execute( $borrower->{'borrowernumber'}, $type );
426             my $alreadyissued = $sth2->fetchrow;
427             if ( $result->{'maxissueqty'} <= $alreadyissued ) {
428                 return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on branch/category/total failed)"  );
429             }
430         }
431     }
432
433     # check the 2 parameters (branch / itemtype / default categorycode
434     $sth->execute( '*', $type, $branch_borrower );
435     my $result = $sth->fetchrow_hashref;
436 #     warn "*, $type, $branch_borrower = ".Data::Dumper::Dumper($result);
437
438     if ( $result->{maxissueqty} ne '' ) {
439 #         warn "checking on 2 parameters (default categorycode)";
440         $sth2->execute( $borrower->{'borrowernumber'}, $type );
441         my $alreadyissued = $sth2->fetchrow;
442         if ( $result->{'maxissueqty'} <= $alreadyissued ) {
443             return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on branch / default category / itemtype failed)"  );
444         }
445         # now checking for total
446         $sth->execute( '*', '*', $branch_borrower );
447         my $result = $sth->fetchrow_hashref;
448         if ( $result->{maxissueqty} ne '' ) {
449             $sth2->execute( $borrower->{'borrowernumber'}, $type );
450             my $alreadyissued = $sth2->fetchrow;
451             if ( $result->{'maxissueqty'} <= $alreadyissued ) {
452                 return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on branch / default category / total failed)" );
453             }
454         }
455     }
456     
457     # check the 1 parameters (default branch / itemtype / categorycode
458     $sth->execute( $cat_borrower, $type, '*' );
459     my $result = $sth->fetchrow_hashref;
460 #     warn "$cat_borrower, $type, * = ".Data::Dumper::Dumper($result);
461     
462     if ( $result->{maxissueqty} ne '' ) {
463 #         warn "checking on 1 parameter (default branch + categorycode)";
464         $sth2->execute( $borrower->{'borrowernumber'}, $type );
465         my $alreadyissued = $sth2->fetchrow;
466         if ( $result->{'maxissueqty'} <= $alreadyissued ) {
467             return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on default branch/category/itemtype failed)"  );
468         }
469         # now checking for total
470         $sth->execute( $cat_borrower, '*', '*' );
471         my $result = $sth->fetchrow_hashref;
472         if ( $result->{maxissueqty} ne '' ) {
473             $sth2->execute( $borrower->{'borrowernumber'}, $type );
474             my $alreadyissued = $sth2->fetchrow;
475             if ( $result->{'maxissueqty'} <= $alreadyissued ) {
476                 return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on default branch / category / total failed)"  );
477             }
478         }
479     }
480
481     # check the 0 parameters (default branch / itemtype / default categorycode
482     $sth->execute( '*', $type, '*' );
483     my $result = $sth->fetchrow_hashref;
484 #     warn "*, $type, * = ".Data::Dumper::Dumper($result);
485
486     if ( $result->{maxissueqty} ne '' ) {
487 #         warn "checking on default branch and default categorycode";
488         $sth2->execute( $borrower->{'borrowernumber'}, $type );
489         my $alreadyissued = $sth2->fetchrow;
490         if ( $result->{'maxissueqty'} <= $alreadyissued ) {
491             return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on default branch / default category / itemtype failed)"  );
492         }
493         # now checking for total
494         $sth->execute( '*', '*', '*' );
495         my $result = $sth->fetchrow_hashref;
496         if ( $result->{maxissueqty} ne '' ) {
497             $sth2->execute( $borrower->{'borrowernumber'}, $type );
498             my $alreadyissued = $sth2->fetchrow;
499             if ( $result->{'maxissueqty'} <= $alreadyissued ) {
500                 return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on default branch / default category / total failed)"  );
501             }
502         }
503     }
504
505     #OK, the patron can issue !!!
506     return;
507 }
508
509 =head2 itemissues
510
511   @issues = &itemissues($biblioitemnumber, $biblio);
512
513 Looks up information about who has borrowed the bookZ<>(s) with the
514 given biblioitemnumber.
515
516 C<$biblio> is ignored.
517
518 C<&itemissues> returns an array of references-to-hash. The keys
519 include the fields from the C<items> table in the Koha database.
520 Additional keys include:
521
522 =over 4
523
524 =item C<date_due>
525
526 If the item is currently on loan, this gives the due date.
527
528 If the item is not on loan, then this is either "Available" or
529 "Cancelled", if the item has been withdrawn.
530
531 =item C<card>
532
533 If the item is currently on loan, this gives the card number of the
534 patron who currently has the item.
535
536 =item C<timestamp0>, C<timestamp1>, C<timestamp2>
537
538 These give the timestamp for the last three times the item was
539 borrowed.
540
541 =item C<card0>, C<card1>, C<card2>
542
543 The card number of the last three patrons who borrowed this item.
544
545 =item C<borrower0>, C<borrower1>, C<borrower2>
546
547 The borrower number of the last three patrons who borrowed this item.
548
549 =back
550
551 =cut
552
553 #'
554 sub itemissues {
555     my ( $bibitem, $biblio ) = @_;
556     my $dbh = C4::Context->dbh;
557
558     # FIXME - If this function die()s, the script will abort, and the
559     # user won't get anything; depending on how far the script has
560     # gotten, the user might get a blank page. It would be much better
561     # to at least print an error message. The easiest way to do this
562     # is to set $SIG{__DIE__}.
563     my $sth =
564       $dbh->prepare("Select * from items where items.biblioitemnumber = ?")
565       || die $dbh->errstr;
566     my $i = 0;
567     my @results;
568
569     $sth->execute($bibitem) || die $sth->errstr;
570
571     while ( my $data = $sth->fetchrow_hashref ) {
572
573         # Find out who currently has this item.
574         # FIXME - Wouldn't it be better to do this as a left join of
575         # some sort? Currently, this code assumes that if
576         # fetchrow_hashref() fails, then the book is on the shelf.
577         # fetchrow_hashref() can fail for any number of reasons (e.g.,
578         # database server crash), not just because no items match the
579         # search criteria.
580         my $sth2 = $dbh->prepare(
581             "SELECT * FROM issues
582                 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
583                 WHERE itemnumber = ?
584                     AND returndate IS NULL
585             "
586         );
587
588         $sth2->execute( $data->{'itemnumber'} );
589         if ( my $data2 = $sth2->fetchrow_hashref ) {
590             $data->{'date_due'} = $data2->{'date_due'};
591             $data->{'card'}     = $data2->{'cardnumber'};
592             $data->{'borrower'} = $data2->{'borrowernumber'};
593         }
594         else {
595             if ( $data->{'wthdrawn'} eq '1' ) {
596                 $data->{'date_due'} = 'Cancelled';
597             }
598             else {
599                 $data->{'date_due'} = 'Available';
600             }    # else
601         }    # else
602
603         $sth2->finish;
604
605         # Find the last 3 people who borrowed this item.
606         $sth2 = $dbh->prepare(
607             "SELECT * FROM issues
608                 LEFT JOIN borrowers ON  issues.borrowernumber = borrowers.borrowernumber
609                 WHERE itemnumber = ?
610                 AND returndate IS NOT NULL
611                 ORDER BY returndate DESC,timestamp DESC"
612         );
613
614         $sth2->execute( $data->{'itemnumber'} );
615         for ( my $i2 = 0 ; $i2 < 2 ; $i2++ )
616         {    # FIXME : error if there is less than 3 pple borrowing this item
617             if ( my $data2 = $sth2->fetchrow_hashref ) {
618                 $data->{"timestamp$i2"} = $data2->{'timestamp'};
619                 $data->{"card$i2"}      = $data2->{'cardnumber'};
620                 $data->{"borrower$i2"}  = $data2->{'borrowernumber'};
621             }    # if
622         }    # for
623
624         $sth2->finish;
625         $results[$i] = $data;
626         $i++;
627     }
628
629     $sth->finish;
630     return (@results);
631 }
632
633 =head2 CanBookBeIssued
634
635 $issuingimpossible, $needsconfirmation = 
636         CanBookBeIssued( $borrower, $barcode, $duedatespec, $inprocess );
637 C<$duedatespec> is a C4::Dates object.
638 C<$issuingimpossible> and C<$needsconfirmation> are some hashref.
639
640 =cut
641
642 sub CanBookBeIssued {
643     my ( $borrower, $barcode, $duedate, $inprocess ) = @_;
644     my %needsconfirmation;    # filled with problems that needs confirmations
645     my %issuingimpossible;    # filled with problems that causes the issue to be IMPOSSIBLE
646     my $item = GetItem(GetItemnumberFromBarcode( $barcode ));
647     my $issue = GetItemIssue($item->{itemnumber});
648     my $dbh             = C4::Context->dbh;
649
650     #
651     # DUE DATE is OK ? -- should already have checked.
652     #
653     #$issuingimpossible{INVALID_DATE} = 1 unless ($duedate);
654
655     #
656     # BORROWER STATUS
657     #
658     if ( $borrower->{flags}->{GNA} ) {
659         $issuingimpossible{GNA} = 1;
660     }
661     if ( $borrower->{flags}->{'LOST'} ) {
662         $issuingimpossible{CARD_LOST} = 1;
663     }
664     if ( $borrower->{flags}->{'DBARRED'} ) {
665         $issuingimpossible{DEBARRED} = 1;
666     }
667     if ( $borrower->{'dateexpiry'} eq '0000-00-00') {
668         $issuingimpossible{EXPIRED} = 1;
669     } else {
670         my @expirydate=  split /-/,$borrower->{'dateexpiry'};
671         if($expirydate[0]==0 || $expirydate[1]==0|| $expirydate[2]==0 ||
672             Date_to_Days(Today) > Date_to_Days( @expirydate )) {
673             $issuingimpossible{EXPIRED} = 1;                                   
674         }
675     }
676     #
677     # BORROWER STATUS
678     #
679
680     # DEBTS
681     my ($amount) =
682       C4::Members::GetMemberAccountRecords( $borrower->{'borrowernumber'}, '' && $duedate->output('iso') );
683     if ( C4::Context->preference("IssuingInProcess") ) {
684         my $amountlimit = C4::Context->preference("noissuescharge");
685         if ( $amount > $amountlimit && !$inprocess ) {
686             $issuingimpossible{DEBT} = sprintf( "%.2f", $amount );
687         }
688         elsif ( $amount <= $amountlimit && !$inprocess ) {
689             $needsconfirmation{DEBT} = sprintf( "%.2f", $amount );
690         }
691     }
692     else {
693         if ( $amount > 0 ) {
694             $needsconfirmation{DEBT} = $amount;
695         }
696     }
697
698     #
699     # JB34 CHECKS IF BORROWERS DONT HAVE ISSUE TOO MANY BOOKS
700     #
701     
702         my $toomany = TooMany( $borrower, $item->{biblionumber}, $item );
703     $needsconfirmation{TOO_MANY} = $toomany if $toomany;
704
705     #
706     # ITEM CHECKING
707     #
708     unless ( $item->{barcode} ) {
709         $issuingimpossible{UNKNOWN_BARCODE} = 1;
710     }
711     if (   $item->{'notforloan'}
712         && $item->{'notforloan'} > 0 )
713     {
714         $issuingimpossible{NOT_FOR_LOAN} = 1;
715     }
716     if ( $item->{'wthdrawn'} && $item->{'wthdrawn'} == 1 )
717     {
718         $issuingimpossible{WTHDRAWN} = 1;
719     }
720     if (   $item->{'restricted'}
721         && $item->{'restricted'} == 1 )
722     {
723         $issuingimpossible{RESTRICTED} = 1;
724     }
725     if ( C4::Context->preference("IndependantBranches") ) {
726         my $userenv = C4::Context->userenv;
727         if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
728             $issuingimpossible{NOTSAMEBRANCH} = 1
729               if ( $item->{C4::Context->preference("HomeOrHoldingbranch")} ne $userenv->{branch} );
730         }
731     }
732
733     #
734     # CHECK IF BOOK ALREADY ISSUED TO THIS BORROWER
735     #
736     if ( $issue->{borrowernumber} && $issue->{borrowernumber} eq $borrower->{'borrowernumber'} )
737     {
738
739         # Already issued to current borrower. Ask whether the loan should
740         # be renewed.
741         my ($CanBookBeRenewed) = CanBookBeRenewed(
742             $borrower->{'borrowernumber'},
743             $item->{'itemnumber'}
744         );
745         if ( $CanBookBeRenewed == 0 ) {    # no more renewals allowed
746             $issuingimpossible{NO_MORE_RENEWALS} = 1;
747         }
748         else {
749             $needsconfirmation{RENEW_ISSUE} = 1;
750         }
751     }
752     elsif ($issue->{borrowernumber}) {
753
754         # issued to someone else
755         my $currborinfo = GetMemberDetails( $issue->{borrowernumber} );
756
757 #        warn "=>.$currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
758         $needsconfirmation{ISSUED_TO_ANOTHER} =
759 "$currborinfo->{'reservedate'} : $currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
760     }
761
762     # See if the item is on reserve.
763     my ( $restype, $res ) = C4::Reserves::CheckReserves( $item->{'itemnumber'} );
764     if ($restype) {
765         my $resbor = $res->{'borrowernumber'};
766         if ( $resbor ne $borrower->{'borrowernumber'} && $restype eq "Waiting" )
767         {
768
769             # The item is on reserve and waiting, but has been
770             # reserved by some other patron.
771             my ( $resborrower, $flags ) =
772               GetMemberDetails( $resbor, 0 );
773             my $branches   = GetBranches();
774             my $branchname =
775               $branches->{ $res->{'branchcode'} }->{'branchname'};
776             $needsconfirmation{RESERVE_WAITING} =
777 "$resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'}, $branchname)";
778
779 # CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'}); Doesn't belong in a checking subroutine.
780         }
781         elsif ( $restype eq "Reserved" ) {
782
783             # The item is on reserve for someone else.
784             my ( $resborrower, $flags ) =
785               GetMemberDetails( $resbor, 0 );
786             my $branches   = GetBranches();
787             my $branchname =
788               $branches->{ $res->{'branchcode'} }->{'branchname'};
789             $needsconfirmation{RESERVED} =
790 "$res->{'reservedate'} : $resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'})";
791         }
792     }
793     if ( C4::Context->preference("LibraryName") eq "Horowhenua Library Trust" ) {
794         if ( $borrower->{'categorycode'} eq 'W' ) {
795             my %issuingimpossible;
796             return ( \%issuingimpossible, \%needsconfirmation );
797         } else {
798             return ( \%issuingimpossible, \%needsconfirmation );
799         }
800     } else {
801         return ( \%issuingimpossible, \%needsconfirmation );
802     }
803 }
804
805 =head2 AddIssue
806
807 Issue a book. Does no check, they are done in CanBookBeIssued. If we reach this sub, it means the user confirmed if needed.
808
809 &AddIssue($borrower,$barcode,$date)
810
811 =over 4
812
813 =item C<$borrower> hash with borrower informations (from GetMemberDetails)
814
815 =item C<$barcode> is the bar code of the book being issued.
816
817 =item C<$date> contains the max date of return. calculated if empty.
818
819 AddIssue does the following things :
820 - step 01: check that there is a borrowernumber & a barcode provided
821 - check for RENEWAL (book issued & being issued to the same patron)
822     - renewal YES = Calculate Charge & renew
823     - renewal NO  = 
824         * BOOK ACTUALLY ISSUED ? do a return if book is actually issued (but to someone else)
825         * RESERVE PLACED ?
826             - fill reserve if reserve to this patron
827             - cancel reserve or not, otherwise
828         * TRANSFERT PENDING ?
829             - complete the transfert
830         * ISSUE THE BOOK
831
832 =back
833
834 =cut
835
836 sub AddIssue {
837     my ( $borrower, $barcode, $date, $cancelreserve ) = @_;
838     my $dbh = C4::Context->dbh;
839 my $barcodecheck=CheckValidBarcode($barcode);
840 if ($borrower and $barcode and $barcodecheck ne '0'){
841 #   my ($borrower, $flags) = &GetMemberDetails($borrowernumber, 0);
842     # find which item we issue
843     my $item = GetItem('', $barcode);
844         
845         my $datedue;
846     
847     # get actual issuing if there is one
848     my $actualissue = GetItemIssue( $item->{itemnumber});
849     
850     # get biblioinformation for this item
851     my $biblio = GetBiblioFromItemNumber($item->{itemnumber});
852
853     #
854     # check if we just renew the issue.
855     #
856     if ( $actualissue->{borrowernumber} eq $borrower->{'borrowernumber'} ) {
857         AddRenewal(
858             $borrower->{'borrowernumber'},
859             $item->{'itemnumber'}
860         );
861
862     }
863     else {# it's NOT a renewal
864         if ( $actualissue->{borrowernumber}) {
865             # This book is currently on loan, but not to the person
866             # who wants to borrow it now. mark it returned before issuing to the new borrower
867             AddReturn(
868                 $item->{'barcode'},
869                 C4::Context->userenv->{'branch'}
870             );
871         }
872
873         # See if the item is on reserve.
874         my ( $restype, $res ) =
875           C4::Reserves::CheckReserves( $item->{'itemnumber'} );
876         if ($restype) {
877             my $resbor = $res->{'borrowernumber'};
878             if ( $resbor eq $borrower->{'borrowernumber'} ) {
879
880                 # The item is reserved by the current patron
881                 ModReserveFill($res);
882             }
883             elsif ( $restype eq "Waiting" ) {
884
885                 # warn "Waiting";
886                 # The item is on reserve and waiting, but has been
887                 # reserved by some other patron.
888                 my ( $resborrower, $flags ) = GetMemberDetails( $resbor, 0 );
889                 my $branches   = GetBranches();
890                 my $branchname =
891                   $branches->{ $res->{'branchcode'} }->{'branchname'};
892             }
893             elsif ( $restype eq "Reserved" ) {
894
895                 # warn "Reserved";
896                 # The item is reserved by someone else.
897                 my ( $resborrower, $flags ) =
898                   GetMemberDetails( $resbor, 0 );
899                 my $branches   = GetBranches();
900                 my $branchname =
901                   $branches->{ $res->{'branchcode'} }->{'branchname'};
902                 if ($cancelreserve) { # cancel reserves on this item
903                     CancelReserve( 0, $res->{'itemnumber'},
904                         $res->{'borrowernumber'} );
905                 }
906             }
907             if ($cancelreserve) {
908                 CancelReserve( $res->{'biblionumber'}, 0,
909                     $res->{'borrowernumber'} );
910             }
911             else {
912     # set waiting reserve to first in reserve queue as book isn't waiting now
913                 ModReserve(
914                     1,
915                     $res->{'biblionumber'},
916                     $res->{'borrowernumber'},
917                     $res->{'branchcode'}
918                 );
919             }
920         }
921
922         # Starting process for transfer job (checking transfert and validate it if we have one)
923             my ($datesent) = GetTransfers($item->{'itemnumber'});
924             if ($datesent) {
925         #       updating line of branchtranfert to finish it, and changing the to branch value, implement a comment for lisibility of this case (maybe for stats ....)
926             my $sth =
927                     $dbh->prepare(
928                     "UPDATE branchtransfers 
929                         SET datearrived = now(),
930                         tobranch = ?,
931                         comments = 'Forced branchtransfert'
932                     WHERE itemnumber= ? AND datearrived IS NULL"
933                     );
934                     $sth->execute(C4::Context->userenv->{'branch'},$item->{'itemnumber'});
935                     $sth->finish;
936             }
937
938         # Record in the database the fact that the book was issued.
939         my $sth =
940           $dbh->prepare(
941                 "INSERT INTO issues 
942                     (borrowernumber, itemnumber,issuedate, date_due, branchcode)
943                 VALUES (?,?,?,?,?)"
944           );
945                 my $dateduef;
946         if ($date) {
947             $dateduef = $date;
948         } else {
949                         my $itype=(C4::Context->preference('item-level_itypes')) ?  $biblio->{'itype'} : $biblio->{'itemtype'} ;
950                 my $loanlength = GetLoanLength(
951                     $borrower->{'categorycode'},
952                     $itype,
953                     $borrower->{'branchcode'}
954                 );
955                 $datedue  = time + ($loanlength) * 86400;
956                 my @datearr  = localtime($datedue);
957                         $dateduef = C4::Dates->new( sprintf("%04d-%02d-%02d", 1900 + $datearr[5], $datearr[4] + 1, $datearr[3]), 'iso');
958                         $dateduef=CheckValidDatedue($dateduef,$item->{'itemnumber'},C4::Context->userenv->{'branch'});
959                 
960                 # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
961                 if ( C4::Context->preference('ReturnBeforeExpiry') && $dateduef gt $borrower->{dateexpiry} ) {
962                     $dateduef = $borrower->{dateexpiry};
963                 }
964         };
965                 $sth->execute(
966             $borrower->{'borrowernumber'},
967             $item->{'itemnumber'},
968             strftime( "%Y-%m-%d", localtime ),$dateduef->output('iso'), C4::Context->userenv->{'branch'}
969         );
970         $sth->finish;
971         $item->{'issues'}++;
972         $sth =
973           $dbh->prepare(
974             "UPDATE items SET issues=?, holdingbranch=?, itemlost=0, datelastborrowed  = now() WHERE itemnumber=?");
975         $sth->execute(
976             $item->{'issues'},
977             C4::Context->userenv->{'branch'},
978             $item->{'itemnumber'}
979         );
980         $sth->finish;
981         &ModDateLastSeen( $item->{'itemnumber'} );
982         # If it costs to borrow this book, charge it to the patron's account.
983         my ( $charge, $itemtype ) = GetIssuingCharges(
984             $item->{'itemnumber'},
985             $borrower->{'borrowernumber'}
986         );
987         if ( $charge > 0 ) {
988             AddIssuingCharge(
989                 $item->{'itemnumber'},
990                 $borrower->{'borrowernumber'}, $charge
991             );
992             $item->{'charge'} = $charge;
993         }
994
995         # Record the fact that this book was issued.
996         &UpdateStats(
997             C4::Context->userenv->{'branch'},
998             'issue',                        $charge,
999             '',                             $item->{'itemnumber'},
1000             $item->{'itemtype'}, $borrower->{'borrowernumber'}
1001         );
1002     }
1003     
1004     &logaction(C4::Context->userenv->{'number'},"CIRCULATION","ISSUE",$borrower->{'borrowernumber'},$biblio->{'biblionumber'}) 
1005         if C4::Context->preference("IssueLog");
1006     return ($datedue);
1007   }  
1008 }
1009
1010 =head2 GetLoanLength
1011
1012 Get loan length for an itemtype, a borrower type and a branch
1013
1014 my $loanlength = &GetLoanLength($borrowertype,$itemtype,branchcode)
1015
1016 =cut
1017
1018 sub GetLoanLength {
1019     my ( $borrowertype, $itemtype, $branchcode ) = @_;
1020     my $dbh = C4::Context->dbh;
1021     my $sth =
1022       $dbh->prepare(
1023 "select issuelength from issuingrules where categorycode=? and itemtype=? and branchcode=? and issuelength is not null"
1024       );
1025
1026 # try to find issuelength & return the 1st available.
1027 # check with borrowertype, itemtype and branchcode, then without one of those parameters
1028     $sth->execute( $borrowertype, $itemtype, $branchcode );
1029     my $loanlength = $sth->fetchrow_hashref;
1030     return $loanlength->{issuelength}
1031       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1032
1033     $sth->execute( $borrowertype, $itemtype, "*" );
1034     $loanlength = $sth->fetchrow_hashref;
1035     return $loanlength->{issuelength}
1036       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1037
1038     $sth->execute( $borrowertype, "*", $branchcode );
1039     $loanlength = $sth->fetchrow_hashref;
1040     return $loanlength->{issuelength}
1041       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1042
1043     $sth->execute( "*", $itemtype, $branchcode );
1044     $loanlength = $sth->fetchrow_hashref;
1045     return $loanlength->{issuelength}
1046       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1047
1048     $sth->execute( $borrowertype, "*", "*" );
1049     $loanlength = $sth->fetchrow_hashref;
1050     return $loanlength->{issuelength}
1051       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1052
1053     $sth->execute( "*", "*", $branchcode );
1054     $loanlength = $sth->fetchrow_hashref;
1055     return $loanlength->{issuelength}
1056       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1057
1058     $sth->execute( "*", $itemtype, "*" );
1059     $loanlength = $sth->fetchrow_hashref;
1060     return $loanlength->{issuelength}
1061       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1062
1063     $sth->execute( "*", "*", "*" );
1064     $loanlength = $sth->fetchrow_hashref;
1065     return $loanlength->{issuelength}
1066       if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1067
1068     # if no rule is set => 21 days (hardcoded)
1069     return 21;
1070 }
1071
1072 =head2 AddReturn
1073
1074 ($doreturn, $messages, $iteminformation, $borrower) =
1075     &AddReturn($barcode, $branch);
1076
1077 Returns a book.
1078
1079 C<$barcode> is the bar code of the book being returned. C<$branch> is
1080 the code of the branch where the book is being returned.
1081
1082 C<&AddReturn> returns a list of four items:
1083
1084 C<$doreturn> is true iff the return succeeded.
1085
1086 C<$messages> is a reference-to-hash giving the reason for failure:
1087
1088 =over 4
1089
1090 =item C<BadBarcode>
1091
1092 No item with this barcode exists. The value is C<$barcode>.
1093
1094 =item C<NotIssued>
1095
1096 The book is not currently on loan. The value is C<$barcode>.
1097
1098 =item C<IsPermanent>
1099
1100 The book's home branch is a permanent collection. If you have borrowed
1101 this book, you are not allowed to return it. The value is the code for
1102 the book's home branch.
1103
1104 =item C<wthdrawn>
1105
1106 This book has been withdrawn/cancelled. The value should be ignored.
1107
1108 =item C<ResFound>
1109
1110 The item was reserved. The value is a reference-to-hash whose keys are
1111 fields from the reserves table of the Koha database, and
1112 C<biblioitemnumber>. It also has the key C<ResFound>, whose value is
1113 either C<Waiting>, C<Reserved>, or 0.
1114
1115 =back
1116
1117 C<$borrower> is a reference-to-hash, giving information about the
1118 patron who last borrowed the book.
1119
1120 =cut
1121
1122 sub AddReturn {
1123     my ( $barcode, $branch ) = @_;
1124     my $dbh      = C4::Context->dbh;
1125     my $messages;
1126     my $doreturn = 1;
1127     my $borrower;
1128     my $validTransfert = 0;
1129     my $reserveDone = 0;
1130     
1131     # get information on item
1132     my $iteminformation = GetItemIssue( GetItemnumberFromBarcode($barcode));
1133     unless ($iteminformation->{'itemnumber'} ) {
1134         $messages->{'BadBarcode'} = $barcode;
1135         $doreturn = 0;
1136     } else {
1137         # find the borrower
1138         if ( ( not $iteminformation->{borrowernumber} ) && $doreturn ) {
1139             $messages->{'NotIssued'} = $barcode;
1140             $doreturn = 0;
1141         }
1142     
1143         # check if the book is in a permanent collection....
1144         my $hbr      = $iteminformation->{'homebranch'};
1145         my $branches = GetBranches();
1146         if ( $hbr && $branches->{$hbr}->{'PE'} ) {
1147             $messages->{'IsPermanent'} = $hbr;
1148         }
1149     
1150         # check that the book has been cancelled
1151         if ( $iteminformation->{'wthdrawn'} ) {
1152             $messages->{'wthdrawn'} = 1;
1153             $doreturn = 0;
1154         }
1155     
1156     #     new op dev : if the book returned in an other branch update the holding branch
1157     
1158     # update issues, thereby returning book (should push this out into another subroutine
1159         $borrower = C4::Members::GetMemberDetails( $iteminformation->{borrowernumber}, 0 );
1160     
1161     # case of a return of document (deal with issues and holdingbranch)
1162     
1163         if ($doreturn) {
1164             my $sth =
1165             $dbh->prepare(
1166     "UPDATE issues SET returndate = now() WHERE (borrowernumber = ?) AND (itemnumber = ?) AND (returndate IS NULL)"
1167             );
1168             $sth->execute( $borrower->{'borrowernumber'},
1169                 $iteminformation->{'itemnumber'} );
1170             $messages->{'WasReturned'} = 1;    # FIXME is the "= 1" right?
1171         }
1172     
1173     # continue to deal with returns cases, but not only if we have an issue
1174     
1175     # the holdingbranch is updated if the document is returned in an other location .
1176     if ( $iteminformation->{'holdingbranch'} ne C4::Context->userenv->{'branch'} )
1177             {
1178                     UpdateHoldingbranch(C4::Context->userenv->{'branch'},$iteminformation->{'itemnumber'});     
1179     #           reload iteminformation holdingbranch with the userenv value
1180                     $iteminformation->{'holdingbranch'} = C4::Context->userenv->{'branch'};
1181             }
1182         ModDateLastSeen( $iteminformation->{'itemnumber'} );
1183         ($borrower) = C4::Members::GetMemberDetails( $iteminformation->{borrowernumber}, 0 );
1184         
1185         # fix up the accounts.....
1186         if ( $iteminformation->{'itemlost'} ) {
1187             $messages->{'WasLost'} = 1;
1188         }
1189     
1190     # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
1191     #     check if we have a transfer for this document
1192         my ($datesent,$frombranch,$tobranch) = GetTransfers( $iteminformation->{'itemnumber'} );
1193     
1194     #     if we have a transfer to do, we update the line of transfers with the datearrived
1195         if ($datesent) {
1196             if ( $tobranch eq C4::Context->userenv->{'branch'} ) {
1197                     my $sth =
1198                     $dbh->prepare(
1199                             "UPDATE branchtransfers SET datearrived = now() WHERE itemnumber= ? AND datearrived IS NULL"
1200                     );
1201                     $sth->execute( $iteminformation->{'itemnumber'} );
1202                     $sth->finish;
1203     #         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'
1204             C4::Reserves::ModReserveStatus( $iteminformation->{'itemnumber'},'W' );
1205             }
1206         else {
1207             $messages->{'WrongTransfer'} = $tobranch;
1208             $messages->{'WrongTransferItem'} = $iteminformation->{'itemnumber'};
1209         }
1210         $validTransfert = 1;
1211         }
1212     
1213     # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
1214         # fix up the accounts.....
1215         if ($iteminformation->{'itemlost'}) {
1216                 FixAccountForLostAndReturned($iteminformation, $borrower);
1217                 $messages->{'WasLost'} = 1;
1218         }
1219         # fix up the overdues in accounts...
1220         FixOverduesOnReturn( $borrower->{'borrowernumber'},
1221             $iteminformation->{'itemnumber'} );
1222     
1223     # find reserves.....
1224     #     if we don't have a reserve with the status W, we launch the Checkreserves routine
1225         my ( $resfound, $resrec ) =
1226         C4::Reserves::CheckReserves( $iteminformation->{'itemnumber'} );
1227         if ($resfound) {
1228             $resrec->{'ResFound'}   = $resfound;
1229             $messages->{'ResFound'} = $resrec;
1230             $reserveDone = 1;
1231         }
1232     
1233         # update stats?
1234         # Record the fact that this book was returned.
1235         UpdateStats(
1236             $branch, 'return', '0', '',
1237             $iteminformation->{'itemnumber'},
1238             $iteminformation->{'itemtype'},
1239             $borrower->{'borrowernumber'}
1240         );
1241         
1242         &logaction(C4::Context->userenv->{'number'},"CIRCULATION","RETURN",$iteminformation->{borrowernumber},$iteminformation->{'biblionumber'}) 
1243             if C4::Context->preference("ReturnLog");
1244         
1245         #adding message if holdingbranch is non equal a userenv branch to return the document to homebranch
1246         #we check, if we don't have reserv or transfert for this document, if not, return it to homebranch .
1247         
1248         if ( ($iteminformation->{'holdingbranch'} ne $iteminformation->{'homebranch'}) and not $messages->{'WrongTransfer'} and ($validTransfert ne 1) and ($reserveDone ne 1) ){
1249                     if (C4::Context->preference("AutomaticItemReturn") == 1) {
1250                     ModItemTransfer($iteminformation->{'itemnumber'}, C4::Context->userenv->{'branch'}, $iteminformation->{'homebranch'});
1251                     $messages->{'WasTransfered'} = 1;
1252                     warn "was transfered";
1253                     }
1254         }
1255     }
1256     return ( $doreturn, $messages, $iteminformation, $borrower );
1257 }
1258
1259 =head2 FixOverduesOnReturn
1260
1261     &FixOverduesOnReturn($brn,$itm);
1262
1263 C<$brn> borrowernumber
1264
1265 C<$itm> itemnumber
1266
1267 internal function, called only by AddReturn
1268
1269 =cut
1270
1271 sub FixOverduesOnReturn {
1272     my ( $borrowernumber, $item ) = @_;
1273     my $dbh = C4::Context->dbh;
1274
1275     # check for overdue fine
1276     my $sth =
1277       $dbh->prepare(
1278 "SELECT * FROM accountlines WHERE (borrowernumber = ?) AND (itemnumber = ?) AND (accounttype='FU' OR accounttype='O')"
1279       );
1280     $sth->execute( $borrowernumber, $item );
1281
1282     # alter fine to show that the book has been returned
1283     if ( my $data = $sth->fetchrow_hashref ) {
1284         my $usth =
1285           $dbh->prepare(
1286 "UPDATE accountlines SET accounttype='F' WHERE (borrowernumber = ?) AND (itemnumber = ?) AND (accountno = ?)"
1287           );
1288         $usth->execute( $borrowernumber, $item, $data->{'accountno'} );
1289         $usth->finish();
1290     }
1291     $sth->finish();
1292     return;
1293 }
1294
1295 =head2 FixAccountForLostAndReturned
1296
1297         &FixAccountForLostAndReturned($iteminfo,$borrower);
1298
1299 Calculates the charge for a book lost and returned (Not exported & used only once)
1300
1301 C<$iteminfo> is a hashref to iteminfo. Only {itemnumber} is used.
1302
1303 C<$borrower> is a hashref to borrower. Only {borrowernumber is used.
1304
1305 Internal function, called by AddReturn
1306
1307 =cut
1308
1309 sub FixAccountForLostAndReturned {
1310         my ($iteminfo, $borrower) = @_;
1311         my %env;
1312         my $dbh = C4::Context->dbh;
1313         my $itm = $iteminfo->{'itemnumber'};
1314         # check for charge made for lost book
1315         my $sth = $dbh->prepare("SELECT * FROM accountlines WHERE (itemnumber = ?) AND (accounttype='L' OR accounttype='Rep') ORDER BY date DESC");
1316         $sth->execute($itm);
1317         if (my $data = $sth->fetchrow_hashref) {
1318         # writeoff this amount
1319                 my $offset;
1320                 my $amount = $data->{'amount'};
1321                 my $acctno = $data->{'accountno'};
1322                 my $amountleft;
1323                 if ($data->{'amountoutstanding'} == $amount) {
1324                 $offset = $data->{'amount'};
1325                 $amountleft = 0;
1326                 } else {
1327                 $offset = $amount - $data->{'amountoutstanding'};
1328                 $amountleft = $data->{'amountoutstanding'} - $amount;
1329                 }
1330                 my $usth = $dbh->prepare("UPDATE accountlines SET accounttype = 'LR',amountoutstanding='0'
1331                         WHERE (borrowernumber = ?)
1332                         AND (itemnumber = ?) AND (accountno = ?) ");
1333                 $usth->execute($data->{'borrowernumber'},$itm,$acctno);
1334                 $usth->finish;
1335         #check if any credit is left if so writeoff other accounts
1336                 my $nextaccntno = getnextacctno(\%env,$data->{'borrowernumber'},$dbh);
1337                 if ($amountleft < 0){
1338                 $amountleft*=-1;
1339                 }
1340                 if ($amountleft > 0){
1341                 my $msth = $dbh->prepare("SELECT * FROM accountlines WHERE (borrowernumber = ?)
1342                                                         AND (amountoutstanding >0) ORDER BY date");
1343                 $msth->execute($data->{'borrowernumber'});
1344         # offset transactions
1345                 my $newamtos;
1346                 my $accdata;
1347                 while (($accdata=$msth->fetchrow_hashref) and ($amountleft>0)){
1348                         if ($accdata->{'amountoutstanding'} < $amountleft) {
1349                         $newamtos = 0;
1350                         $amountleft -= $accdata->{'amountoutstanding'};
1351                         }  else {
1352                         $newamtos = $accdata->{'amountoutstanding'} - $amountleft;
1353                         $amountleft = 0;
1354                         }
1355                         my $thisacct = $accdata->{'accountno'};
1356                         my $usth = $dbh->prepare("UPDATE accountlines SET amountoutstanding= ?
1357                                         WHERE (borrowernumber = ?)
1358                                         AND (accountno=?)");
1359                         $usth->execute($newamtos,$data->{'borrowernumber'},'$thisacct');
1360                         $usth->finish;
1361                         $usth = $dbh->prepare("INSERT INTO accountoffsets
1362                                 (borrowernumber, accountno, offsetaccount,  offsetamount)
1363                                 VALUES
1364                                 (?,?,?,?)");
1365                         $usth->execute($data->{'borrowernumber'},$accdata->{'accountno'},$nextaccntno,$newamtos);
1366                         $usth->finish;
1367                 }
1368                 $msth->finish;
1369                 }
1370                 if ($amountleft > 0){
1371                         $amountleft*=-1;
1372                 }
1373                 my $desc="Book Returned ".$iteminfo->{'barcode'};
1374                 $usth = $dbh->prepare("INSERT INTO accountlines
1375                         (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
1376                         VALUES (?,?,now(),?,?,'CR',?)");
1377                 $usth->execute($data->{'borrowernumber'},$nextaccntno,0-$amount,$desc,$amountleft);
1378                 $usth->finish;
1379                 $usth = $dbh->prepare("INSERT INTO accountoffsets
1380                         (borrowernumber, accountno, offsetaccount,  offsetamount)
1381                         VALUES (?,?,?,?)");
1382                 $usth->execute($borrower->{'borrowernumber'},$data->{'accountno'},$nextaccntno,$offset);
1383                 $usth->finish;
1384                 $usth = $dbh->prepare("UPDATE items SET paidfor='' WHERE itemnumber=?");
1385                 $usth->execute($itm);
1386                 $usth->finish;
1387         }
1388         $sth->finish;
1389         return;
1390 }
1391
1392 =head2 GetItemIssue
1393
1394 $issues = &GetItemIssue($itemnumber);
1395
1396 Returns patrons currently having a book. nothing if item is not issued atm
1397
1398 C<$itemnumber> is the itemnumber
1399
1400 Returns an array of hashes
1401 =cut
1402
1403 sub GetItemIssue {
1404     my ( $itemnumber) = @_;
1405     return unless $itemnumber;
1406     my $dbh = C4::Context->dbh;
1407     my @GetItemIssues;
1408     
1409     # get today date
1410     my $today = POSIX::strftime("%Y%m%d", localtime);
1411
1412     my $sth = $dbh->prepare(
1413         "SELECT * FROM issues 
1414         LEFT JOIN items ON issues.itemnumber=items.itemnumber
1415     WHERE
1416     issues.itemnumber=?  AND returndate IS NULL ");
1417     $sth->execute($itemnumber);
1418     my $data = $sth->fetchrow_hashref;
1419     my $datedue = $data->{'date_due'};
1420     $datedue =~ s/-//g;
1421     if ( $datedue < $today ) {
1422         $data->{'overdue'} = 1;
1423     }
1424     $data->{'itemnumber'} = $itemnumber; # fill itemnumber, in case item is not on issue
1425     $sth->finish;
1426     return ($data);
1427 }
1428
1429 =head2 GetItemIssues
1430
1431 $issues = &GetItemIssues($itemnumber, $history);
1432
1433 Returns patrons that have issued a book
1434
1435 C<$itemnumber> is the itemnumber
1436 C<$history> is 0 if you want actuel "issuer" (if it exist) and 1 if you want issues history
1437
1438 Returns an array of hashes
1439 =cut
1440
1441 sub GetItemIssues {
1442     my ( $itemnumber,$history ) = @_;
1443     my $dbh = C4::Context->dbh;
1444     my @GetItemIssues;
1445     
1446     # get today date
1447     my $today = POSIX::strftime("%Y%m%d", localtime);
1448
1449     my $sth = $dbh->prepare(
1450         "SELECT * FROM issues 
1451         LEFT JOIN borrowers ON borrowers.borrowernumber 
1452         LEFT JOIN items ON items.itemnumber=issues.itemnumber 
1453     WHERE
1454     issues.itemnumber=?".($history?"":" AND returndate IS NULL ").
1455     "ORDER BY issues.date_due DESC"
1456     );
1457     $sth->execute($itemnumber);
1458     while ( my $data = $sth->fetchrow_hashref ) {
1459         my $datedue = $data->{'date_due'};
1460         $datedue =~ s/-//g;
1461         if ( $datedue < $today ) {
1462             $data->{'overdue'} = 1;
1463         }
1464         my $itemnumber = $data->{'itemnumber'};
1465         push @GetItemIssues, $data;
1466     }
1467     $sth->finish;
1468     return ( \@GetItemIssues );
1469 }
1470
1471 =head2 GetBiblioIssues
1472
1473 $issues = GetBiblioIssues($biblionumber);
1474
1475 this function get all issues from a biblionumber.
1476
1477 Return:
1478 C<$issues> is a reference to array which each value is ref-to-hash. This ref-to-hash containts all column from
1479 tables issues and the firstname,surname & cardnumber from borrowers.
1480
1481 =cut
1482
1483 sub GetBiblioIssues {
1484     my $biblionumber = shift;
1485     return undef unless $biblionumber;
1486     my $dbh   = C4::Context->dbh;
1487     my $query = "
1488         SELECT issues.*,items.barcode,biblio.biblionumber,biblio.title, biblio.author,borrowers.cardnumber,borrowers.surname,borrowers.firstname
1489         FROM issues
1490             LEFT JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
1491             LEFT JOIN items ON issues.itemnumber = items.itemnumber
1492             LEFT JOIN biblioitems ON items.itemnumber = biblioitems.biblioitemnumber
1493             LEFT JOIN biblio ON biblio.biblionumber = items.biblioitemnumber
1494         WHERE biblio.biblionumber = ?
1495         ORDER BY issues.timestamp
1496     ";
1497     my $sth = $dbh->prepare($query);
1498     $sth->execute($biblionumber);
1499
1500     my @issues;
1501     while ( my $data = $sth->fetchrow_hashref ) {
1502         push @issues, $data;
1503     }
1504     return \@issues;
1505 }
1506
1507 =head2 CanBookBeRenewed
1508
1509 $ok = &CanBookBeRenewed($borrowernumber, $itemnumber);
1510
1511 Find out whether a borrowed item may be renewed.
1512
1513 C<$dbh> is a DBI handle to the Koha database.
1514
1515 C<$borrowernumber> is the borrower number of the patron who currently
1516 has the item on loan.
1517
1518 C<$itemnumber> is the number of the item to renew.
1519
1520 C<$CanBookBeRenewed> returns a true value iff the item may be renewed. The
1521 item must currently be on loan to the specified borrower; renewals
1522 must be allowed for the item's type; and the borrower must not have
1523 already renewed the loan.
1524
1525 =cut
1526
1527 sub CanBookBeRenewed {
1528
1529     # check renewal status
1530     my ( $borrowernumber, $itemnumber ) = @_;
1531     my $dbh       = C4::Context->dbh;
1532     my $renews    = 1;
1533     my $renewokay = 0;
1534
1535     # Look in the issues table for this item, lent to this borrower,
1536     # and not yet returned.
1537
1538     # FIXME - I think this function could be redone to use only one SQL call.
1539     my $sth1 = $dbh->prepare(
1540         "SELECT * FROM issues
1541             WHERE borrowernumber = ?
1542             AND itemnumber = ?
1543             AND returndate IS NULL"
1544     );
1545     $sth1->execute( $borrowernumber, $itemnumber );
1546     if ( my $data1 = $sth1->fetchrow_hashref ) {
1547
1548         # Found a matching item
1549
1550         # See if this item may be renewed. This query is convoluted
1551         # because it's a bit messy: given the item number, we need to find
1552         # the biblioitem, which gives us the itemtype, which tells us
1553         # whether it may be renewed.
1554         my $sth2 = $dbh->prepare(
1555             "SELECT renewalsallowed FROM items
1556                 LEFT JOIN biblioitems on items.biblioitemnumber = biblioitems.biblioitemnumber
1557                 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
1558                 WHERE items.itemnumber = ?
1559                 "
1560         );
1561         $sth2->execute($itemnumber);
1562         if ( my $data2 = $sth2->fetchrow_hashref ) {
1563             $renews = $data2->{'renewalsallowed'};
1564         }
1565         if ( $renews && $renews >= $data1->{'renewals'} ) {
1566             $renewokay = 1;
1567         }
1568         $sth2->finish;
1569         my ( $resfound, $resrec ) = C4::Reserves::CheckReserves($itemnumber);
1570         if ($resfound) {
1571             $renewokay = 0;
1572         }
1573
1574     }
1575     $sth1->finish;
1576     return ($renewokay);
1577 }
1578
1579 =head2 AddRenewal
1580
1581 &AddRenewal($borrowernumber, $itemnumber, $datedue);
1582
1583 Renews a loan.
1584
1585 C<$borrowernumber> is the borrower number of the patron who currently
1586 has the item.
1587
1588 C<$itemnumber> is the number of the item to renew.
1589
1590 C<$datedue> can be used to set the due date. If C<$datedue> is the
1591 empty string, C<&AddRenewal> will calculate the due date automatically
1592 from the book's item type. If you wish to set the due date manually,
1593 C<$datedue> should be in the form YYYY-MM-DD.
1594
1595 =cut
1596
1597 sub AddRenewal {
1598
1599     my ( $borrowernumber, $itemnumber, $branch ,$datedue ) = @_;
1600     my $dbh = C4::Context->dbh;
1601
1602     # If the due date wasn't specified, calculate it by adding the
1603     # book's loan length to today's date.
1604     unless ( $datedue ) {
1605
1606         my $biblio = GetBiblioFromItemNumber($itemnumber);
1607         my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 );
1608         my $loanlength = GetLoanLength(
1609             $borrower->{'categorycode'},
1610              (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'} ,
1611                         $borrower->{'branchcode'}
1612         );
1613                 #FIXME --  choose issuer or borrower branch.
1614                 #FIXME -- where's the calendar ?
1615         my ( $due_year, $due_month, $due_day ) =
1616           Add_Delta_DHMS( Today_and_Now(), $loanlength, 0, 0, 0 );
1617         $datedue = C4::Dates->new( "$due_year-$due_month-$due_day",'iso');
1618         $datedue=CheckValidDatedue($datedue,$itemnumber,$branch);
1619     }
1620
1621     # Find the issues record for this book
1622     my $sth =
1623       $dbh->prepare("SELECT * FROM issues
1624                         WHERE borrowernumber=? 
1625                         AND itemnumber=? 
1626                         AND returndate IS NULL"
1627       );
1628     $sth->execute( $borrowernumber, $itemnumber );
1629     my $issuedata = $sth->fetchrow_hashref;
1630     $sth->finish;
1631
1632     # Update the issues record to have the new due date, and a new count
1633     # of how many times it has been renewed.
1634     my $renews = $issuedata->{'renewals'} + 1;
1635     $sth = $dbh->prepare("UPDATE issues SET date_due = ?, renewals = ?
1636                             WHERE borrowernumber=? 
1637                             AND itemnumber=? 
1638                             AND returndate IS NULL"
1639     );
1640     $sth->execute( $datedue->output('iso'), $renews, $borrowernumber, $itemnumber );
1641     $sth->finish;
1642
1643     # Log the renewal
1644
1645     # Charge a new rental fee, if applicable?
1646     my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber );
1647     if ( $charge > 0 ) {
1648         my $accountno = getnextacctno( $borrowernumber );
1649         my $item = GetBiblioFromItemNumber($itemnumber);
1650         $sth = $dbh->prepare(
1651                 "INSERT INTO accountlines
1652                     (borrowernumber,accountno,date,amount,
1653                         description,accounttype,amountoutstanding,
1654                     itemnumber)
1655                     VALUES (?,?,now(),?,?,?,?,?)"
1656         );
1657         $sth->execute( $borrowernumber, $accountno, $charge,
1658             "Renewal of Rental Item $item->{'title'} $item->{'barcode'}",
1659             'Rent', $charge, $itemnumber );
1660         $sth->finish;
1661     }
1662     UpdateStats( C4::Context->userenv->{'branchcode'}, 'renew', $charge, '', $itemnumber );
1663 }
1664
1665 =head2 GetIssuingCharges
1666
1667 ($charge, $item_type) = &GetIssuingCharges($itemnumber, $borrowernumber);
1668
1669 Calculate how much it would cost for a given patron to borrow a given
1670 item, including any applicable discounts.
1671
1672 C<$itemnumber> is the item number of item the patron wishes to borrow.
1673
1674 C<$borrowernumber> is the patron's borrower number.
1675
1676 C<&GetIssuingCharges> returns two values: C<$charge> is the rental charge,
1677 and C<$item_type> is the code for the item's item type (e.g., C<VID>
1678 if it's a video).
1679
1680 =cut
1681
1682 sub GetIssuingCharges {
1683
1684     # calculate charges due
1685     my ( $itemnumber, $borrowernumber ) = @_;
1686     my $charge = 0;
1687     my $dbh    = C4::Context->dbh;
1688     my $item_type;
1689
1690     # Get the book's item type and rental charge (via its biblioitem).
1691     my $qcharge =     "SELECT itemtypes.itemtype,rentalcharge FROM items
1692             LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber";
1693         $qcharge .= (C4::Context->preference('item-level_itypes'))
1694                 ? " LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype "
1695                 : " LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype ";
1696         
1697     $qcharge .=      "WHERE items.itemnumber =?";
1698    
1699     my $sth1 = $dbh->prepare($qcharge);
1700     $sth1->execute($itemnumber);
1701     if ( my $data1 = $sth1->fetchrow_hashref ) {
1702         $item_type = $data1->{'itemtype'};
1703         $charge    = $data1->{'rentalcharge'};
1704         my $q2 = "SELECT rentaldiscount FROM borrowers
1705             LEFT JOIN issuingrules ON borrowers.categorycode = issuingrules.categorycode
1706             WHERE borrowers.borrowernumber = ?
1707             AND issuingrules.itemtype = ?";
1708         my $sth2 = $dbh->prepare($q2);
1709         $sth2->execute( $borrowernumber, $item_type );
1710         if ( my $data2 = $sth2->fetchrow_hashref ) {
1711             my $discount = $data2->{'rentaldiscount'};
1712             if ( $discount eq 'NULL' ) {
1713                 $discount = 0;
1714             }
1715             $charge = ( $charge * ( 100 - $discount ) ) / 100;
1716         }
1717         $sth2->finish;
1718     }
1719
1720     $sth1->finish;
1721     return ( $charge, $item_type );
1722 }
1723
1724 =head2 AddIssuingCharge
1725
1726 &AddIssuingCharge( $itemno, $borrowernumber, $charge )
1727
1728 =cut
1729
1730 sub AddIssuingCharge {
1731     my ( $itemnumber, $borrowernumber, $charge ) = @_;
1732     my $dbh = C4::Context->dbh;
1733     my $nextaccntno = getnextacctno( $borrowernumber );
1734     my $query ="
1735         INSERT INTO accountlines
1736             (borrowernumber, itemnumber, accountno,
1737             date, amount, description, accounttype,
1738             amountoutstanding)
1739         VALUES (?, ?, ?,now(), ?, 'Rental', 'Rent',?)
1740     ";
1741     my $sth = $dbh->prepare($query);
1742     $sth->execute( $borrowernumber, $itemnumber, $nextaccntno, $charge, $charge );
1743     $sth->finish;
1744 }
1745
1746 =head2 GetTransfers
1747
1748 GetTransfers($itemnumber);
1749
1750 =cut
1751
1752 sub GetTransfers {
1753     my ($itemnumber) = @_;
1754
1755     my $dbh = C4::Context->dbh;
1756
1757     my $query = '
1758         SELECT datesent,
1759                frombranch,
1760                tobranch
1761         FROM branchtransfers
1762         WHERE itemnumber = ?
1763           AND datearrived IS NULL
1764         ';
1765     my $sth = $dbh->prepare($query);
1766     $sth->execute($itemnumber);
1767     my @row = $sth->fetchrow_array();
1768     $sth->finish;
1769     return @row;
1770 }
1771
1772
1773 =head2 GetTransfersFromTo
1774
1775 @results = GetTransfersFromTo($frombranch,$tobranch);
1776
1777 Returns the list of pending transfers between $from and $to branch
1778
1779 =cut
1780
1781 sub GetTransfersFromTo {
1782     my ( $frombranch, $tobranch ) = @_;
1783     return unless ( $frombranch && $tobranch );
1784     my $dbh   = C4::Context->dbh;
1785     my $query = "
1786         SELECT itemnumber,datesent,frombranch
1787         FROM   branchtransfers
1788         WHERE  frombranch=?
1789           AND  tobranch=?
1790           AND datearrived IS NULL
1791     ";
1792     my $sth = $dbh->prepare($query);
1793     $sth->execute( $frombranch, $tobranch );
1794     my @gettransfers;
1795
1796     while ( my $data = $sth->fetchrow_hashref ) {
1797         push @gettransfers, $data;
1798     }
1799     $sth->finish;
1800     return (@gettransfers);
1801 }
1802
1803 =head2 DeleteTransfer
1804
1805 &DeleteTransfer($itemnumber);
1806
1807 =cut
1808
1809 sub DeleteTransfer {
1810     my ($itemnumber) = @_;
1811     my $dbh          = C4::Context->dbh;
1812     my $sth          = $dbh->prepare(
1813         "DELETE FROM branchtransfers
1814          WHERE itemnumber=?
1815          AND datearrived IS NULL "
1816     );
1817     $sth->execute($itemnumber);
1818     $sth->finish;
1819 }
1820
1821 =head2 AnonymiseIssueHistory
1822
1823 $rows = AnonymiseIssueHistory($borrowernumber,$date)
1824
1825 This function write NULL instead of C<$borrowernumber> given on input arg into the table issues.
1826 if C<$borrowernumber> is not set, it will delete the issue history for all borrower older than C<$date>.
1827
1828 return the number of affected rows.
1829
1830 =cut
1831
1832 sub AnonymiseIssueHistory {
1833     my $date           = shift;
1834     my $borrowernumber = shift;
1835     my $dbh            = C4::Context->dbh;
1836     my $query          = "
1837         UPDATE issues
1838         SET    borrowernumber = NULL
1839         WHERE  returndate < '".$date."'
1840           AND borrowernumber IS NOT NULL
1841     ";
1842     $query .= " AND borrowernumber = '".$borrowernumber."'" if defined $borrowernumber;
1843     my $rows_affected = $dbh->do($query);
1844     return $rows_affected;
1845 }
1846
1847 =head2 updateWrongTransfer
1848
1849 $items = updateWrongTransfer($itemNumber,$borrowernumber,$waitingAtLibrary,$FromLibrary);
1850
1851 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 
1852
1853 =cut
1854
1855 sub updateWrongTransfer {
1856         my ( $itemNumber,$waitingAtLibrary,$FromLibrary ) = @_;
1857         my $dbh = C4::Context->dbh;     
1858 # first step validate the actual line of transfert .
1859         my $sth =
1860                 $dbh->prepare(
1861                         "update branchtransfers set datearrived = now(),tobranch=?,comments='wrongtransfer' where itemnumber= ? AND datearrived IS NULL"
1862                 );
1863                 $sth->execute($FromLibrary,$itemNumber);
1864                 $sth->finish;
1865
1866 # second step create a new line of branchtransfer to the right location .
1867         ModItemTransfer($itemNumber, $FromLibrary, $waitingAtLibrary);
1868
1869 #third step changing holdingbranch of item
1870         UpdateHoldingbranch($FromLibrary,$itemNumber);
1871 }
1872
1873 =head2 UpdateHoldingbranch
1874
1875 $items = UpdateHoldingbranch($branch,$itmenumber);
1876 Simple methode for updating hodlingbranch in items BDD line
1877 =cut
1878
1879 sub UpdateHoldingbranch {
1880         my ( $branch,$itmenumber ) = @_;
1881         my $dbh = C4::Context->dbh;     
1882 # first step validate the actual line of transfert .
1883         my $sth =
1884                 $dbh->prepare(
1885                         "update items set holdingbranch = ? where itemnumber= ?"
1886                 );
1887                 $sth->execute($branch,$itmenumber);
1888                 $sth->finish;
1889         
1890         
1891 }
1892 =head2 CheckValidDatedue
1893
1894 $newdatedue = CheckValidDatedue($date_due,$itemnumber,$branchcode);
1895 this function return a new date due after checked if it's a repeatable or special holiday
1896 C<$date_due>   = returndate calculate with no day check
1897 C<$itemnumber>  = itemnumber
1898 C<$branchcode>  = localisation of issue 
1899 =cut
1900 # Why not create calendar object?  - 
1901 # TODO add 'duedate' option to useDaysMode .
1902 sub CheckValidDatedue { 
1903 my ($date_due,$itemnumber,$branchcode)=@_;
1904 my @datedue=split('-',$date_due->output('iso'));
1905 my $years=$datedue[0];
1906 my $month=$datedue[1];
1907 my $day=$datedue[2];
1908 my $dow;
1909 for (my $i=0;$i<2;$i++){
1910         $dow=Day_of_Week($years,$month,$day);
1911         ($dow=0) if ($dow>6);
1912         my $result=CheckRepeatableHolidays($itemnumber,$dow,$branchcode);
1913         my $countspecial=CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
1914         my $countspecialrepeatable=CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
1915                 if (($result ne '0') or ($countspecial ne '0') or ($countspecialrepeatable ne '0') ){
1916                 $i=0;
1917                 (($years,$month,$day) = Add_Delta_Days($years,$month,$day, 1))if ($i ne '1');
1918                 }
1919         }
1920 my $newdatedue=C4::Dates->new( $years."-".$month."-".$day,'iso');
1921 return $newdatedue;
1922 }
1923 =head2 CheckRepeatableHolidays
1924
1925 $countrepeatable = CheckRepeatableHoliday($itemnumber,$week_day,$branchcode);
1926 this function check if the date due is a repeatable holiday
1927 C<$date_due>   = returndate calculate with no day check
1928 C<$itemnumber>  = itemnumber
1929 C<$branchcode>  = localisation of issue 
1930
1931 =cut
1932
1933 sub CheckRepeatableHolidays{
1934 my($itemnumber,$week_day,$branchcode)=@_;
1935 my $dbh = C4::Context->dbh;
1936 my $query = qq|SELECT count(*)  
1937         FROM repeatable_holidays 
1938         WHERE branchcode=?
1939         AND weekday=?|;
1940 my $sth = $dbh->prepare($query);
1941 $sth->execute($branchcode,$week_day);
1942 my $result=$sth->fetchrow;
1943 $sth->finish;
1944 return $result;
1945 }
1946
1947
1948 =head2 CheckSpecialHolidays
1949
1950 $countspecial = CheckSpecialHolidays($years,$month,$day,$itemnumber,$branchcode);
1951 this function check if the date is a special holiday
1952 C<$years>   = the years of datedue
1953 C<$month>   = the month of datedue
1954 C<$day>     = the day of datedue
1955 C<$itemnumber>  = itemnumber
1956 C<$branchcode>  = localisation of issue 
1957 =cut
1958 sub CheckSpecialHolidays{
1959 my ($years,$month,$day,$itemnumber,$branchcode) = @_;
1960 my $dbh = C4::Context->dbh;
1961 my $query=qq|SELECT count(*) 
1962              FROM `special_holidays`
1963              WHERE year=?
1964              AND month=?
1965              AND day=?
1966              AND branchcode=?
1967             |;
1968 my $sth = $dbh->prepare($query);
1969 $sth->execute($years,$month,$day,$branchcode);
1970 my $countspecial=$sth->fetchrow ;
1971 $sth->finish;
1972 return $countspecial;
1973 }
1974
1975 =head2 CheckRepeatableSpecialHolidays
1976
1977 $countspecial = CheckRepeatableSpecialHolidays($month,$day,$itemnumber,$branchcode);
1978 this function check if the date is a repeatble special holidays
1979 C<$month>   = the month of datedue
1980 C<$day>     = the day of datedue
1981 C<$itemnumber>  = itemnumber
1982 C<$branchcode>  = localisation of issue 
1983 =cut
1984 sub CheckRepeatableSpecialHolidays{
1985 my ($month,$day,$itemnumber,$branchcode) = @_;
1986 my $dbh = C4::Context->dbh;
1987 my $query=qq|SELECT count(*) 
1988              FROM `repeatable_holidays`
1989              WHERE month=?
1990              AND day=?
1991              AND branchcode=?
1992             |;
1993 my $sth = $dbh->prepare($query);
1994 $sth->execute($month,$day,$branchcode);
1995 my $countspecial=$sth->fetchrow ;
1996 $sth->finish;
1997 return $countspecial;
1998 }
1999
2000
2001
2002 sub CheckValidBarcode{
2003 my ($barcode) = @_;
2004 my $dbh = C4::Context->dbh;
2005 my $query=qq|SELECT count(*) 
2006              FROM items 
2007              WHERE barcode=?
2008             |;
2009 my $sth = $dbh->prepare($query);
2010 $sth->execute($barcode);
2011 my $exist=$sth->fetchrow ;
2012 $sth->finish;
2013 return $exist;
2014 }
2015
2016 1;
2017
2018 __END__
2019
2020 =head1 AUTHOR
2021
2022 Koha Developement team <info@koha.org>
2023
2024 =cut
2025