change the name of function : "get_return_date_of" to "get_current_date_of"
[koha.git] / C4 / Circulation / Circ2.pm
1 # -*- tab-width: 8 -*-
2 # Please use 8-character tabs for this file (indents are every 4 characters)
3
4 package C4::Circulation::Circ2;
5
6 # $Id$
7
8 #package to deal with Returns
9 #written 3/11/99 by olwen@katipo.co.nz
10
11
12 # Copyright 2000-2002 Katipo Communications
13 #
14 # This file is part of Koha.
15 #
16 # Koha is free software; you can redistribute it and/or modify it under the
17 # terms of the GNU General Public License as published by the Free Software
18 # Foundation; either version 2 of the License, or (at your option) any later
19 # version.
20 #
21 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
22 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
23 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License along with
26 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
27 # Suite 330, Boston, MA  02111-1307 USA
28
29 use strict;
30 # use warnings;
31 require Exporter;
32 use DBI;
33 use C4::Context;
34 use C4::Stats;
35 use C4::Reserves2;
36 use C4::Koha;
37 use C4::Accounts2;
38 use Date::Manip;
39 use C4::Biblio;
40
41 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
42
43 # set the version for version checking
44 $VERSION = 0.01;
45
46 =head1 NAME
47
48 C4::Circulation::Circ2 - Koha circulation module
49
50 =head1 SYNOPSIS
51
52   use C4::Circulation::Circ2;
53
54 =head1 DESCRIPTION
55
56 The functions in this module deal with circulation, issues, and
57 returns, as well as general information about the library.
58 Also deals with stocktaking.
59
60 =head1 FUNCTIONS
61
62 =over 2
63
64 =cut
65
66 @ISA = qw(Exporter);
67 @EXPORT = qw(
68                 &getpatroninformation
69                 &currentissues
70                 &getissues
71                 &getiteminformation
72                 &renewstatus
73                 &renewbook
74                 &canbookbeissued
75                 &issuebook
76                 &returnbook
77                 &find_reserves
78                 &transferbook
79                 &decode
80                 &calc_charges
81                 &listitemsforinventory
82                 &itemseen
83                 &fixdate
84                 get_current_return_date_of
85                 get_transfert_infos
86                 &checktransferts
87                 &GetReservesForBranch
88                 &GetReservesToBranch
89                 &GetTransfersFromBib
90                 &getBranchIp
91                 &dotranfer
92         );
93 # &getbranches &getprinters &getbranch &getprinter => moved to C4::Koha.pm
94
95 =head2 itemseen
96
97 &itemseen($itemnum)
98 Mark item as seen. Is called when an item is issued, returned or manually marked during inventory/stocktaking
99 C<$itemnum> is the item number
100
101 =cut
102
103 sub itemseen {
104         my ($itemnum) = @_;
105         my $dbh = C4::Context->dbh;
106         my $sth = $dbh->prepare("update items set itemlost=0, datelastseen  = now() where items.itemnumber = ?");
107         $sth->execute($itemnum);
108         return;
109 }
110
111 =head2 itemborrowed
112
113 &itemseen($itemnum)
114 Mark item as borrowed. Is called when an item is issued.
115 C<$itemnum> is the item number
116
117 =cut
118
119 sub itemborrowed {
120         my ($itemnum) = @_;
121         my $dbh = C4::Context->dbh;
122         my $sth = $dbh->prepare("update items set itemlost=0, datelastborrowed  = now() where items.itemnumber = ?");
123         $sth->execute($itemnum);
124         return;
125 }
126
127 sub listitemsforinventory {
128         my ($minlocation,$maxlocation,$datelastseen,$offset,$size) = @_;
129         my $dbh = C4::Context->dbh;
130         my $sth = $dbh->prepare("select itemnumber,barcode,itemcallnumber,title,author from items,biblio where items.biblionumber=biblio.biblionumber and itemcallnumber>= ? and itemcallnumber <=? and (datelastseen< ? or datelastseen is null) order by itemcallnumber,title");
131         $sth->execute($minlocation,$maxlocation,$datelastseen);
132         my @results;
133         while (my $row = $sth->fetchrow_hashref) {
134                 $offset-- if ($offset);
135                 if ((!$offset) && $size) {
136                         push @results,$row;
137                         $size--;
138                 }
139         }
140         return \@results;
141 }
142
143 =head2 getpatroninformation
144
145   ($borrower, $flags) = &getpatroninformation($env, $borrowernumber, $cardnumber);
146
147 Looks up a patron and returns information about him or her. If
148 C<$borrowernumber> is true (nonzero), C<&getpatroninformation> looks
149 up the borrower by number; otherwise, it looks up the borrower by card
150 number.
151
152 C<$env> is effectively ignored, but should be a reference-to-hash.
153
154 C<$borrower> is a reference-to-hash whose keys are the fields of the
155 borrowers table in the Koha database. In addition,
156 C<$borrower-E<gt>{flags}> is a hash giving more detailed information
157 about the patron. Its keys act as flags :
158
159         if $borrower->{flags}->{LOST} {
160                 # Patron's card was reported lost
161         }
162
163 Each flag has a C<message> key, giving a human-readable explanation of
164 the flag. If the state of a flag means that the patron should not be
165 allowed to borrow any more books, then it will have a C<noissues> key
166 with a true value.
167
168 The possible flags are:
169
170 =head3 CHARGES
171
172 =over 4
173
174 Shows the patron's credit or debt, if any.
175
176 =back
177
178 =head3 GNA
179
180 =over 4
181
182 (Gone, no address.) Set if the patron has left without giving a
183 forwarding address.
184
185 =back
186
187 =head3 LOST
188
189 =over 4
190
191 Set if the patron's card has been reported as lost.
192
193 =back
194
195 =head3 DBARRED
196
197 =over 4
198
199 Set if the patron has been debarred.
200
201 =back
202
203 =head3 NOTES
204
205 =over 4
206
207 Any additional notes about the patron.
208
209 =back
210
211 =head3 ODUES
212
213 =over 4
214
215 Set if the patron has overdue items. This flag has several keys:
216
217 C<$flags-E<gt>{ODUES}{itemlist}> is a reference-to-array listing the
218 overdue items. Its elements are references-to-hash, each describing an
219 overdue item. The keys are selected fields from the issues, biblio,
220 biblioitems, and items tables of the Koha database.
221
222 C<$flags-E<gt>{ODUES}{itemlist}> is a string giving a text listing of
223 the overdue items, one per line.
224
225 =back
226
227 =head3 WAITING
228
229 =over 4
230
231 Set if any items that the patron has reserved are available.
232
233 C<$flags-E<gt>{WAITING}{itemlist}> is a reference-to-array listing the
234 available items. Each element is a reference-to-hash whose keys are
235 fields from the reserves table of the Koha database.
236
237 =back
238
239 =back
240
241 =cut
242
243
244 sub getpatroninformation {
245 # returns
246         my ($env, $borrowernumber,$cardnumber) = @_;
247         my $dbh = C4::Context->dbh;
248         my $query;
249         my $sth;
250         if ($borrowernumber) {
251                 $sth = $dbh->prepare("select * from borrowers where borrowernumber=?");
252                 $sth->execute($borrowernumber);
253         } elsif ($cardnumber) {
254                 $sth = $dbh->prepare("select * from borrowers where cardnumber=?");
255                 $sth->execute($cardnumber);
256         } else {
257                 $env->{'apierror'} = "invalid borrower information passed to getpatroninformation subroutine";
258                 return();
259         }
260         my $borrower = $sth->fetchrow_hashref;
261         my $amount = checkaccount($env, $borrowernumber, $dbh);
262         $borrower->{'amountoutstanding'} = $amount;
263         my $flags = patronflags($env, $borrower, $dbh);
264         my $accessflagshash;
265  
266         $sth=$dbh->prepare("select bit,flag from userflags");
267         $sth->execute;
268         while (my ($bit, $flag) = $sth->fetchrow) {
269                 if ($borrower->{'flags'} && $borrower->{'flags'} & 2**$bit) {
270                 $accessflagshash->{$flag}=1;
271                 }
272         }
273         $sth->finish;
274         $borrower->{'flags'}=$flags;
275         $borrower->{'authflags'} = $accessflagshash;
276         return ($borrower); #, $flags, $accessflagshash);
277 }
278
279 =head2 decode
280
281 =over 4
282
283 =head3 $str = &decode($chunk);
284
285 =over 4
286
287 Decodes a segment of a string emitted by a CueCat barcode scanner and
288 returns it.
289
290 =back
291
292 =back
293
294 =cut
295
296 # FIXME - At least, I'm pretty sure this is for decoding CueCat stuff.
297 sub decode {
298         my ($encoded) = @_;
299         my $seq = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-';
300         my @s = map { index($seq,$_); } split(//,$encoded);
301         my $l = ($#s+1) % 4;
302         if ($l)
303         {
304                 if ($l == 1)
305                 {
306                         print "Error!";
307                         return;
308                 }
309                 $l = 4-$l;
310                 $#s += $l;
311         }
312         my $r = '';
313         while ($#s >= 0)
314         {
315                 my $n = (($s[0] << 6 | $s[1]) << 6 | $s[2]) << 6 | $s[3];
316                 $r .=chr(($n >> 16) ^ 67) .
317                 chr(($n >> 8 & 255) ^ 67) .
318                 chr(($n & 255) ^ 67);
319                 @s = @s[4..$#s];
320         }
321         $r = substr($r,0,length($r)-$l);
322         return $r;
323 }
324
325 =head2 getiteminformation
326
327 =over 4
328
329 $item = &getiteminformation($env, $itemnumber, $barcode);
330
331 Looks up information about an item, given either its item number or
332 its barcode. If C<$itemnumber> is a nonzero value, it is used;
333 otherwise, C<$barcode> is used.
334
335 C<$env> is effectively ignored, but should be a reference-to-hash.
336
337 C<$item> is a reference-to-hash whose keys are fields from the biblio,
338 items, and biblioitems tables of the Koha database. It may also
339 contain the following keys:
340
341 =head3 date_due
342
343 =over 4
344
345 The due date on this item, if it has been borrowed and not returned
346 yet. The date is in YYYY-MM-DD format.
347
348 =back
349
350 =head3 notforloan
351
352 =over 4
353
354 True if the item may not be borrowed.
355
356 =back
357
358 =back
359
360 =cut
361
362
363 sub getiteminformation {
364 # returns a hash of item information given either the itemnumber or the barcode
365         my ($env, $itemnumber, $barcode) = @_;
366         my $dbh = C4::Context->dbh;
367         my $sth;
368         if ($itemnumber) {
369                 $sth=$dbh->prepare("select * from biblio,items,biblioitems where items.itemnumber=? and biblio.biblionumber=items.biblionumber and biblioitems.biblioitemnumber = items.biblioitemnumber");
370                 $sth->execute($itemnumber);
371         } elsif ($barcode) {
372                 $sth=$dbh->prepare("select * from biblio,items,biblioitems where items.barcode=? and biblio.biblionumber=items.biblionumber and biblioitems.biblioitemnumber = items.biblioitemnumber");
373                 $sth->execute($barcode);
374         } else {
375                 $env->{'apierror'}="getiteminformation() subroutine must be called with either an itemnumber or a barcode";
376                 # Error condition.
377                 return();
378         }
379         my $iteminformation=$sth->fetchrow_hashref;
380         $sth->finish;
381         if ($iteminformation) {
382                 $sth=$dbh->prepare("select date_due from issues where itemnumber=? and isnull(returndate)");
383                 $sth->execute($iteminformation->{'itemnumber'});
384                 my ($date_due) = $sth->fetchrow;
385                 $iteminformation->{'date_due'}=$date_due;
386                 $sth->finish;
387                 ($iteminformation->{'dewey'} == 0) && ($iteminformation->{'dewey'}='');
388                 $sth=$dbh->prepare("select * from itemtypes where itemtype=?");
389                 $sth->execute($iteminformation->{'itemtype'});
390                 my $itemtype=$sth->fetchrow_hashref;
391                 # if specific item notforloan, don't use itemtype notforloan field.
392                 # otherwise, use itemtype notforloan value to see if item can be issued.
393                 $iteminformation->{'notforloan'}=$itemtype->{'notforloan'} unless $iteminformation->{'notforloan'};
394                 $sth->finish;
395         }
396         return($iteminformation);
397 }
398
399 =head2 transferbook
400
401 =over 4
402
403 ($dotransfer, $messages, $iteminformation) = &transferbook($newbranch, $barcode, $ignore_reserves);
404
405 Transfers an item to a new branch. If the item is currently on loan, it is automatically returned before the actual transfer.
406
407 C<$newbranch> is the code for the branch to which the item should be transferred.
408
409 C<$barcode> is the barcode of the item to be transferred.
410
411 If C<$ignore_reserves> is true, C<&transferbook> ignores reserves.
412 Otherwise, if an item is reserved, the transfer fails.
413
414 Returns three values:
415
416 =head3 $dotransfer 
417
418 is true if the transfer was successful.
419
420 =head3 $messages
421  
422 is a reference-to-hash which may have any of the following keys:
423
424 =over 4
425
426 C<BadBarcode>
427
428 There is no item in the catalog with the given barcode. The value is C<$barcode>.
429
430 C<IsPermanent>
431
432 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.
433
434 C<DestinationEqualsHolding>
435
436 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.
437
438 C<WasReturned>
439
440 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.
441
442 C<ResFound>
443
444 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>.
445
446 C<WasTransferred>
447
448 The item was eligible to be transferred. Barring problems communicating with the database, the transfer should indeed have succeeded. The value should be ignored.
449
450 =back
451
452 =back
453
454 =back
455
456 =cut
457
458 #'
459 # FIXME - This function tries to do too much, and its API is clumsy.
460 # If it didn't also return books, it could be used to change the home
461 # branch of a book while the book is on loan.
462 #
463 # Is there any point in returning the item information? The caller can
464 # look that up elsewhere if ve cares.
465 #
466 # This leaves the ($dotransfer, $messages) tuple. This seems clumsy.
467 # If the transfer succeeds, that's all the caller should need to know.
468 # Thus, this function could simply return 1 or 0 to indicate success
469 # or failure, and set $C4::Circulation::Circ2::errmsg in case of
470 # failure. Or this function could return undef if successful, and an
471 # error message in case of failure (this would feel more like C than
472 # Perl, though).
473 sub transferbook {
474 # transfer book code....
475         my ($tbr, $barcode, $ignoreRs) = @_;
476         my $messages;
477         my %env;
478         my $dotransfer = 1;
479         my $branches = getbranches();
480         my $iteminformation = getiteminformation(\%env, 0, $barcode);
481         # bad barcode..
482         if (not $iteminformation) {
483                 $messages->{'BadBarcode'} = $barcode;
484                 $dotransfer = 0;
485         }
486         # get branches of book...
487         my $hbr = $iteminformation->{'homebranch'};
488         my $fbr = $iteminformation->{'holdingbranch'};
489         # if is permanent...
490         if ($hbr && $branches->{$hbr}->{'PE'}) {
491                 $messages->{'IsPermanent'} = $hbr;
492         }
493         # can't transfer book if is already there....
494         # FIXME - Why not? Shouldn't it trivially succeed?
495         if ($fbr eq $tbr) {
496                 $messages->{'DestinationEqualsHolding'} = 1;
497                 $dotransfer = 0;
498         }
499         # check if it is still issued to someone, return it...
500         my ($currentborrower) = currentborrower($iteminformation->{'itemnumber'});
501         if ($currentborrower) {
502                 returnbook($barcode, $fbr);
503                 $messages->{'WasReturned'} = $currentborrower;
504         }
505         # find reserves.....
506         # FIXME - Don't call &CheckReserves unless $ignoreRs is true.
507         # That'll save a database query.
508         my ($resfound, $resrec) = CheckReserves($iteminformation->{'itemnumber'});
509         if ($resfound and not $ignoreRs) {
510                 $resrec->{'ResFound'} = $resfound;
511 #               $messages->{'ResFound'} = $resrec;
512                 $dotransfer = 1;
513         }
514
515         if ($dotransfer and not $resfound) {
516                 dotransfer($iteminformation->{'itemnumber'}, $fbr, $tbr);
517                 $messages->{'WasTransfered'} = 1;
518         }
519         return ($dotransfer, $messages, $iteminformation);
520 }
521
522 # Not exported
523 # FIXME - This is only used in &transferbook. Why bother making it a
524 # separate function?
525 sub dotransfer {
526         my ($itm, $fbr, $tbr) = @_;
527         my $dbh = C4::Context->dbh;
528         $itm = $dbh->quote($itm);
529         $fbr = $dbh->quote($fbr);
530         $tbr = $dbh->quote($tbr);
531         #new entry in branchtransfers....
532         $dbh->do("INSERT INTO branchtransfers (itemnumber, frombranch, datesent, tobranch)
533                                         VALUES ($itm, $fbr, now(), $tbr)");
534         #update holdingbranch in items .....
535         $dbh->do("UPDATE items set holdingbranch = $tbr WHERE items.itemnumber = $itm");
536         &itemseen($itm);
537         &domarctransfer($dbh,$itm);
538         return;
539 }
540
541 ##New sub to dotransfer in marc tables as well. Not exported -TG 10/04/2006
542 sub domarctransfer{
543
544 my ($dbh,$itemnumber) = @_;
545 $itemnumber=~s /\'//g; ##itemnumber seems to come with quotes-TG
546 my $sth=$dbh->prepare("select biblionumber,holdingbranch from items where itemnumber=$itemnumber");
547         $sth->execute();
548 while (my ($biblionumber,$holdingbranch)=$sth->fetchrow ){
549 &MARCmoditemonefield($dbh,$biblionumber,$itemnumber,'items.holdingbranch',$holdingbranch,0);
550 }
551 return;
552 }
553
554 =head2 canbookbeissued
555
556 Check if a book can be issued.
557
558 my ($issuingimpossible,$needsconfirmation) = canbookbeissued($env,$borrower,$barcode,$year,$month,$day);
559
560 =over 4
561
562 C<$env> Environment variable. Should be empty usually, but used by other subs. Next code cleaning could drop it.
563
564 C<$borrower> hash with borrower informations (from getpatroninformation)
565
566 C<$barcode> is the bar code of the book being issued.
567
568 C<$year> C<$month> C<$day> contains the date of the return (in case it's forced by "stickyduedate".
569
570 =back
571
572 Returns :
573
574 =over 4
575
576 C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
577 Possible values are :
578
579 =head3 INVALID_DATE 
580
581 sticky due date is invalid
582
583 =head3 GNA
584
585 borrower gone with no address
586
587 =head3 CARD_LOST
588  
589 borrower declared it's card lost
590
591 =head3 DEBARRED
592
593 borrower debarred
594
595 =head3 UNKNOWN_BARCODE
596
597 barcode unknown
598
599 =head3 NOT_FOR_LOAN
600
601 item is not for loan
602
603 =head3 WTHDRAWN
604
605 item withdrawn.
606
607 =head3 RESTRICTED
608
609 item is restricted (set by ??)
610
611 =back
612
613 C<$issuingimpossible> a reference to a hash. It contains reasons why issuing is impossible.
614 Possible values are :
615
616 =head3 DEBT
617
618 borrower has debts.
619
620 =head3 RENEW_ISSUE
621
622 renewing, not issuing
623
624 =head3 ISSUED_TO_ANOTHER
625
626 issued to someone else.
627
628 =head3 RESERVED
629
630 reserved for someone else.
631
632 =head3 INVALID_DATE
633
634 sticky due date is invalid
635
636 =head3 TOO_MANY
637
638 if the borrower borrows to much things
639
640 =cut
641
642 # check if a book can be issued.
643 # returns an array with errors if any
644
645 sub TooMany ($$){
646         my $borrower = shift;
647         my $iteminformation = shift;
648         my $cat_borrower = $borrower->{'categorycode'};
649         my $branch_borrower = $borrower->{'branchcode'};
650         my $dbh = C4::Context->dbh;
651         
652
653         my $sth = $dbh->prepare('select itemtype from biblioitems where biblionumber = ?');
654         $sth->execute($iteminformation->{'biblionumber'});
655         my $type = $sth->fetchrow;
656         $sth = $dbh->prepare('select * from issuingrules where categorycode = ? and itemtype = ? and branchcode = ?');
657 #       my $sth2 = $dbh->prepare("select COUNT(*) from issues i, biblioitems s where i.borrowernumber = ? and i.returndate is null and i.itemnumber = s.biblioitemnumber and s.itemtype like ?");
658         my $sth2 = $dbh->prepare("select COUNT(*) from issues i, biblioitems s1, items s2 where i.borrowernumber = ? and i.returndate is null and i.itemnumber = s2.itemnumber and s1.itemtype like ? and s1.biblioitemnumber = s2.biblioitemnumber");
659         my $sth3 = $dbh->prepare('select COUNT(*) from issues where borrowernumber = ? and returndate is null');
660         my $alreadyissued;
661         # check the 3 parameters
662         $sth->execute($cat_borrower, $type, $branch_borrower);
663         my $result = $sth->fetchrow_hashref;
664 #       warn "==>".$result->{maxissueqty};
665     
666        # Currently, using defined($result) ie on an entire hash reports whether memory
667        # for that aggregate has ever been allocated. As $result is used all over the place
668        # it would rarely return as undefined.
669         if (defined($result->{maxissueqty})) {
670                 $sth2->execute($borrower->{'borrowernumber'}, "%$type%");
671                 my $alreadyissued = $sth2->fetchrow;
672             if ($result->{'maxissueqty'} <= $alreadyissued){
673                 return ("a $alreadyissued / ".($result->{maxissueqty}+0));
674             } else {
675                 return;
676             }
677         }
678         # check for branch=*
679         $sth->execute($cat_borrower, $type, "");
680         $result = $sth->fetchrow_hashref;
681         if (defined($result->{maxissueqty})) {
682                 $sth2->execute($borrower->{'borrowernumber'}, "%$type%");
683                 my $alreadyissued = $sth2->fetchrow;
684              if ($result->{'maxissueqty'} <= $alreadyissued){
685                 return ("b $alreadyissued / ".($result->{maxissueqty}+0));
686              } else {
687                 return;
688              }
689         }
690         # check for itemtype=*
691         $sth->execute($cat_borrower, "*", $branch_borrower);
692         $result = $sth->fetchrow_hashref;
693         if (defined($result->{maxissueqty})) {
694                 $sth3->execute($borrower->{'borrowernumber'});
695                 my ($alreadyissued) = $sth3->fetchrow;
696              if ($result->{'maxissueqty'} <= $alreadyissued){
697 #               warn "HERE : $alreadyissued / ($result->{maxissueqty} for $borrower->{'borrowernumber'}";
698                 return ("c $alreadyissued / ".($result->{maxissueqty}+0));
699              } else {
700                 return;
701              }
702         }
703         # check for borrowertype=*
704         $sth->execute("*", $type, $branch_borrower);
705         $result = $sth->fetchrow_hashref;
706         if (defined($result->{maxissueqty})) {    
707                 $sth2->execute($borrower->{'borrowernumber'}, "%$type%");
708                 my $alreadyissued = $sth2->fetchrow;
709             if ($result->{'maxissueqty'} <= $alreadyissued){        
710                 return ("d $alreadyissued / ".($result->{maxissueqty}+0));
711             } else {
712                 return;
713             }
714         }
715
716         $sth->execute("*", "*", $branch_borrower);
717         $result = $sth->fetchrow_hashref;
718         if (defined($result->{maxissueqty})) {    
719                 $sth3->execute($borrower->{'borrowernumber'});
720                 my $alreadyissued = $sth3->fetchrow;
721             if ($result->{'maxissueqty'} <= $alreadyissued){
722                 return ("e $alreadyissued / ".($result->{maxissueqty}+0));
723             } else {
724                 return;
725             }
726         }
727
728         $sth->execute("*", $type, "");
729         $result = $sth->fetchrow_hashref;
730         if (defined($result->{maxissueqty}) && $result->{maxissueqty}>=0) {
731                 $sth2->execute($borrower->{'borrowernumber'}, "%$type%");
732                 my $alreadyissued = $sth2->fetchrow;
733              if ($result->{'maxissueqty'} <= $alreadyissued){
734                 return ("f $alreadyissued / ".($result->{maxissueqty}+0));
735              } else {
736                 return;
737              }
738         }
739
740         $sth->execute($cat_borrower, "*", "");
741         $result = $sth->fetchrow_hashref;
742         if (defined($result->{maxissueqty})) {    
743                 $sth2->execute($borrower->{'borrowernumber'}, "%$type%");
744                 my $alreadyissued = $sth2->fetchrow;
745              if ($result->{'maxissueqty'} <= $alreadyissued){
746                 return ("g $alreadyissued / ".($result->{maxissueqty}+0));
747              } else {
748                 return;
749              }
750         }
751
752         $sth->execute("*", "*", "");
753         $result = $sth->fetchrow_hashref;
754         if (defined($result->{maxissueqty})) {    
755                 $sth3->execute($borrower->{'borrowernumber'});
756                 my $alreadyissued = $sth3->fetchrow;
757              if ($result->{'maxissueqty'} <= $alreadyissued){
758                 return ("h $alreadyissued / ".($result->{maxissueqty}+0));
759              } else {
760                 return;
761              }
762         }
763         return;
764 }
765
766
767 sub canbookbeissued {
768         my ($env,$borrower,$barcode,$year,$month,$day,$inprocess) = @_;
769         my %needsconfirmation; # filled with problems that needs confirmations
770         my %issuingimpossible; # filled with problems that causes the issue to be IMPOSSIBLE
771         my $iteminformation = getiteminformation($env, 0, $barcode);
772         my $dbh = C4::Context->dbh;
773 #
774 # DUE DATE is OK ?
775 #
776         my ($duedate, $invalidduedate) = fixdate($year, $month, $day);
777         $issuingimpossible{INVALID_DATE} = 1 if ($invalidduedate);
778
779 #
780 # BORROWER STATUS
781 #
782         if ($borrower->{flags}->{GNA}) {
783                 $issuingimpossible{GNA} = 1;
784         }
785         if ($borrower->{flags}->{'LOST'}) {
786                 $issuingimpossible{CARD_LOST} = 1;
787         }
788         if ($borrower->{flags}->{'DBARRED'}) {
789                 $issuingimpossible{DEBARRED} = 1;
790         }
791         if (&Date_Cmp(&ParseDate($borrower->{dateexpiry}),&ParseDate("today"))<0) {
792                 $issuingimpossible{EXPIRED} = 1;
793         }
794 #
795 # BORROWER STATUS
796 #
797
798 # DEBTS
799         my $amount = checkaccount($env,$borrower->{'borrowernumber'}, $dbh,$duedate);
800         if(C4::Context->preference("IssuingInProcess")){
801             my $amountlimit = C4::Context->preference("noissuescharge");
802             if ($amount > $amountlimit && !$inprocess) {
803                 $issuingimpossible{DEBT} = sprintf("%.2f",$amount);
804             } elsif ($amount <= $amountlimit && !$inprocess) {
805                 $needsconfirmation{DEBT} = sprintf("%.2f",$amount);
806             }
807         } else {
808             if ($amount >0) {
809                 $needsconfirmation{DEBT} = $amount;
810             }
811         }
812
813 #
814 # JB34 CHECKS IF BORROWERS DONT HAVE ISSUE TOO MANY BOOKS
815 #
816         my $toomany = TooMany($borrower, $iteminformation);
817         $needsconfirmation{TOO_MANY} =  $toomany if $toomany;
818
819 #
820 # ITEM CHECKING
821 #
822         unless ($iteminformation->{barcode}) {
823                 $issuingimpossible{UNKNOWN_BARCODE} = 1;
824         }
825         if ($iteminformation->{'notforloan'} && $iteminformation->{'notforloan'} > 0) {
826                 $issuingimpossible{NOT_FOR_LOAN} = 1;
827         }
828         if ($iteminformation->{'itemtype'} &&$iteminformation->{'itemtype'} eq 'REF') {
829                 $issuingimpossible{NOT_FOR_LOAN} = 1;
830         }
831         if ($iteminformation->{'wthdrawn'} && $iteminformation->{'wthdrawn'} == 1) {
832                 $issuingimpossible{WTHDRAWN} = 1;
833         }
834         if ($iteminformation->{'restricted'} && $iteminformation->{'restricted'} == 1) {
835                 $issuingimpossible{RESTRICTED} = 1;
836         }
837
838
839
840 #
841 # CHECK IF BOOK ALREADY ISSUED TO THIS BORROWER
842 #
843         my ($currentborrower) = currentborrower($iteminformation->{'itemnumber'});
844         if ($currentborrower && $currentborrower eq $borrower->{'borrowernumber'}) {
845 # Already issued to current borrower. Ask whether the loan should
846 # be renewed.
847                 my ($renewstatus) = renewstatus($env, $borrower->{'borrowernumber'}, $iteminformation->{'itemnumber'});
848                 if ($renewstatus == 0) { # no more renewals allowed
849                         $issuingimpossible{NO_MORE_RENEWALS} = 1;
850                 } else {
851         #               $needsconfirmation{RENEW_ISSUE} = 1;
852                 }
853         } elsif ($currentborrower) {
854 # issued to someone else
855                 my $currborinfo = getpatroninformation(0,$currentborrower);
856 #               warn "=>.$currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
857                 $needsconfirmation{ISSUED_TO_ANOTHER} = "$currborinfo->{'reservedate'} : $currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
858         }
859 # See if the item is on reserve.
860         my ($restype, $res) = CheckReserves($iteminformation->{'itemnumber'});
861         if ($restype) {
862                 my $resbor = $res->{'borrowernumber'};
863                 if ($resbor ne $borrower->{'borrowernumber'} && $restype eq "Waiting") {
864                         # The item is on reserve and waiting, but has been
865                         # reserved by some other patron.
866                         my ($resborrower, $flags)=getpatroninformation($env, $resbor,0);
867                         my $branches = getbranches();
868                         my $branchname = $branches->{$res->{'branchcode'}}->{'branchname'};
869                         $needsconfirmation{RESERVE_WAITING} = "$resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'}, $branchname)";
870                         # CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'}); Doesn't belong in a checking subroutine.
871                 } elsif ($restype eq "Reserved") {
872                         # The item is on reserve for someone else.
873                         my ($resborrower, $flags)=getpatroninformation($env, $resbor,0);
874                         my $branches = getbranches();
875                         my $branchname = $branches->{$res->{'branchcode'}}->{'branchname'};
876                         $needsconfirmation{RESERVED} = "$res->{'reservedate'} : $resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'})";
877                 }
878         }
879         if(C4::Context->preference("LibraryName") eq "Horowhenua Library Trust"){
880             if ($borrower->{'categorycode'} eq 'W'){
881                         my %issuingimpossible;
882                         return(\%issuingimpossible,\%needsconfirmation);
883             } else {
884                 return(\%issuingimpossible,\%needsconfirmation);
885             }
886         } else {
887             return(\%issuingimpossible,\%needsconfirmation);
888         }
889 }
890
891 =head2 issuebook
892
893 Issue a book. Does no check, they are done in canbookbeissued. If we reach this sub, it means the user confirmed if needed.
894
895 &issuebook($env,$borrower,$barcode,$date)
896
897 =over 4
898
899 C<$env> Environment variable. Should be empty usually, but used by other subs. Next code cleaning could drop it.
900
901 C<$borrower> hash with borrower informations (from getpatroninformation)
902
903 C<$barcode> is the bar code of the book being issued.
904
905 C<$date> contains the max date of return. calculated if empty.
906
907 =cut
908
909 #
910 # issuing book. We already have checked it can be issued, so, just issue it !
911 #
912 sub issuebook {
913         my ($env,$borrower,$barcode,$date,$cancelreserve) = @_;
914         my $dbh = C4::Context->dbh;
915 #       my ($borrower, $flags) = &getpatroninformation($env, $borrowernumber, 0);
916         my $iteminformation = getiteminformation($env, 0, $barcode);
917 #               warn "B : ".$borrower->{borrowernumber}." / I : ".$iteminformation->{'itemnumber'};
918 #
919 # check if we just renew the issue.
920 #
921         my ($currentborrower) = currentborrower($iteminformation->{'itemnumber'});
922         if ($currentborrower eq $borrower->{'borrowernumber'}) {
923                 my ($charge,$itemtype) = calc_charges($env, $iteminformation->{'itemnumber'}, $borrower->{'borrowernumber'});
924                 if ($charge > 0) {
925                         createcharge($env, $dbh, $iteminformation->{'itemnumber'}, $borrower->{'borrowernumber'}, $charge);
926                         $iteminformation->{'charge'} = $charge;
927                 }
928                 &UpdateStats($env,$env->{'branchcode'},'renew',$charge,'',$iteminformation->{'itemnumber'},$iteminformation->{'itemtype'},$borrower->{'borrowernumber'});
929                 renewbook($env, $borrower->{'borrowernumber'}, $iteminformation->{'itemnumber'});
930         } else {
931 #
932 # NOT a renewal
933 #
934                 if ($currentborrower ne '') {
935                         # This book is currently on loan, but not to the person
936                         # who wants to borrow it now. mark it returned before issuing to the new borrower
937                         returnbook($iteminformation->{'barcode'}, $env->{'branchcode'});
938                 }
939                 # See if the item is on reserve.
940                 my ($restype, $res) = CheckReserves($iteminformation->{'itemnumber'});
941                 if ($restype) {
942                         my $resbor = $res->{'borrowernumber'};
943                         if ($resbor eq $borrower->{'borrowernumber'}) {
944                                 # The item is on reserve to the current patron
945                                 FillReserve($res);
946                                 warn "FillReserve";
947                         } elsif ($restype eq "Waiting") {
948                                 warn "Waiting";
949                                 # The item is on reserve and waiting, but has been
950                                 # reserved by some other patron.
951                                 my ($resborrower, $flags)=getpatroninformation($env, $resbor,0);
952                                 my $branches = getbranches();
953                                 my $branchname = $branches->{$res->{'branchcode'}}->{'branchname'};
954                                 if ($cancelreserve){
955                                     CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'});
956                                 } else {
957                                     # set waiting reserve to first in reserve queue as book isn't waiting now
958                                     UpdateReserve(1, $res->{'biblionumber'}, $res->{'borrowernumber'}, $res->{'branchcode'});
959                                 }
960                         } elsif ($restype eq "Reserved") {
961 #                               warn "Reserved";
962                                 # The item is on reserve for someone else.
963                                 my ($resborrower, $flags)=getpatroninformation($env, $resbor,0);
964                                 my $branches = getbranches();
965                                 my $branchname = $branches->{$res->{'branchcode'}}->{'branchname'};
966                                 if ($cancelreserve) {
967                                         # cancel reserves on this item
968                                         CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'});
969                                         # also cancel reserve on biblio related to this item
970                                         #my $st_Fbiblio = $dbh->prepare("select biblionumber from items where itemnumber=?");
971                                         #$st_Fbiblio->execute($res->{'itemnumber'});
972                                         #my $biblionumber = $st_Fbiblio->fetchrow;
973                                         #CancelReserve($biblionumber,0,$res->{'borrowernumber'});
974                                         #warn "CancelReserve $res->{'itemnumber'}, $res->{'borrowernumber'}";
975                                 } else {
976 #                                       my $tobrcd = ReserveWaiting($res->{'itemnumber'}, $res->{'borrowernumber'});
977 #                                       transferbook($tobrcd,$barcode, 1);
978 #                                       warn "transferbook";
979                                 }
980                         }
981                 }
982                 # Record in the database the fact that the book was issued.
983                 my $sth=$dbh->prepare("insert into issues (borrowernumber, itemnumber, date_due, branchcode) values (?,?,?,?)");
984                 my $loanlength = getLoanLength($borrower->{'categorycode'},$iteminformation->{'itemtype'},$borrower->{'branchcode'});
985                 my $datedue=time+($loanlength)*86400;
986                 my @datearr = localtime($datedue);
987                 my $dateduef = (1900+$datearr[5])."-".($datearr[4]+1)."-".$datearr[3];
988                 if ($date) {
989                         $dateduef=$date;
990                 }
991                 # if ReturnBeforeExpiry ON the datedue can't be after borrower expirydate
992                 if (C4::Context->preference('ReturnBeforeExpiry') && $dateduef gt $borrower->{expiry}) {
993                         $dateduef=$borrower->{expiry};
994                 }
995                 $sth->execute($borrower->{'borrowernumber'}, $iteminformation->{'itemnumber'}, $dateduef, $env->{'branchcode'});
996                 $sth->finish;
997                 $iteminformation->{'issues'}++;
998                 $sth=$dbh->prepare("update items set issues=?, holdingbranch=? where itemnumber=?");
999                 $sth->execute($iteminformation->{'issues'},C4::Context->userenv->{'branch'},$iteminformation->{'itemnumber'});
1000                 $sth->finish;
1001                 &itemseen($iteminformation->{'itemnumber'});
1002                 itemborrowed($iteminformation->{'itemnumber'});
1003                 # If it costs to borrow this book, charge it to the patron's account.
1004                 my ($charge,$itemtype)=calc_charges($env, $iteminformation->{'itemnumber'}, $borrower->{'borrowernumber'});
1005                 if ($charge > 0) {
1006                         createcharge($env, $dbh, $iteminformation->{'itemnumber'}, $borrower->{'borrowernumber'}, $charge);
1007                         $iteminformation->{'charge'}=$charge;
1008                 }
1009                 # Record the fact that this book was issued.
1010                 &UpdateStats($env,$env->{'branchcode'},'issue',$charge,'',$iteminformation->{'itemnumber'},$iteminformation->{'itemtype'},$borrower->{'borrowernumber'});
1011         }
1012 }
1013
1014 =head2 getLoanLength
1015
1016 Get loan length for an itemtype, a borrower type and a branch
1017
1018 my $loanlength = &getLoanLength($borrowertype,$itemtype,branchcode)
1019
1020 =cut
1021
1022 sub getLoanLength {
1023         my ($borrowertype,$itemtype,$branchcode) = @_;
1024         my $dbh = C4::Context->dbh;
1025         my $sth = $dbh->prepare("select issuelength from issuingrules where categorycode=? and itemtype=? and branchcode=?");
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} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1031         
1032         $sth->execute($borrowertype,$itemtype,"");
1033         $loanlength = $sth->fetchrow_hashref;
1034         return $loanlength->{issuelength} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1035         
1036         $sth->execute($borrowertype,"*",$branchcode);
1037         $loanlength = $sth->fetchrow_hashref;
1038         return $loanlength->{issuelength} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1039
1040         $sth->execute("*",$itemtype,$branchcode);
1041         $loanlength = $sth->fetchrow_hashref;
1042         return $loanlength->{issuelength} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1043
1044         $sth->execute($borrowertype,"*","");
1045         $loanlength = $sth->fetchrow_hashref;
1046         return $loanlength->{issuelength} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1047
1048         $sth->execute("*","*",$branchcode);
1049         $loanlength = $sth->fetchrow_hashref;
1050         return $loanlength->{issuelength} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1051
1052         $sth->execute("*",$itemtype,"");
1053         $loanlength = $sth->fetchrow_hashref;
1054         return $loanlength->{issuelength} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1055
1056         $sth->execute("*","*","");
1057         $loanlength = $sth->fetchrow_hashref;
1058         return $loanlength->{issuelength} if defined($loanlength) && $loanlength->{issuelength} ne 'NULL';
1059
1060         # if no rule is set => 21 days (hardcoded)
1061         return 21;
1062 }
1063 =head2 returnbook
1064
1065   ($doreturn, $messages, $iteminformation, $borrower) =
1066           &returnbook($barcode, $branch);
1067
1068 Returns a book.
1069
1070 C<$barcode> is the bar code of the book being returned. C<$branch> is
1071 the code of the branch where the book is being returned.
1072
1073 C<&returnbook> returns a list of four items:
1074
1075 C<$doreturn> is true iff the return succeeded.
1076
1077 C<$messages> is a reference-to-hash giving the reason for failure:
1078
1079 =over 4
1080
1081 =item C<BadBarcode>
1082
1083 No item with this barcode exists. The value is C<$barcode>.
1084
1085 =item C<NotIssued>
1086
1087 The book is not currently on loan. The value is C<$barcode>.
1088
1089 =item C<IsPermanent>
1090
1091 The book's home branch is a permanent collection. If you have borrowed
1092 this book, you are not allowed to return it. The value is the code for
1093 the book's home branch.
1094
1095 =item C<wthdrawn>
1096
1097 This book has been withdrawn/cancelled. The value should be ignored.
1098
1099 =item C<ResFound>
1100
1101 The item was reserved. The value is a reference-to-hash whose keys are
1102 fields from the reserves table of the Koha database, and
1103 C<biblioitemnumber>. It also has the key C<ResFound>, whose value is
1104 either C<Waiting>, C<Reserved>, or 0.
1105
1106 =back
1107
1108 C<$borrower> is a reference-to-hash, giving information about the
1109 patron who last borrowed the book.
1110
1111 =cut
1112
1113 # FIXME - This API is bogus. There's no need to return $borrower and
1114 # $iteminformation; the caller can ask about those separately, if it
1115 # cares (it'd be inefficient to make two database calls instead of
1116 # one, but &getpatroninformation and &getiteminformation can be
1117 # memoized if this is an issue).
1118 #
1119 # The ($doreturn, $messages) tuple is redundant: if the return
1120 # succeeded, that's all the caller needs to know. So &returnbook can
1121 # return 1 and 0 on success and failure, and set
1122 # $C4::Circulation::Circ2::errmsg to indicate the error. Or it can
1123 # return undef for success, and an error message on error (though this
1124 # is more C-ish than Perl-ish).
1125
1126 sub returnbook {
1127         my ($barcode, $branch) = @_;
1128         my %env;
1129         my $messages;
1130         my $dbh = C4::Context->dbh;
1131         my $doreturn = 1;
1132         die '$branch not defined' unless defined $branch; # just in case (bug 170)
1133         # get information on item
1134         my ($iteminformation) = getiteminformation(\%env, 0, $barcode);
1135         if (not $iteminformation) {
1136                 $messages->{'BadBarcode'} = $barcode;
1137                 $doreturn = 0;
1138         }
1139         # find the borrower
1140         my ($currentborrower) = currentborrower($iteminformation->{'itemnumber'});
1141         if ((not $currentborrower) && $doreturn) {
1142                 $messages->{'NotIssued'} = $barcode;
1143                 $doreturn = 0;
1144         }
1145         # check if the book is in a permanent collection....
1146         my $hbr = $iteminformation->{'homebranch'};
1147         my $branches = getbranches();
1148         if ($hbr && $branches->{$hbr}->{'PE'}) {
1149                 $messages->{'IsPermanent'} = $hbr;
1150         }
1151         # check that the book has been cancelled
1152         if ($iteminformation->{'wthdrawn'}) {
1153                 $messages->{'wthdrawn'} = 1;
1154                 $doreturn = 0;
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         my ($borrower) = getpatroninformation(\%env, $currentborrower, 0);
1160         if ($doreturn) {
1161                 my $sth = $dbh->prepare("update issues set returndate = now() where (borrowernumber = ?) and (itemnumber = ?) and (returndate is null)");
1162                 $sth->execute($borrower->{'borrowernumber'}, $iteminformation->{'itemnumber'});
1163
1164 #       FIXME the holdingbranch is updated if the document is returned in an other location .           
1165                 if ( $iteminformation->{'holdingbranch'} ne C4::Context->userenv->{'branch'}){
1166                 my $sth_upd_location = $dbh->prepare("UPDATE items SET holdingbranch=? WHERE itemnumber=?");
1167                 $sth_upd_location->execute(C4::Context->userenv->{'branch'},$iteminformation->{'itemnumber'});
1168                 $sth_upd_location->finish;
1169                 $iteminformation->{'holdingbranch'} = C4::Context->userenv->{'branch'};
1170                 }
1171
1172                 $messages->{'WasReturned'} = 1; # FIXME is the "= 1" right?
1173         }
1174         itemseen($iteminformation->{'itemnumber'});
1175         ($borrower) = getpatroninformation(\%env, $currentborrower, 0);
1176         # transfer book to the current branch
1177
1178 # FIXME function transfered still always used ????
1179 #       my ($transfered, $mess, $item) = transferbook($branch, $barcode, 1);
1180 #       if ($transfered) {
1181 #               $messages->{'WasTransfered'} = 1; # FIXME is the "= 1" right?
1182 #       }
1183
1184         # fix up the accounts.....
1185         if ($iteminformation->{'itemlost'}) {
1186                 fixaccountforlostandreturned($iteminformation, $borrower);
1187                 $messages->{'WasLost'} = 1; # FIXME is the "= 1" right?
1188         }
1189 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
1190 #       check if we have a transfer for this document
1191         my $checktransfer = checktransferts($iteminformation->{'itemnumber'});
1192 #       if we have a return, we update the line of transfers with the datearrived
1193         if ($checktransfer){
1194                 my $sth = $dbh->prepare("update branchtransfers set datearrived = now() where itemnumber= ? AND datearrived IS NULL");
1195                 $sth->execute($iteminformation->{'itemnumber'});
1196                 $sth->finish;
1197 #               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'
1198                 my $updateWaiting = SetWaitingStatus($iteminformation->{'itemnumber'});
1199         }
1200 #       if we don't have a transfer on run, we check if the document is not in his homebranch and there is not a reservation, we transfer this one to his home branch directly .
1201         else {
1202         #       new op dev
1203                 my $checkreserves = CheckReserves($iteminformation->{'itemnumber'});
1204                 if (($iteminformation->{'homebranch'} ne $iteminformation->{'holdingbranch'}) and (not $checkreserves)){
1205                         my $automatictransfer = dotransfer($iteminformation->{'itemnumber'},$iteminformation->{'holdingbranch'},$iteminformation->{'homebranch'});
1206                         $messages->{'WasTransfered'} = 1;
1207                 }
1208         }
1209 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
1210         # fix up the overdues in accounts...
1211         fixoverduesonreturn($borrower->{'borrowernumber'}, $iteminformation->{'itemnumber'});
1212         # find reserves.....
1213 #       if we don't have a reserve with the status W, we launch the Checkreserves routine
1214         my ($resfound, $resrec) = CheckReserves($iteminformation->{'itemnumber'});
1215         if ($resfound) {
1216         #       my $tobrcd = ReserveWaiting($resrec->{'itemnumber'}, $resrec->{'borrowernumber'});
1217                 $resrec->{'ResFound'} = $resfound;
1218                 $messages->{'ResFound'} = $resrec;
1219         }
1220         # update stats?
1221         # Record the fact that this book was returned.
1222         UpdateStats(\%env, $branch ,'return','0','',$iteminformation->{'itemnumber'},$iteminformation->{'itemtype'},$borrower->{'borrowernumber'});
1223         return ($doreturn, $messages, $iteminformation, $borrower);
1224 }
1225
1226 =head2 fixaccountforlostandreturned
1227
1228         &fixaccountforlostandreturned($iteminfo,$borrower);
1229
1230 Calculates the charge for a book lost and returned (Not exported & used only once)
1231
1232 C<$iteminfo> is a hashref to iteminfo. Only {itemnumber} is used.
1233
1234 C<$borrower> is a hashref to borrower. Only {borrowernumber is used.
1235
1236 =cut
1237
1238 sub fixaccountforlostandreturned {
1239         my ($iteminfo, $borrower) = @_;
1240         my %env;
1241         my $dbh = C4::Context->dbh;
1242         my $itm = $iteminfo->{'itemnumber'};
1243         # check for charge made for lost book
1244         my $sth = $dbh->prepare("select * from accountlines where (itemnumber = ?) and (accounttype='L' or accounttype='Rep') order by date desc");
1245         $sth->execute($itm);
1246         if (my $data = $sth->fetchrow_hashref) {
1247         # writeoff this amount
1248                 my $offset;
1249                 my $amount = $data->{'amount'};
1250                 my $acctno = $data->{'accountno'};
1251                 my $amountleft;
1252                 if ($data->{'amountoutstanding'} == $amount) {
1253                 $offset = $data->{'amount'};
1254                 $amountleft = 0;
1255                 } else {
1256                 $offset = $amount - $data->{'amountoutstanding'};
1257                 $amountleft = $data->{'amountoutstanding'} - $amount;
1258                 }
1259                 my $usth = $dbh->prepare("update accountlines set accounttype = 'LR',amountoutstanding='0'
1260                         where (borrowernumber = ?)
1261                         and (itemnumber = ?) and (accountno = ?) ");
1262                 $usth->execute($data->{'borrowernumber'},$itm,$acctno);
1263                 $usth->finish;
1264         #check if any credit is left if so writeoff other accounts
1265                 my $nextaccntno = getnextacctno(\%env,$data->{'borrowernumber'},$dbh);
1266                 if ($amountleft < 0){
1267                 $amountleft*=-1;
1268                 }
1269                 if ($amountleft > 0){
1270                 my $msth = $dbh->prepare("select * from accountlines where (borrowernumber = ?)
1271                                                         and (amountoutstanding >0) order by date");
1272                 $msth->execute($data->{'borrowernumber'});
1273         # offset transactions
1274                 my $newamtos;
1275                 my $accdata;
1276                 while (($accdata=$msth->fetchrow_hashref) and ($amountleft>0)){
1277                         if ($accdata->{'amountoutstanding'} < $amountleft) {
1278                         $newamtos = 0;
1279                         $amountleft -= $accdata->{'amountoutstanding'};
1280                         }  else {
1281                         $newamtos = $accdata->{'amountoutstanding'} - $amountleft;
1282                         $amountleft = 0;
1283                         }
1284                         my $thisacct = $accdata->{'accountno'};
1285                         my $usth = $dbh->prepare("update accountlines set amountoutstanding= ?
1286                                         where (borrowernumber = ?)
1287                                         and (accountno=?)");
1288                         $usth->execute($newamtos,$data->{'borrowernumber'},'$thisacct');
1289                         $usth->finish;
1290                         $usth = $dbh->prepare("insert into accountoffsets
1291                                 (borrowernumber, accountno, offsetaccount,  offsetamount)
1292                                 values
1293                                 (?,?,?,?)");
1294                         $usth->execute($data->{'borrowernumber'},$accdata->{'accountno'},$nextaccntno,$newamtos);
1295                         $usth->finish;
1296                 }
1297                 $msth->finish;
1298                 }
1299                 if ($amountleft > 0){
1300                         $amountleft*=-1;
1301                 }
1302                 my $desc="Book Returned ".$iteminfo->{'barcode'};
1303                 $usth = $dbh->prepare("insert into accountlines
1304                         (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
1305                         values (?,?,now(),?,?,'CR',?)");
1306                 $usth->execute($data->{'borrowernumber'},$nextaccntno,0-$amount,$desc,$amountleft);
1307                 $usth->finish;
1308                 $usth = $dbh->prepare("insert into accountoffsets
1309                         (borrowernumber, accountno, offsetaccount,  offsetamount)
1310                         values (?,?,?,?)");
1311                 $usth->execute($borrower->{'borrowernumber'},$data->{'accountno'},$nextaccntno,$offset);
1312                 $usth->finish;
1313                 $usth = $dbh->prepare("update items set paidfor='' where itemnumber=?");
1314                 $usth->execute($itm);
1315                 $usth->finish;
1316         }
1317         $sth->finish;
1318         return;
1319 }
1320
1321 =head2 fixoverdueonreturn
1322
1323         &fixoverdueonreturn($brn,$itm);
1324
1325 ??
1326
1327 C<$brn> borrowernumber
1328
1329 C<$itm> itemnumber
1330
1331 =cut
1332
1333 sub fixoverduesonreturn {
1334         my ($brn, $itm) = @_;
1335         my $dbh = C4::Context->dbh;
1336         # check for overdue fine
1337         my $sth = $dbh->prepare("select * from accountlines where (borrowernumber = ?) and (itemnumber = ?) and (accounttype='FU' or accounttype='O')");
1338         $sth->execute($brn,$itm);
1339         # alter fine to show that the book has been returned
1340         if (my $data = $sth->fetchrow_hashref) {
1341                 my $usth=$dbh->prepare("update accountlines set accounttype='F' where (borrowernumber = ?) and (itemnumber = ?) and (acccountno = ?)");
1342                 $usth->execute($brn,$itm,$data->{'accountno'});
1343                 $usth->finish();
1344         }
1345         $sth->finish();
1346         return;
1347 }
1348
1349 # Not exported
1350 #
1351 # NOTE!: If you change this function, be sure to update the POD for
1352 # &getpatroninformation.
1353 #
1354 # $flags = &patronflags($env, $patron, $dbh);
1355 #
1356 # $flags->{CHARGES}
1357 #               {message}       Message showing patron's credit or debt
1358 #               {noissues}      Set if patron owes >$5.00
1359 #         {GNA}                 Set if patron gone w/o address
1360 #               {message}       "Borrower has no valid address"
1361 #               {noissues}      Set.
1362 #         {LOST}                Set if patron's card reported lost
1363 #               {message}       Message to this effect
1364 #               {noissues}      Set.
1365 #         {DBARRED}             Set is patron is debarred
1366 #               {message}       Message to this effect
1367 #               {noissues}      Set.
1368 #         {NOTES}               Set if patron has notes
1369 #               {message}       Notes about patron
1370 #         {ODUES}               Set if patron has overdue books
1371 #               {message}       "Yes"
1372 #               {itemlist}      ref-to-array: list of overdue books
1373 #               {itemlisttext}  Text list of overdue items
1374 #         {WAITING}             Set if there are items available that the
1375 #                               patron reserved
1376 #               {message}       Message to this effect
1377 #               {itemlist}      ref-to-array: list of available items
1378 sub patronflags {
1379 # Original subroutine for Circ2.pm
1380         my %flags;
1381         my ($env, $patroninformation, $dbh) = @_;
1382         my $amount = checkaccount($env, $patroninformation->{'borrowernumber'}, $dbh);
1383         if ($amount > 0) {
1384                 my %flaginfo;
1385                 my $noissuescharge = C4::Context->preference("noissuescharge");
1386                 $flaginfo{'message'}= sprintf "Patron owes \$%.02f", $amount;
1387                 if ($amount > $noissuescharge) {
1388                 $flaginfo{'noissues'} = 1;
1389                 }
1390                 $flags{'CHARGES'} = \%flaginfo;
1391         } elsif ($amount < 0){
1392         my %flaginfo;
1393         $flaginfo{'message'} = sprintf "Patron has credit of \$%.02f", -$amount;
1394                 $flags{'CHARGES'} = \%flaginfo;
1395         }
1396         if ($patroninformation->{'gonenoaddress'} && $patroninformation->{'gonenoaddress'} == 1) {
1397                 my %flaginfo;
1398                 $flaginfo{'message'} = 'Borrower has no valid address.';
1399                 $flaginfo{'noissues'} = 1;
1400                 $flags{'GNA'} = \%flaginfo;
1401         }
1402         if ($patroninformation->{'lost'} && $patroninformation->{'lost'} == 1) {
1403                 my %flaginfo;
1404                 $flaginfo{'message'} = 'Borrower\'s card reported lost.';
1405                 $flaginfo{'noissues'} = 1;
1406                 $flags{'LOST'} = \%flaginfo;
1407         }
1408         if ($patroninformation->{'debarred'} && $patroninformation->{'debarred'} == 1) {
1409                 my %flaginfo;
1410                 $flaginfo{'message'} = 'Borrower is Debarred.';
1411                 $flaginfo{'noissues'} = 1;
1412                 $flags{'DBARRED'} = \%flaginfo;
1413         }
1414         if ($patroninformation->{'borrowernotes'} && $patroninformation->{'borrowernotes'}) {
1415                 my %flaginfo;
1416                 $flaginfo{'message'} = "$patroninformation->{'borrowernotes'}";
1417                 $flags{'NOTES'} = \%flaginfo;
1418         }
1419         my ($odues, $itemsoverdue)
1420                         = checkoverdues($env, $patroninformation->{'borrowernumber'}, $dbh);
1421         if ($odues > 0) {
1422                 my %flaginfo;
1423                 $flaginfo{'message'} = "Yes";
1424                 $flaginfo{'itemlist'} = $itemsoverdue;
1425                 foreach (sort {$a->{'date_due'} cmp $b->{'date_due'}} @$itemsoverdue) {
1426                 $flaginfo{'itemlisttext'}.="$_->{'date_due'} $_->{'barcode'} $_->{'title'} \n";
1427                 }
1428                 $flags{'ODUES'} = \%flaginfo;
1429         }
1430         my ($nowaiting, $itemswaiting)
1431                         = CheckWaiting($patroninformation->{'borrowernumber'});
1432         if ($nowaiting > 0) {
1433                 my %flaginfo;
1434                 $flaginfo{'message'} = "Reserved items available";
1435                 $flaginfo{'itemlist'} = $itemswaiting;
1436                 $flags{'WAITING'} = \%flaginfo;
1437         }
1438         return(\%flags);
1439 }
1440
1441
1442 # Not exported
1443 sub checkoverdues {
1444 # From Main.pm, modified to return a list of overdueitems, in addition to a count
1445   #checks whether a borrower has overdue items
1446         my ($env, $bornum, $dbh)=@_;
1447         my @datearr = localtime;
1448         my $today = ($datearr[5] + 1900)."-".($datearr[4]+1)."-".$datearr[3];
1449         my @overdueitems;
1450         my $count = 0;
1451         my $sth = $dbh->prepare("SELECT * FROM issues,biblio,biblioitems,items
1452                         WHERE items.biblioitemnumber = biblioitems.biblioitemnumber
1453                                 AND items.biblionumber     = biblio.biblionumber
1454                                 AND issues.itemnumber      = items.itemnumber
1455                                 AND issues.borrowernumber  = ?
1456                                 AND issues.returndate is NULL
1457                                 AND issues.date_due < ?");
1458         $sth->execute($bornum,$today);
1459         while (my $data = $sth->fetchrow_hashref) {
1460         push (@overdueitems, $data);
1461         $count++;
1462         }
1463         $sth->finish;
1464         return ($count, \@overdueitems);
1465 }
1466
1467 # Not exported
1468 sub currentborrower {
1469 # Original subroutine for Circ2.pm
1470         my ($itemnumber) = @_;
1471         my $dbh = C4::Context->dbh;
1472         my $q_itemnumber = $dbh->quote($itemnumber);
1473         my $sth=$dbh->prepare("select borrowers.borrowernumber from
1474         issues,borrowers where issues.itemnumber=$q_itemnumber and
1475         issues.borrowernumber=borrowers.borrowernumber and issues.returndate is
1476         NULL");
1477         $sth->execute;
1478         my ($borrower) = $sth->fetchrow;
1479         return($borrower);
1480 }
1481
1482 # FIXME - Not exported, but used in 'updateitem.pl' anyway.
1483 sub checkreserve_to_delete {
1484 # Stolen from Main.pm
1485 # Check for reserves for biblio
1486         my ($env,$dbh,$itemnum)=@_;
1487         my $resbor = "";
1488         my $sth = $dbh->prepare("select * from reserves,items
1489         where (items.itemnumber = ?)
1490         and (reserves.cancellationdate is NULL)
1491         and (items.biblionumber = reserves.biblionumber)
1492         and ((reserves.found = 'W')
1493         or (reserves.found is null))
1494         order by priority");
1495         $sth->execute($itemnum);
1496         my $resrec;
1497         my $data=$sth->fetchrow_hashref;
1498         while ($data && $resbor eq '') {
1499         $resrec=$data;
1500         my $const = $data->{'constrainttype'};
1501         if ($const eq "a") {
1502         $resbor = $data->{'borrowernumber'};
1503         } else {
1504         my $found = 0;
1505         my $csth = $dbh->prepare("select * from reserveconstraints,items
1506                 where (borrowernumber=?)
1507                 and reservedate=?
1508                 and reserveconstraints.biblionumber=?
1509                 and (items.itemnumber=? and
1510                 items.biblioitemnumber = reserveconstraints.biblioitemnumber)");
1511         $csth->execute($data->{'borrowernumber'},$data->{'biblionumber'},$data->{'reservedate'},$itemnum);
1512         if (my $cdata=$csth->fetchrow_hashref) {$found = 1;}
1513         if ($const eq 'o') {
1514                 if ($found eq 1) {$resbor = $data->{'borrowernumber'};}
1515         } else {
1516                 if ($found eq 0) {$resbor = $data->{'borrowernumber'};}
1517         }
1518         $csth->finish();
1519         }
1520         $data=$sth->fetchrow_hashref;
1521         }
1522         $sth->finish;
1523         return ($resbor,$resrec);
1524 }
1525
1526 =head2 currentissues
1527
1528   $issues = &currentissues($env, $borrower);
1529
1530 Returns a list of books currently on loan to a patron.
1531
1532 If C<$env-E<gt>{todaysissues}> is set and true, C<&currentissues> only
1533 returns information about books issued today. If
1534 C<$env-E<gt>{nottodaysissues}> is set and true, C<&currentissues> only
1535 returns information about books issued before today. If both are
1536 specified, C<$env-E<gt>{todaysissues}> is ignored. If neither is
1537 specified, C<&currentissues> returns all of the patron's issues.
1538
1539 C<$borrower->{borrowernumber}> is the borrower number of the patron
1540 whose issues we want to list.
1541
1542 C<&currentissues> returns a PHP-style array: C<$issues> is a
1543 reference-to-hash whose keys are integers in the range 1...I<n>, where
1544 I<n> is the number of items on issue (either today or before today).
1545 C<$issues-E<gt>{I<n>}> is a reference-to-hash whose keys are all of
1546 the fields of the biblio, biblioitems, items, and issues fields of the
1547 Koha database for that particular item.
1548
1549 =cut
1550
1551 #'
1552 sub currentissues {
1553 # New subroutine for Circ2.pm
1554         my ($env, $borrower) = @_;
1555         my $dbh = C4::Context->dbh;
1556         my %currentissues;
1557         my $counter=1;
1558         my $borrowernumber = $borrower->{'borrowernumber'};
1559         my $crit='';
1560
1561         # Figure out whether to get the books issued today, or earlier.
1562         # FIXME - $env->{todaysissues} and $env->{nottodaysissues} can
1563         # both be specified, but are mutually-exclusive. This is bogus.
1564         # Make this a flag. Or better yet, return everything in (reverse)
1565         # chronological order and let the caller figure out which books
1566         # were issued today.
1567         if ($env->{'todaysissues'}) {
1568                 # FIXME - Could use
1569                 #       $today = POSIX::strftime("%Y%m%d", localtime);
1570                 # FIXME - Since $today will be used in either case, move it
1571                 # out of the two if-blocks.
1572                 my @datearr = localtime(time());
1573                 my $today = (1900+$datearr[5]).sprintf "%02d", ($datearr[4]+1).sprintf "%02d", $datearr[3];
1574                 # FIXME - MySQL knows about dates. Just use
1575                 #       and issues.timestamp = curdate();
1576                 $crit=" and issues.timestamp like '$today%' ";
1577         }
1578         if ($env->{'nottodaysissues'}) {
1579                 # FIXME - Could use
1580                 #       $today = POSIX::strftime("%Y%m%d", localtime);
1581                 # FIXME - Since $today will be used in either case, move it
1582                 # out of the two if-blocks.
1583                 my @datearr = localtime(time());
1584                 my $today = (1900+$datearr[5]).sprintf "%02d", ($datearr[4]+1).sprintf "%02d", $datearr[3];
1585                 # FIXME - MySQL knows about dates. Just use
1586                 #       and issues.timestamp < curdate();
1587                 $crit=" and !(issues.timestamp like '$today%') ";
1588         }
1589
1590         # FIXME - Does the caller really need every single field from all
1591         # four tables?
1592         my $sth=$dbh->prepare("select * from issues,items,biblioitems,biblio where
1593         borrowernumber=? and issues.itemnumber=items.itemnumber and
1594         items.biblionumber=biblio.biblionumber and
1595         items.biblioitemnumber=biblioitems.biblioitemnumber and returndate is null
1596         $crit order by issues.date_due");
1597         $sth->execute($borrowernumber);
1598         while (my $data = $sth->fetchrow_hashref) {
1599                 # FIXME - The Dewey code is a string, not a number.
1600                 $data->{'dewey'}=~s/0*$//;
1601                 ($data->{'dewey'} == 0) && ($data->{'dewey'}='');
1602                 # FIXME - Could use
1603                 #       $todaysdate = POSIX::strftime("%Y%m%d", localtime)
1604                 # or better yet, just reuse $today which was calculated above.
1605                 # This function isn't going to run until midnight, is it?
1606                 # Alternately, use
1607                 #       $todaysdate = POSIX::strftime("%Y-%m-%d", localtime)
1608                 #       if ($data->{'date_due'} lt $todaysdate)
1609                 #               ...
1610                 # Either way, the date should be be formatted outside of the
1611                 # loop.
1612                 my @datearr = localtime(time());
1613                 my $todaysdate = (1900+$datearr[5]).sprintf ("%0.2d", ($datearr[4]+1)).sprintf ("%0.2d", $datearr[3]);
1614                 my $datedue=$data->{'date_due'};
1615                 $datedue=~s/-//g;
1616                 if ($datedue < $todaysdate) {
1617                         $data->{'overdue'}=1;
1618                 }
1619                 my $itemnumber=$data->{'itemnumber'};
1620                 # FIXME - Consecutive integers as hash keys? You have GOT to
1621                 # be kidding me! Use an array, fercrissakes!
1622                 $currentissues{$counter}=$data;
1623                 $counter++;
1624         }
1625         $sth->finish;
1626         return(\%currentissues);
1627 }
1628
1629 =head2 getissues
1630
1631   $issues = &getissues($borrowernumber);
1632
1633 Returns the set of books currently on loan to a patron.
1634
1635 C<$borrowernumber> is the patron's borrower number.
1636
1637 C<&getissues> returns a PHP-style array: C<$issues> is a
1638 reference-to-hash whose keys are integers in the range 0..I<n>-1,
1639 where I<n> is the number of books the patron currently has on loan.
1640
1641 The values of C<$issues> are references-to-hash whose keys are
1642 selected fields from the issues, items, biblio, and biblioitems tables
1643 of the Koha database.
1644
1645 =cut
1646 #'
1647 sub getissues {
1648 # New subroutine for Circ2.pm
1649         my ($borrower) = @_;
1650         my $dbh = C4::Context->dbh;
1651         my $borrowernumber = $borrower->{'borrowernumber'};
1652         my %currentissues;
1653         my $select = "SELECT items.*,issues.timestamp      AS timestamp,
1654                                 issues.date_due       AS date_due,
1655                                 items.barcode         AS barcode,
1656                                 biblio.title          AS title,
1657                                 biblio.author         AS author,
1658                                 biblioitems.dewey     AS dewey,
1659                                 itemtypes.description AS itemtype,
1660                                 biblioitems.subclass  AS subclass,
1661                                 biblioitems.classification AS classification
1662                         FROM issues,items,biblioitems,biblio, itemtypes
1663                         WHERE issues.borrowernumber  = ?
1664                         AND issues.itemnumber      = items.itemnumber
1665                         AND items.biblionumber     = biblio.biblionumber
1666                         AND items.biblioitemnumber = biblioitems.biblioitemnumber
1667                         AND itemtypes.itemtype     = biblioitems.itemtype
1668                         AND issues.returndate      IS NULL
1669                         ORDER BY issues.date_due DESC";
1670         #    print $select;
1671         my $sth=$dbh->prepare($select);
1672         $sth->execute($borrowernumber);
1673         my $counter = 0;
1674         while (my $data = $sth->fetchrow_hashref) {
1675                 $data->{'dewey'} =~ s/0*$//;
1676                 ($data->{'dewey'} == 0) && ($data->{'dewey'} = '');
1677                         # FIXME - The Dewey code is a string, not a number.
1678                 # FIXME - Use POSIX::strftime to get a text version of today's
1679                 # date. That's what it's for.
1680                 # FIXME - Move the date calculation outside of the loop.
1681                 my @datearr = localtime(time());
1682                 my $todaysdate = (1900+$datearr[5]).sprintf ("%0.2d", ($datearr[4]+1)).sprintf ("%0.2d", $datearr[3]);
1683
1684                 # FIXME - Instead of converting the due date to YYYYMMDD, just
1685                 # use
1686                 #       $todaysdate = POSIX::strftime("%Y-%m-%d", localtime);
1687                 #       ...
1688                 #       if ($date->{date_due} lt $todaysdate)
1689                 my $datedue = $data->{'date_due'};
1690                 $datedue =~ s/-//g;
1691                 if ($datedue < $todaysdate) {
1692                         $data->{'overdue'} = 1;
1693                 }
1694                 $currentissues{$counter} = $data;
1695                 $counter++;
1696                         # FIXME - This is ludicrous. If you want to return an
1697                         # array of values, just use an array. That's what
1698                         # they're there for.
1699         }
1700         $sth->finish;
1701         return(\%currentissues);
1702 }
1703
1704 # Not exported
1705 sub checkwaiting {
1706 #Stolen from Main.pm
1707 # check for reserves waiting
1708         my ($env,$dbh,$bornum)=@_;
1709         my @itemswaiting;
1710         my $sth = $dbh->prepare("select * from reserves where (borrowernumber = ?) and (reserves.found='W') and cancellationdate is NULL");
1711         $sth->execute($bornum);
1712         my $cnt=0;
1713         if (my $data=$sth->fetchrow_hashref) {
1714                 $itemswaiting[$cnt] =$data;
1715                 $cnt ++
1716         }
1717         $sth->finish;
1718         return ($cnt,\@itemswaiting);
1719 }
1720
1721 =head2 renewstatus
1722
1723   $ok = &renewstatus($env, $dbh, $borrowernumber, $itemnumber);
1724
1725 Find out whether a borrowed item may be renewed.
1726
1727 C<$env> is ignored.
1728
1729 C<$dbh> is a DBI handle to the Koha database.
1730
1731 C<$borrowernumber> is the borrower number of the patron who currently
1732 has the item on loan.
1733
1734 C<$itemnumber> is the number of the item to renew.
1735
1736 C<$renewstatus> returns a true value iff the item may be renewed. The
1737 item must currently be on loan to the specified borrower; renewals
1738 must be allowed for the item's type; and the borrower must not have
1739 already renewed the loan.
1740
1741 =cut
1742
1743 sub renewstatus {
1744         # check renewal status
1745         my ($env,$bornum,$itemno)=@_;
1746         my $dbh = C4::Context->dbh;
1747         my $renews = 1;
1748         my $renewokay = 0;
1749         # Look in the issues table for this item, lent to this borrower,
1750         # and not yet returned.
1751         
1752         # FIXME - I think this function could be redone to use only one SQL call.
1753         my $sth1 = $dbh->prepare("select * from issues
1754                                                                 where (borrowernumber = ?)
1755                                                                 and (itemnumber = ?)
1756                                                                 and returndate is null");
1757         $sth1->execute($bornum,$itemno);
1758         if (my $data1 = $sth1->fetchrow_hashref) {
1759                 # Found a matching item
1760         
1761                 # See if this item may be renewed. This query is convoluted
1762                 # because it's a bit messy: given the item number, we need to find
1763                 # the biblioitem, which gives us the itemtype, which tells us
1764                 # whether it may be renewed.
1765                 my $sth2 = $dbh->prepare("SELECT renewalsallowed from items,biblioitems,itemtypes
1766                 where (items.itemnumber = ?)
1767                 and (items.biblioitemnumber = biblioitems.biblioitemnumber)
1768                 and (biblioitems.itemtype = itemtypes.itemtype)");
1769                 $sth2->execute($itemno);
1770                 if (my $data2=$sth2->fetchrow_hashref) {
1771                         $renews = $data2->{'renewalsallowed'};
1772                 }
1773                 if ($renews && $renews > $data1->{'renewals'}) {
1774                         $renewokay = 1;
1775                 }
1776                 $sth2->finish;
1777                 my ($resfound, $resrec) = CheckReserves($itemno);
1778                 if ($resfound) {
1779                         $renewokay = 0;
1780                 }
1781                 ($resfound, $resrec) = CheckReserves($itemno);
1782                 if ($resfound) {
1783                         $renewokay = 0;
1784                 }
1785
1786         }
1787         $sth1->finish;
1788         return($renewokay);
1789 }
1790
1791 =head2 renewbook
1792
1793   &renewbook($env, $borrowernumber, $itemnumber, $datedue);
1794
1795 Renews a loan.
1796
1797 C<$env-E<gt>{branchcode}> is the code of the branch where the
1798 renewal is taking place.
1799
1800 C<$env-E<gt>{usercode}> is the value to log in C<statistics.usercode>
1801 in the Koha database.
1802
1803 C<$borrowernumber> is the borrower number of the patron who currently
1804 has the item.
1805
1806 C<$itemnumber> is the number of the item to renew.
1807
1808 C<$datedue> can be used to set the due date. If C<$datedue> is the
1809 empty string, C<&renewbook> will calculate the due date automatically
1810 from the book's item type. If you wish to set the due date manually,
1811 C<$datedue> should be in the form YYYY-MM-DD.
1812
1813 =cut
1814
1815 sub renewbook {
1816         # mark book as renewed
1817         my ($env,$bornum,$itemno,$datedue)=@_;
1818         my $dbh = C4::Context->dbh;
1819
1820         # If the due date wasn't specified, calculate it by adding the
1821         # book's loan length to today's date.
1822         if ($datedue eq "" ) {
1823                 #debug_msg($env, "getting date");
1824                 my $iteminformation = getiteminformation($env, $itemno,0);
1825                 my $borrower = getpatroninformation($env,$bornum,0);
1826                 my $loanlength = getLoanLength($borrower->{'categorycode'},$iteminformation->{'itemtype'},$borrower->{'branchcode'});
1827                 $datedue = UnixDate(DateCalc("today","$loanlength days"),"%Y-%m-%d");
1828         }
1829
1830         # Find the issues record for this book
1831         my $sth=$dbh->prepare("select * from issues where borrowernumber=? and itemnumber=? and returndate is null");
1832         $sth->execute($bornum,$itemno);
1833         my $issuedata=$sth->fetchrow_hashref;
1834         $sth->finish;
1835
1836         # Update the issues record to have the new due date, and a new count
1837         # of how many times it has been renewed.
1838         my $renews = $issuedata->{'renewals'} +1;
1839         $sth=$dbh->prepare("update issues set date_due = ?, renewals = ?
1840                 where borrowernumber=? and itemnumber=? and returndate is null");
1841         $sth->execute($datedue,$renews,$bornum,$itemno);
1842         $sth->finish;
1843
1844         # Log the renewal
1845         UpdateStats($env,$env->{'branchcode'},'renew','','',$itemno);
1846
1847         # Charge a new rental fee, if applicable?
1848         my ($charge,$type)=calc_charges($env, $itemno, $bornum);
1849         if ($charge > 0){
1850                 my $accountno=getnextacctno($env,$bornum,$dbh);
1851                 my $item=getiteminformation($env, $itemno);
1852                 $sth=$dbh->prepare("Insert into accountlines (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding,itemnumber)
1853                                                         values (?,?,now(),?,?,?,?,?)");
1854                 $sth->execute($bornum,$accountno,$charge,"Renewal of Rental Item $item->{'title'} $item->{'barcode'}",'Rent',$charge,$itemno);
1855                 $sth->finish;
1856         #     print $account;
1857         }
1858         
1859         #  return();
1860 }
1861
1862
1863
1864 =item calc_charges
1865
1866   ($charge, $item_type) = &calc_charges($env, $itemnumber, $borrowernumber);
1867
1868 Calculate how much it would cost for a given patron to borrow a given
1869 item, including any applicable discounts.
1870
1871 C<$env> is ignored.
1872
1873 C<$itemnumber> is the item number of item the patron wishes to borrow.
1874
1875 C<$borrowernumber> is the patron's borrower number.
1876
1877 C<&calc_charges> returns two values: C<$charge> is the rental charge,
1878 and C<$item_type> is the code for the item's item type (e.g., C<VID>
1879 if it's a video).
1880
1881 =cut
1882
1883 sub calc_charges {
1884         # calculate charges due
1885         my ($env, $itemno, $bornum)=@_;
1886         my $charge=0;
1887         my $dbh = C4::Context->dbh;
1888         my $item_type;
1889         
1890         # Get the book's item type and rental charge (via its biblioitem).
1891         my $sth1= $dbh->prepare("select itemtypes.itemtype,rentalcharge from items,biblioitems,itemtypes
1892                                                                 where (items.itemnumber =?)
1893                                                                 and (biblioitems.biblioitemnumber = items.biblioitemnumber)
1894                                                                 and (biblioitems.itemtype = itemtypes.itemtype)");
1895         $sth1->execute($itemno);
1896         if (my $data1=$sth1->fetchrow_hashref) {
1897             $item_type = $data1->{'itemtype'};
1898             $charge = $data1->{'rentalcharge'};
1899             my $q2 = "select rentaldiscount from issuingrules,borrowers
1900               where (borrowers.borrowernumber = ?)
1901               and (borrowers.categorycode = issuingrules.categorycode)
1902               and (issuingrules.itemtype = ?)";
1903             my $sth2=$dbh->prepare($q2);
1904             $sth2->execute($bornum,$item_type);
1905             if (my $data2=$sth2->fetchrow_hashref) {
1906                 my $discount = $data2->{'rentaldiscount'};
1907                 if ($discount eq 'NULL') {
1908                     $discount=0;
1909                 }
1910                 $charge = ($charge *(100 - $discount)) / 100;
1911                 #               warn "discount is $discount";
1912             }
1913         $sth2->finish;
1914         }
1915
1916         $sth1->finish;
1917         return ($charge,$item_type);
1918 }
1919
1920
1921 # FIXME - A virtually identical function appears in
1922 # C4::Circulation::Issues. Pick one and stick with it.
1923 sub createcharge {
1924 #Stolen from Issues.pm
1925     my ($env,$dbh,$itemno,$bornum,$charge) = @_;
1926     my $nextaccntno = getnextacctno($env,$bornum,$dbh);
1927     my $sth = $dbh->prepare(<<EOT);
1928         INSERT INTO     accountlines
1929                         (borrowernumber, itemnumber, accountno,
1930                          date, amount, description, accounttype,
1931                          amountoutstanding)
1932         VALUES          (?, ?, ?,
1933                          now(), ?, 'Rental', 'Rent',
1934                          ?)
1935 EOT
1936     $sth->execute($bornum, $itemno, $nextaccntno, $charge, $charge);
1937     $sth->finish;
1938 }
1939
1940
1941 =item find_reserves
1942
1943   ($status, $record) = &find_reserves($itemnumber);
1944
1945 Looks up an item in the reserves.
1946
1947 C<$itemnumber> is the itemnumber to look up.
1948
1949 C<$status> is true iff the search was successful.
1950
1951 C<$record> is a reference-to-hash describing the reserve. Its keys are
1952 the fields from the reserves table of the Koha database.
1953
1954 =cut
1955 #'
1956 # FIXME - This API is bogus: just return the record, or undef if none
1957 # was found.
1958 # FIXME - There's also a &C4::Circulation::Returns::find_reserves, but
1959 # that one looks rather different.
1960 sub find_reserves {
1961 # Stolen from Returns.pm
1962     my ($itemno) = @_;
1963     my %env;
1964     my $dbh = C4::Context->dbh;
1965     my ($itemdata) = getiteminformation(\%env, $itemno,0);
1966     my $bibno = $dbh->quote($itemdata->{'biblionumber'});
1967     my $bibitm = $dbh->quote($itemdata->{'biblioitemnumber'});
1968     my $sth = $dbh->prepare("select * from reserves where ((found = 'W') or (found is null)) and biblionumber = ? and cancellationdate is NULL order by priority, reservedate");
1969     $sth->execute($bibno);
1970     my $resfound = 0;
1971     my $resrec;
1972     my $lastrec;
1973 # print $query;
1974
1975     # FIXME - I'm not really sure what's going on here, but since we
1976     # only want one result, wouldn't it be possible (and far more
1977     # efficient) to do something clever in SQL that only returns one
1978     # set of values?
1979     while (($resrec = $sth->fetchrow_hashref) && (not $resfound)) {
1980                 # FIXME - Unlike Pascal, Perl allows you to exit loops
1981                 # early. Take out the "&& (not $resfound)" and just
1982                 # use "last" at the appropriate point in the loop.
1983                 # (Oh, and just in passing: if you'd used "!" instead
1984                 # of "not", you wouldn't have needed the parentheses.)
1985         $lastrec = $resrec;
1986         my $brn = $dbh->quote($resrec->{'borrowernumber'});
1987         my $rdate = $dbh->quote($resrec->{'reservedate'});
1988         my $bibno = $dbh->quote($resrec->{'biblionumber'});
1989         if ($resrec->{'found'} eq "W") {
1990             if ($resrec->{'itemnumber'} eq $itemno) {
1991                 $resfound = 1;
1992             }
1993         } else {
1994             # FIXME - Use 'elsif' to avoid unnecessary indentation.
1995             if ($resrec->{'constrainttype'} eq "a") {
1996                 $resfound = 1;
1997             } else {
1998                         my $consth = $dbh->prepare("select * from reserveconstraints where borrowernumber = ? and reservedate = ? and biblionumber = ? and biblioitemnumber = ?");
1999                         $consth->execute($brn,$rdate,$bibno,$bibitm);
2000                         if (my $conrec = $consth->fetchrow_hashref) {
2001                                 if ($resrec->{'constrainttype'} eq "o") {
2002                                 $resfound = 1;
2003                                 }
2004                         }
2005                 $consth->finish;
2006                 }
2007         }
2008         if ($resfound) {
2009             my $updsth = $dbh->prepare("update reserves set found = 'W', itemnumber = ? where borrowernumber = ? and reservedate = ? and biblionumber = ?");
2010             $updsth->execute($itemno,$brn,$rdate,$bibno);
2011             $updsth->finish;
2012             # FIXME - "last;" here to break out of the loop early.
2013         }
2014     }
2015     $sth->finish;
2016     return ($resfound,$lastrec);
2017 }
2018
2019 sub fixdate {
2020     my ($year, $month, $day) = @_;
2021     my $invalidduedate;
2022     my $date;
2023     if ($year && $month && $day){
2024         if (($year eq 0 ) && ($month eq 0) && ($year eq 0)) {
2025 #       $env{'datedue'}='';
2026         } else {
2027             if (($year eq 0) || ($month eq 0) || ($year eq 0)) {
2028                 $invalidduedate=1;
2029             } else {
2030                 if (($day>30) && (($month==4) || ($month==6) || ($month==9) || ($month==11))) {
2031                     $invalidduedate = 1;
2032                 } 
2033                 elsif (($day > 29) && ($month == 2)) {
2034                     $invalidduedate=1;
2035                 } 
2036                 elsif (($month == 2) && ($day > 28) && (($year%4) && ((!($year%100) || ($year%400))))) {
2037                     $invalidduedate=1;
2038                 } 
2039                 else {
2040                 $date="$year-$month-$day";
2041                 }
2042             }
2043         }
2044     }
2045     return ($date, $invalidduedate);
2046         
2047 }
2048
2049 sub get_current_return_date_of {
2050     my (@itemnumbers) = @_;
2051
2052     my $query = '
2053 SELECT date_due,
2054        itemnumber
2055   FROM issues
2056   WHERE itemnumber IN ('.join(',', @itemnumbers).') AND returndate IS NULL
2057 ';
2058     return get_infos_of($query, 'itemnumber', 'date_due');
2059 }
2060
2061 sub get_transfert_infos {
2062     my ($itemnumber) = @_;
2063
2064     my $dbh = C4::Context->dbh;
2065
2066     my $query = '
2067 SELECT datesent,
2068        frombranch,
2069        tobranch
2070   FROM branchtransfers
2071   WHERE itemnumber = ?
2072     AND datearrived IS NULL
2073 ';
2074     my $sth = $dbh->prepare($query);
2075     $sth->execute($itemnumber);
2076
2077     my @row = $sth->fetchrow_array();
2078
2079     $sth->finish;
2080
2081     return @row;
2082 }
2083
2084
2085 sub DeleteTransfer {
2086         my($itemnumber) = @_;
2087         my $dbh = C4::Context->dbh;
2088         my $sth=$dbh->prepare("DELETE FROM branchtransfers
2089         where itemnumber=?
2090         AND datearrived is null ");
2091         $sth->execute($itemnumber);
2092         $sth->finish;
2093 }
2094
2095 sub GetTransfersFromBib {
2096         my($frombranch,$tobranch) = @_;
2097         my $dbh = C4::Context->dbh;
2098         my $sth=$dbh->prepare("SELECT itemnumber,datesent,frombranch FROM
2099          branchtransfers 
2100         where frombranch=?
2101         AND tobranch=? 
2102         AND datearrived is null ");
2103         $sth->execute($frombranch,$tobranch);
2104         my @gettransfers;
2105         my $i=0;
2106         while (my $data=$sth->fetchrow_hashref){
2107                 $gettransfers[$i]=$data;
2108                 $i++;
2109         }
2110         $sth->finish;
2111         return(@gettransfers);  
2112 }
2113
2114 sub GetReservesToBranch {
2115         my($frombranch,$default) = @_;
2116         my $dbh = C4::Context->dbh;
2117         my $sth=$dbh->prepare("SELECT borrowernumber,reservedate,itemnumber,timestamp FROM
2118          reserves 
2119         where priority='0' AND cancellationdate is null  
2120         AND branchcode=?
2121         AND branchcode!=?
2122         AND found is null ");
2123         $sth->execute($frombranch,$default);
2124         my @transreserv;
2125         my $i=0;
2126         while (my $data=$sth->fetchrow_hashref){
2127                 $transreserv[$i]=$data;
2128                 $i++;
2129         }
2130         $sth->finish;
2131         return(@transreserv);   
2132 }
2133
2134 sub GetReservesForBranch {
2135         my($frombranch) = @_;
2136         my $dbh = C4::Context->dbh;
2137         my $sth=$dbh->prepare("SELECT borrowernumber,reservedate,itemnumber,waitingdate FROM
2138          reserves 
2139         where priority='0' AND cancellationdate is null 
2140         AND found='W' 
2141         AND branchcode=? order by reservedate");
2142         $sth->execute($frombranch);
2143         my @transreserv;
2144         my $i=0;
2145         while (my $data=$sth->fetchrow_hashref){
2146                 $transreserv[$i]=$data;
2147                 $i++;
2148         }
2149         $sth->finish;
2150         return(@transreserv);   
2151 }
2152
2153 sub checktransferts{
2154         my($itemnumber) = @_;
2155         my $dbh = C4::Context->dbh;
2156         my $sth=$dbh->prepare("SELECT datesent,frombranch,tobranch FROM branchtransfers
2157         WHERE itemnumber = ? AND datearrived IS NULL");
2158         $sth->execute($itemnumber);
2159         my @tranferts = $sth->fetchrow_array;
2160         $sth->finish;
2161
2162         return (@tranferts);
2163 }
2164
2165 1;
2166 __END__
2167
2168 =back
2169
2170 =head1 AUTHOR
2171
2172 Koha Developement team <info@koha.org>
2173
2174 =cut
2175