Added a couple of missing $dbh->disconnect lines that were logging errors
[koha.git] / C4 / Circulation / Circ2.pm
1 package C4::Circulation::Circ2;
2
3 #package to deal with Returns
4 #written 3/11/99 by olwen@katipo.co.nz
5
6 use strict;
7 require Exporter;
8 use DBI;
9 use C4::Database;
10 #use C4::Accounts;
11 #use C4::InterfaceCDK;
12 #use C4::Circulation::Main;
13 #use C4::Format;
14 #use C4::Circulation::Renewals;
15 #use C4::Scan;
16 use C4::Stats;
17 #use C4::Search;
18 #use C4::Print;
19
20 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
21   
22 # set the version for version checking
23 $VERSION = 0.01;
24     
25 @ISA = qw(Exporter);
26 @EXPORT = qw(&getbranches &getprinters &getpatroninformation &currentissues &getiteminformation &findborrower &issuebook &returnbook);
27 %EXPORT_TAGS = ( );     # eg: TAG => [ qw!name1 name2! ],
28                   
29 # your exported package globals go here,
30 # as well as any optionally exported functions
31
32 @EXPORT_OK   = qw($Var1 %Hashit);
33
34
35 # non-exported package globals go here
36 #use vars qw(@more $stuff);
37         
38 # initalize package globals, first exported ones
39
40 my $Var1   = '';
41 my %Hashit = ();
42                     
43 # then the others (which are still accessible as $Some::Module::stuff)
44 my $stuff  = '';
45 my @more   = ();
46         
47 # all file-scoped lexicals must be created before
48 # the functions below that use them.
49                 
50 # file-private lexicals go here
51 my $priv_var    = '';
52 my %secret_hash = ();
53                             
54 # here's a file-private function as a closure,
55 # callable as &$priv_func;  it cannot be prototyped.
56 my $priv_func = sub {
57   # stuff goes here.
58 };
59                                                     
60 # make all your functions, whether exported or not;
61
62
63 sub getbranches {
64     my ($env) = @_;
65     my %branches;
66     my $dbh=&C4Connect;  
67     my $sth=$dbh->prepare("select * from branches");
68     $sth->execute;
69     while (my $branch=$sth->fetchrow_hashref) {
70 #       (next) if ($branch->{'branchcode'} eq 'TR');
71         $branches{$branch->{'branchcode'}}=$branch;
72     }
73     $dbh->disconnect;
74     return (\%branches);
75 }
76
77
78 sub getprinters {
79     my ($env) = @_;
80     my %printers;
81     my $dbh=&C4Connect;  
82     my $sth=$dbh->prepare("select * from printers");
83     $sth->execute;
84     while (my $printer=$sth->fetchrow_hashref) {
85         $printers{$printer->{'printqueue'}}=$printer;
86     }
87     $dbh->disconnect;
88     return (\%printers);
89 }
90
91
92
93 sub getpatroninformation {
94 # returns 
95     my ($env, $borrowernumber,$cardnumber) = @_;
96     my $dbh=&C4Connect;  
97     my $sth;
98     open O, ">>/root/tkcirc.out";
99     print O "Looking up patron $borrowernumber / $cardnumber\n";
100     if ($borrowernumber) {
101         $sth=$dbh->prepare("select * from borrowers where borrowernumber=$borrowernumber");
102     } elsif ($cardnumber) {
103         $sth=$dbh->prepare("select * from borrowers where cardnumber=$cardnumber");
104     } else {
105          # error condition.  This subroutine must be called with either a
106          # borrowernumber or a card number.
107         $env->{'apierror'}="invalid borrower information passed to getpatroninformation subroutine";
108          return();
109     }
110     $sth->execute;
111     my $borrower=$sth->fetchrow_hashref;
112     my $flags=patronflags($env, $borrower, $dbh);
113     $sth->finish;
114     $dbh->disconnect;
115     print O "$borrower->{'surname'} <---\n";
116     close O;
117     $borrower->{'flags'}=$flags;
118     return($borrower, $flags);
119 }
120
121
122
123
124
125 sub getiteminformation {
126 # returns a hash of item information given either the itemnumber or the barcode
127     my ($env, $itemnumber, $barcode) = @_;
128     my $dbh=&C4Connect;
129     my $sth;
130     if ($itemnumber) {
131         $sth=$dbh->prepare("select * from biblio,items,biblioitems where items.itemnumber=$itemnumber and biblio.biblionumber=items.biblionumber and biblioitems.biblioitemnumber = items.biblioitemnumber");
132     } elsif ($barcode) {
133         my $q_barcode=$dbh->quote($barcode);
134         $sth=$dbh->prepare("select * from biblio,items,biblioitems where items.barcode=$q_barcode and biblio.biblionumber=items.biblionumber and biblioitems.biblioitemnumber = items.biblioitemnumber");
135     } else {
136         $env->{'apierror'}="getiteminformation() subroutine must be called with either an itemnumber or a barcode";
137         # Error condition.  
138         return();
139     }
140     $sth->execute;
141     my $iteminformation=$sth->fetchrow_hashref;
142     $sth->finish;
143     if ($iteminformation) {
144         $sth=$dbh->prepare("select date_due from issues where itemnumber=$iteminformation->{'itemnumber'} and isnull(returndate)");
145         $sth->execute;
146         my ($date_due) = $sth->fetchrow;
147         $iteminformation->{'date_due'}=$date_due;
148         $sth->finish;
149         #$iteminformation->{'dewey'}=~s/0*$//;
150         ($iteminformation->{'dewey'} == 0) && ($iteminformation->{'dewey'}='');
151         $sth=$dbh->prepare("select * from itemtypes where itemtype='$iteminformation->{'itemtype'}'");
152         $sth->execute;
153         my $itemtype=$sth->fetchrow_hashref;
154         $iteminformation->{'loanlength'}=$itemtype->{'loanlength'};
155         $sth->finish;
156     }
157     $dbh->disconnect;
158     return($iteminformation);
159 }
160
161 sub findborrower {
162 # returns an array of borrower hash references, given a cardnumber or a partial
163 # surname 
164     my ($env, $key) = @_;
165     my $dbh=&C4Connect;
166     my @borrowers;
167     my $q_key=$dbh->quote($key);
168     my $sth=$dbh->prepare("select * from borrowers where cardnumber=$q_key");
169     $sth->execute;
170     if ($sth->rows) {
171         my ($borrower)=$sth->fetchrow_hashref;
172         push (@borrowers, $borrower);
173     } else {
174         $q_key=$dbh->quote("$key%");
175         $sth->finish;
176         $sth=$dbh->prepare("select * from borrowers where surname like $q_key");
177         $sth->execute;
178         while (my $borrower = $sth->fetchrow_hashref) {
179             push (@borrowers, $borrower);
180         }
181     }
182     $sth->finish;
183     $dbh->disconnect;
184     return(\@borrowers);
185 }
186
187
188 sub issuebook {
189     my ($env, $patroninformation, $barcode, $responses) = @_;
190     my $dbh=&C4Connect;
191     my $iteminformation=getiteminformation($env, 0, $barcode);
192     my ($datedue);
193     my ($rejected,$question,$defaultanswer,$questionnumber, $noissue);
194     SWITCH: {
195         if ($patroninformation->{'gonenoaddress'}) {
196             $rejected="Patron is gone, with no known address.";
197             last SWITCH;
198         }
199         if ($patroninformation->{'lost'}) {
200             $rejected="Patron's card has been reported lost.";
201             last SWITCH;
202         }
203         my $amount = checkaccount($env,$patroninformation->{'borrowernumber'}, $dbh);
204         if ($amount>5) {
205             $rejected=sprintf "Patron owes \$%.02f.", $amount;
206             last SWITCH;
207         }
208         unless ($iteminformation) {
209             $rejected="$barcode is not a valid barcode.";
210             last SWITCH;
211         }
212         if ($iteminformation->{'notforloan'} == 1) {
213             $rejected="Item not for loan.";
214             last SWITCH;
215         }
216         if ($iteminformation->{'wthdrawn'} == 1) {
217             $rejected="Item withdrawn.";
218             last SWITCH;
219         }
220         if ($iteminformation->{'restricted'} == 1) {
221             $rejected="Restricted item.";
222             last SWITCH;
223         }
224         if ($iteminformation->{'itemtype'} eq 'REF') {
225             $rejected="Reference item:  Not for loan.";
226             last SWITCH;
227         }
228         my ($currentborrower) = currentborrower($env, $iteminformation->{'itemnumber'}, $dbh);
229         if ($currentborrower eq $patroninformation->{'borrowernumber'}) {
230 # Already issued to current borrower
231             my ($renewstatus) = renewstatus($env,$dbh,$patroninformation->{'borrowernumber'}, $iteminformation->{'itemnumber'});
232             if ($renewstatus == 0) {
233                 $rejected="No more renewals allowed for this item.";
234                 last SWITCH;
235             } else {
236                 if ($responses->{4} eq '') {
237                     $questionnumber=4;
238                     $question="Book is issued to this borrower.\nRenew?";
239                     $defaultanswer='Y';
240                     last SWITCH;
241                 } elsif ($responses->{4} eq 'Y') {
242                     my $charge=calc_charges($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'});
243                     if ($charge > 0) {
244                         createcharge($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'}, $charge);
245                         $iteminformation->{'charge'}=$charge;
246                     }
247                     &UpdateStats($env,$env->{'branchcode'},'renew',$charge,'',$iteminformation->{'itemnumber'},$iteminformation->{'itemtype'});
248                     renewbook($env,$dbh, $patroninformation->{'borrowernumber'}, $iteminformation->{'itemnumber'});
249                     $noissue=1;
250                 } else {
251                     $rejected=-1;
252                     last SWITCH;
253                 }
254             }
255         } elsif ($currentborrower ne '') {
256             my ($currborrower, $cbflags)=getpatroninformation($env,$currentborrower,0);
257             if ($responses->{1} eq '') {
258                 $questionnumber=1;
259                 $question="Issued to $currborrower->{'firstname'} $currborrower->{'surname'} ($currborrower->{'cardnumber'}).\nMark as returned?";
260                 $defaultanswer='Y';
261                 last SWITCH;
262             } elsif ($responses->{1} eq 'Y') {
263                 returnbook($env,$iteminformation->{'barcode'});
264             } else {
265                 $rejected=-1;
266                 last SWITCH;
267             }
268         }
269
270         my ($resbor, $resrec) = checkreserve($env, $dbh, $iteminformation->{'itemnumber'});
271
272         if ($resbor eq $patroninformation->{'borrowernumber'}) {
273              my $rquery = "update reserves set found = 'F' where reservedate = '$resrec->{'reservedate'}' and borrowernumber = '$resrec->{'borrowernumber'}' and biblionumber = '$resrec->{'biblionumber'}'";
274              my $rsth = $dbh->prepare($rquery);
275              $rsth->execute;
276              $rsth->finish;
277         } elsif ($resbor ne "") {
278             my ($resborrower, $flags)=getpatroninformation($env, $resbor,0);
279             if ($responses->{2} eq '') {
280                 $questionnumber=2;
281                 $question="Reserved for $resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'}) since $resrec->{'reservedate'}\nAllow issue?";
282                 $defaultanswer='N';
283                 last SWITCH;
284             } elsif ($responses->{2} eq 'N') {
285                 #printreserve($env, $resrec, $resborrower, $iteminformation);
286                 $rejected=-1;
287                 last SWITCH;
288             } else {
289                 if ($responses->{3} eq '') {
290                     $questionnumber=3;
291                     $question="Cancel reserve for $resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'})?";
292                     $defaultanswer='N';
293                     last SWITCH;
294                 } elsif ($responses->{3} eq 'Y') {
295                     my $rquery = "update reserves set found = 'F' where reservedate = '$resrec->{'reservedate'}' and borrowernumber = '$resrec->{'borrowernumber'}' and biblionumber = '$resrec->{'biblionumber'}'";
296                     my $rsth = $dbh->prepare($rquery);
297                     $rsth->execute;
298                     $rsth->finish;
299                 }
300             }
301         }
302     }
303     my $dateduef;
304     unless (($question) || ($rejected) || ($noissue)) {
305         my $loanlength=21;
306         if ($iteminformation->{'loanlength'}) {
307             $loanlength=$iteminformation->{'loanlength'};
308         }
309         my $ti=time;
310         my $datedue=time+($loanlength)*86400;
311         my @datearr = localtime($datedue);
312         $dateduef = (1900+$datearr[5])."-".($datearr[4]+1)."-".$datearr[3];
313         if ($env->{'datedue'}) {
314             $dateduef=$env->{'datedue'};
315         }
316         my $sth=$dbh->prepare("insert into issues (borrowernumber, itemnumber, date_due, branchcode) values ($patroninformation->{'borrowernumber'}, $iteminformation->{'itemnumber'}, '$dateduef', '$env->{'branchcode'}')");
317         $sth->execute;
318         $sth->finish;
319         $iteminformation->{'issues'}++;
320         $sth=$dbh->prepare("update items set issues=$iteminformation->{'issues'} where itemnumber=$iteminformation->{'itemnumber'}");
321         $sth->execute;
322         $sth->finish;
323         my $charge=calc_charges($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'});
324         if ($charge > 0) {
325             createcharge($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'}, $charge);
326             $iteminformation->{'charge'}=$charge;
327         }
328         &UpdateStats($env,$env->{'branchcode'},'issue',$charge,'',$iteminformation->{'itemnumber'},$iteminformation->{'itemtype'});
329     }
330     my $message='';
331     if ($iteminformation->{'charge'}) {
332         $message=sprintf "Rental charge of \$%.02f applies.", $iteminformation->{'charge'};
333     }
334     $dbh->disconnect;
335     return ($iteminformation, $dateduef, $rejected, $question, $questionnumber, $defaultanswer, $message);
336 }
337
338
339 sub returnbook {
340     my ($env, $barcode) = @_;
341     my ($messages, $overduecharge);
342     my $dbh=&C4Connect;
343     my ($iteminformation) = getiteminformation($env, 0, $barcode);
344     my $borrower;
345     if ($iteminformation) {
346         my $sth=$dbh->prepare("select * from issues where (itemnumber='$iteminformation->{'itemnumber'}') and (returndate is null)");
347         $sth->execute;
348         my ($currentborrower) = currentborrower($env, $iteminformation->{'itemnumber'}, $dbh);
349         updatelastseen($env,$dbh,$iteminformation->{'itemnumber'});
350         if ($currentborrower) {
351             ($borrower)=getpatroninformation($env,$currentborrower,0);
352             my @datearr = localtime(time);
353             my $dateret = (1900+$datearr[5])."-".$datearr[4]."-".$datearr[3];
354             my $query = "update issues set returndate = now(), branchcode ='$env->{'branchcode'}' where (borrowernumber = $borrower->{'borrowernumber'}) and (itemnumber = $iteminformation->{'itemnumber'}) and (returndate is null)";
355             my $sth = $dbh->prepare($query);
356             $sth->execute;
357             $sth->finish;
358
359
360             # check for overdue fine
361
362             $overduecharge;
363             $sth=$dbh->prepare("select * from accountlines where (borrowernumber=$borrower->{'borrowernumber'}) and (itemnumber = $iteminformation->{'itemnumber'}) and (accounttype='FU' or accounttype='O')");
364             $sth->execute;
365             # alter fine to show that the book has been returned
366             if (my $data = $sth->fetchrow_hashref) {
367                 my $usth=$dbh->prepare("update accountlines set accounttype='F' where (borrowernumber=$borrower->{'borrowernumber'}) and (itemnumber=$iteminformation->{'itemnumber'}) and (acccountno='$data->{'accountno'}')");
368                 $usth->execute();
369                 $usth->finish();
370                 $overduecharge=$data->{'amountoutstanding'};
371             }
372             $sth->finish;
373             # check for charge made for lost book
374             $sth=$dbh->prepare("select * from accountlines where (borrowernumber=$borrower->{'borrowernumber'}) and (itemnumber = $iteminformation->{'itemnumber'}) and (accounttype='L')");
375             $sth->execute;
376             if (my $data = $sth->fetchrow_hashref) {
377                 # writeoff this amount
378                 my $offset;
379                 my $amount = $data->{'amount'};
380                 my $acctno = $data->{'accountno'};
381                 my $amountleft;
382                 if ($data->{'amountoutstanding'} == $amount) {
383                     $offset = $data->{'amount'};
384                     $amountleft = 0;
385                 } else {
386                     $offset = $amount - $data->{'amountoutstanding'};
387                     $amountleft = $data->{'amountoutstanding'} - $amount;
388                 }
389                 my $uquery = "update accountlines
390                   set accounttype = 'LR',amountoutstanding='0'
391                   where (borrowernumber = $borrower->{'borrowernumber'})
392                   and (itemnumber = $iteminformation->{'itemnumber'})
393                   and (accountno = '$acctno') ";
394                 my $usth = $dbh->prepare($uquery);
395                 $usth->execute();
396                 $usth->finish;
397                 my $nextaccntno = C4::Accounts::getnextacctno($env,$borrower->{'borrowernumber'},$dbh);
398                 $uquery = "insert into accountlines
399                   (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
400                   values ($borrower->{'borrowernumber'},$nextaccntno,now(),0-$amount,'Book Returned',
401                   'CR',$amountleft)";
402                 $usth = $dbh->prepare($uquery);
403                 $usth->execute;
404                 $usth->finish;
405                 $uquery = "insert into accountoffsets
406                   (borrowernumber, accountno, offsetaccount,  offsetamount)
407                   values ($borrower->{'borrowernumber'},$data->{'accountno'},$nextaccntno,$offset)";
408                 $usth = $dbh->prepare($uquery);
409                 $usth->execute;
410                 $usth->finish;
411             }
412             $sth->finish;
413         }
414         my ($resfound,$resrec) = find_reserves($env, $dbh, $iteminformation->{'itemnumber'});
415         if ($resfound eq 'y') {
416            my ($borrower) = getpatroninformation($env,$resrec->{'borrowernumber'},0);
417            #printreserve($env,$resrec,$resborrower,$itemrec);
418            my ($branches) = getbranches();
419            my $branchname=$branches->{$resrec->{'branchcode'}}->{'branchname'};
420            push (@$messages, "Reserved for collection by $borrower->{'firstname'} $borrower->{'surname'} ($borrower->{'cardnumber'}) at $branchname");
421         }
422         UpdateStats($env,'branch','return','0','',$iteminformation->{'itemnumber'});
423     }
424     $dbh->disconnect;
425     return ($iteminformation, $borrower, $messages, $overduecharge);
426 }
427
428
429 sub patronflags {
430 # Original subroutine for Circ2.pm
431     my %flags;
432     my ($env,$patroninformation,$dbh) = @_;
433     my $amount = checkaccount($env,$patroninformation->{'borrowernumber'}, $dbh);
434     if ($amount>0) { 
435         my %flaginfo;
436         $flaginfo{'message'}=sprintf "Patron owes \$%.02f", $amount; 
437         if ($amount>5) {
438             $flaginfo{'noissues'}=1;
439         }
440         $flags{'CHARGES'}=\%flaginfo;
441     }
442     if ($patroninformation->{'gonenoaddress'} == 1) {
443         my %flaginfo;
444         $flaginfo{'message'}='Borrower has no valid address.'; 
445         $flaginfo{'noissues'}=1;
446         $flags{'GNA'}=\%flaginfo;
447     }
448     if ($patroninformation->{'lost'} == 1) {
449         my %flaginfo;
450         $flaginfo{'message'}='Borrower\'s card reported lost.'; 
451         $flaginfo{'noissues'}=1;
452         $flags{'LOST'}=\%flaginfo;
453     }
454     if ($patroninformation->{'borrowernotes'}) {
455         my %flaginfo;
456         $flaginfo{'message'}="$patroninformation->{'borrowernotes'}";
457         $flags{'NOTES'}=\%flaginfo;
458     }
459     my ($odues, $itemsoverdue) = checkoverdues($env,$patroninformation->{'borrowernumber'},$dbh);
460     if ($odues > 0) {
461         my %flaginfo;
462         $flaginfo{'message'}="Patron has overdue items";
463         $flaginfo{'itemlist'}=$itemsoverdue;
464         foreach (sort {$a->{'date_due'} cmp $b->{'date_due'}} @$itemsoverdue) {
465             $flaginfo{'itemlisttext'}.="$_->{'date_due'} $_->{'barcode'} $_->{'title'} \n";
466         }
467         $flags{'ODUES'}=\%flaginfo;
468     }
469     my ($nowaiting,$itemswaiting) = checkwaiting($env,$dbh,$patroninformation->{'borrowernumber'});
470     if ($nowaiting>0) {
471         my %flaginfo;
472         $flaginfo{'message'}="Reserved items available";
473         $flaginfo{'itemlist'}=$itemswaiting;
474         $flaginfo{'itemfields'}=['barcode', 'title', 'author', 'dewey', 'subclass', 'holdingbranch'];
475         $flags{'WAITING'}=\%flaginfo;
476     }
477     my $flag;
478     my $key;
479     return(\%flags);
480 }
481
482
483 sub checkoverdues {
484 # From Main.pm, modified to return a list of overdueitems, in addition to a count
485   #checks whether a borrower has overdue items
486   my ($env,$bornum,$dbh)=@_;
487   my @datearr = localtime;
488   my $today = ($datearr[5] + 1900)."-".($datearr[4]+1)."-".$datearr[3];
489   my @overdueitems;
490   my $count=0;
491   my $query = "Select * from issues,biblio,biblioitems,items where items.biblioitemnumber=biblioitems.biblioitemnumber and items.biblionumber=biblio.biblionumber and issues.itemnumber=items.itemnumber and borrowernumber=$bornum and returndate is NULL and date_due < '$today'";
492   my $sth=$dbh->prepare($query);
493   $sth->execute;
494   while (my $data = $sth->fetchrow_hashref) {
495       push (@overdueitems, $data);
496       $count++;
497   }
498   $sth->finish;
499   return ($count, \@overdueitems);
500 }
501
502 sub updatelastseen {
503 # Stolen from Returns.pm
504     my ($env,$dbh,$itemnumber)= @_;
505     my $br = $env->{'branchcode'};
506     my $query = "update items 
507     set datelastseen = now(), holdingbranch = '$br'
508     where (itemnumber = '$itemnumber')";
509     my $sth = $dbh->prepare($query);
510     $sth->execute;
511     $sth->finish;
512
513
514 sub currentborrower {
515 # Original subroutine for Circ2.pm
516     my ($env, $itemnumber, $dbh) = @_;
517     my $q_itemnumber=$dbh->quote($itemnumber);
518     my $sth=$dbh->prepare("select borrowers.borrowernumber from
519     issues,borrowers where issues.itemnumber=$q_itemnumber and
520     issues.borrowernumber=borrowers.borrowernumber and issues.returndate is
521     NULL");
522     $sth->execute;
523     my ($previousborrower)=$sth->fetchrow;
524     return($previousborrower);
525 }
526
527 sub checkreserve {
528 # Stolen from Main.pm
529   # Check for reserves for biblio 
530   my ($env,$dbh,$itemnum)=@_;
531   my $resbor = "";
532   my $query = "select * from reserves,items 
533     where (items.itemnumber = '$itemnum')
534     and (reserves.cancellationdate is NULL)
535     and (items.biblionumber = reserves.biblionumber)
536     and ((reserves.found = 'W')
537     or (reserves.found is null)) 
538     order by priority";
539   my $sth = $dbh->prepare($query);
540   $sth->execute();
541   my $resrec;
542   if (my $data=$sth->fetchrow_hashref) {
543     $resrec=$data;
544     my $const = $data->{'constrainttype'};
545     if ($const eq "a") {
546       $resbor = $data->{'borrowernumber'};
547     } else {
548       my $found = 0;
549       my $cquery = "select * from reserveconstraints,items 
550          where (borrowernumber='$data->{'borrowernumber'}') 
551          and reservedate='$data->{'reservedate'}'
552          and reserveconstraints.biblionumber='$data->{'biblionumber'}'
553          and (items.itemnumber=$itemnum and 
554          items.biblioitemnumber = reserveconstraints.biblioitemnumber)";
555       my $csth = $dbh->prepare($cquery);
556       $csth->execute;
557       if (my $cdata=$csth->fetchrow_hashref) {$found = 1;}
558       if ($const eq 'o') {
559         if ($found eq 1) {$resbor = $data->{'borrowernumber'};}
560       } else {
561         if ($found eq 0) {$resbor = $data->{'borrowernumber'};}
562       }
563       $csth->finish();
564     }
565   }
566   $sth->finish;
567   return ($resbor,$resrec);
568 }
569
570 sub currentissues {
571 # New subroutine for Circ2.pm
572     my ($env, $borrower) = @_;
573     my $dbh=&C4Connect;
574     my %currentissues;
575     my $counter=1;
576     my $borrowernumber=$borrower->{'borrowernumber'};
577     my $crit='';
578     if ($env->{'todaysissues'}) {
579         my @datearr = localtime(time());
580         my $today = (1900+$datearr[5]).sprintf "0%02d", ($datearr[4]+1).sprintf "%02d", $datearr[3];
581         $crit=" and issues.timestamp like '$today%' ";
582     }
583     if ($env->{'nottodaysissues'}) {
584         my @datearr = localtime(time());
585         my $today = (1900+$datearr[5]).sprintf "0%02d", ($datearr[4]+1).sprintf "%02d", $datearr[3];
586         $crit=" and !(issues.timestamp like '$today%') ";
587     }
588     my $select="select * from issues,items,biblioitems,biblio where borrowernumber=$borrowernumber and issues.itemnumber=items.itemnumber and items.biblionumber=biblio.biblionumber and items.biblioitemnumber=biblioitems.biblioitemnumber and returndate is null $crit order by date_due";
589 #    print $select;
590     my $sth=$dbh->prepare($select);
591     $sth->execute;
592     while (my $data = $sth->fetchrow_hashref) {
593         $data->{'dewey'}=~s/0*$//;
594         ($data->{'dewey'} == 0) && ($data->{'dewey'}='');
595         my $datedue=$data->{'date_due'};
596         my $itemnumber=$data->{'itemnumber'};
597         $currentissues{$counter}=$data;
598         $counter++;
599     }
600     $sth->finish;
601     $dbh->disconnect;
602     return(\%currentissues);
603 }
604
605 sub checkwaiting {
606 #Stolen from Main.pm
607   # check for reserves waiting
608   my ($env,$dbh,$bornum)=@_;
609   my @itemswaiting;
610   my $query = "select * from reserves
611     where (borrowernumber = '$bornum')
612     and (reserves.found='W') and cancellationdate is NULL";
613   my $sth = $dbh->prepare($query);
614   $sth->execute();
615   my $cnt=0;
616   if (my $data=$sth->fetchrow_hashref) {
617     @itemswaiting[$cnt] =$data;
618     $cnt ++
619   }
620   $sth->finish;
621   return ($cnt,\@itemswaiting);
622 }
623
624
625 sub checkaccount  {
626 # Stolen from Accounts.pm
627   #take borrower number
628   #check accounts and list amounts owing
629   my ($env,$bornumber,$dbh)=@_;
630   my $sth=$dbh->prepare("Select sum(amountoutstanding) from accountlines where
631   borrowernumber=$bornumber and amountoutstanding<>0");
632   $sth->execute;
633   my $total=0;
634   while (my $data=$sth->fetchrow_hashref){
635     $total=$total+$data->{'sum(amountoutstanding)'};
636   }
637   $sth->finish;
638   # output(1,2,"borrower owes $total");
639   #if ($total > 0){
640   #  # output(1,2,"borrower owes $total");
641   #  if ($total > 5){
642   #    reconcileaccount($env,$dbh,$bornumber,$total);
643   #  }
644   #}
645   #  pause();
646   return($total);
647 }    
648
649 sub renewstatus {
650 # Stolen from Renewals.pm
651   # check renewal status
652   my ($env,$dbh,$bornum,$itemno)=@_;
653   my $renews = 1;
654   my $renewokay = 0;
655   my $q1 = "select * from issues 
656     where (borrowernumber = '$bornum')
657     and (itemnumber = '$itemno') 
658     and returndate is null";
659   my $sth1 = $dbh->prepare($q1);
660   $sth1->execute;
661   if (my $data1 = $sth1->fetchrow_hashref) {
662     my $q2 = "select renewalsallowed from items,biblioitems,itemtypes
663        where (items.itemnumber = '$itemno')
664        and (items.biblioitemnumber = biblioitems.biblioitemnumber) 
665        and (biblioitems.itemtype = itemtypes.itemtype)";
666     my $sth2 = $dbh->prepare($q2);
667     $sth2->execute;     
668     if (my $data2=$sth2->fetchrow_hashref) {
669       $renews = $data2->{'renewalsallowed'};
670     }
671     if ($renews > $data1->{'renewals'}) {
672       $renewokay = 1;
673     }
674     $sth2->finish;
675   }   
676   $sth1->finish;
677   return($renewokay);    
678 }
679
680 sub renewbook {
681 # Stolen from Renewals.pm
682   # mark book as renewed
683   my ($env,$dbh,$bornum,$itemno,$datedue)=@_;
684   $datedue=$env->{'datedue'};
685   if ($datedue eq "" ) {    
686     my $loanlength=21;
687     my $query= "Select * from biblioitems,items,itemtypes
688        where (items.itemnumber = '$itemno')
689        and (biblioitems.biblioitemnumber = items.biblioitemnumber)
690        and (biblioitems.itemtype = itemtypes.itemtype)";
691     my $sth=$dbh->prepare($query);
692     $sth->execute;
693     if (my $data=$sth->fetchrow_hashref) {
694       $loanlength = $data->{'loanlength'}
695     }
696     $sth->finish;
697     my $ti = time;
698     my $datedu = time + ($loanlength * 86400);
699     my @datearr = localtime($datedu);
700     $datedue = (1900+$datearr[5])."-".($datearr[4]+1)."-".$datearr[3];
701   }
702   my @date = split("-",$datedue);
703   my $odatedue = (@date[2]+0)."-".(@date[1]+0)."-".@date[0];
704   my $issquery = "select * from issues where borrowernumber='$bornum' and
705     itemnumber='$itemno' and returndate is null";
706   my $sth=$dbh->prepare($issquery);
707   $sth->execute;
708   my $issuedata=$sth->fetchrow_hashref;
709   $sth->finish;
710   my $renews = $issuedata->{'renewals'} +1;
711   my $updquery = "update issues 
712     set date_due = '$datedue', renewals = '$renews'
713     where borrowernumber='$bornum' and
714     itemnumber='$itemno' and returndate is null";
715   my $sth=$dbh->prepare($updquery);
716   
717   $sth->execute;
718   $sth->finish;
719   return($odatedue);
720 }
721
722 sub calc_charges {
723 # Stolen from Issues.pm
724 # calculate charges due
725     my ($env, $dbh, $itemno, $bornum)=@_;
726     my $charge=0;
727     my $item_type;
728     my $q1 = "select itemtypes.itemtype,rentalcharge from items,biblioitems,itemtypes where (items.itemnumber ='$itemno') and (biblioitems.biblioitemnumber = items.biblioitemnumber) and (biblioitems.itemtype = itemtypes.itemtype)";
729     my $sth1= $dbh->prepare($q1);
730     $sth1->execute;
731     if (my $data1=$sth1->fetchrow_hashref) {
732         $item_type = $data1->{'itemtype'};
733         $charge = $data1->{'rentalcharge'};
734         my $q2 = "select rentaldiscount from borrowers,categoryitem 
735         where (borrowers.borrowernumber = '$bornum') 
736         and (borrowers.categorycode = categoryitem.categorycode)
737         and (categoryitem.itemtype = '$item_type')";
738         my $sth2=$dbh->prepare($q2);
739         $sth2->execute;
740         if (my $data2=$sth2->fetchrow_hashref) {
741             my $discount = $data2->{'rentaldiscount'};
742             $charge = ($charge *(100 - $discount)) / 100;
743         }
744         $sth2->{'finish'};
745     }      
746     $sth1->finish;
747     return ($charge);
748 }
749
750 sub createcharge {
751 #Stolen from Issues.pm
752     my ($env,$dbh,$itemno,$bornum,$charge) = @_;
753     my $nextaccntno = getnextacctno($env,$bornum,$dbh);
754     my $query = "insert into accountlines (borrowernumber,itemnumber,accountno,date,amount, description,accounttype,amountoutstanding) values ($bornum,$itemno,$nextaccntno,now(),$charge,'Rental','Rent',$charge)";
755     my $sth = $dbh->prepare($query);
756     $sth->execute;
757     $sth->finish;
758 }
759
760
761 sub getnextacctno {
762 # Stolen from Accounts.pm
763     my ($env,$bornumber,$dbh)=@_;
764     my $nextaccntno = 1;
765     my $query = "select * from accountlines where (borrowernumber = '$bornumber') order by accountno desc";
766     my $sth = $dbh->prepare($query);
767     $sth->execute;
768     if (my $accdata=$sth->fetchrow_hashref){
769         $nextaccntno = $accdata->{'accountno'} + 1;
770     }
771     $sth->finish;
772     return($nextaccntno);
773 }
774
775 sub find_reserves {
776 # Stolen from Returns.pm
777   my ($env,$dbh,$itemno) = @_;
778   my ($itemdata) = getiteminformation($env,$itemno,0);
779   my $query = "select * from reserves where found is null 
780   and biblionumber = $itemdata->{'biblionumber'} and cancellationdate is NULL
781   order by priority,reservedate ";
782   my $sth = $dbh->prepare($query);
783   $sth->execute;
784   my $resfound = "n";
785   my $resrec;
786   my $lastrec;
787   while (($resrec=$sth->fetchrow_hashref) && ($resfound eq "n")) {
788       $lastrec=$resrec;
789     if ($resrec->{'found'} eq "W") {
790       if ($resrec->{'itemnumber'} eq $itemno) {
791         $resfound = "y";
792       }
793     } elsif ($resrec->{'constrainttype'} eq "a") {
794       $resfound = "y";
795     } else {
796       my $conquery = "select * from reserveconstraints where borrowernumber
797 = $resrec->{'borrowernumber'} and reservedate = '$resrec->{'reservedate'}' and biblionumber = $resrec->{'biblionumber'} and biblioitemnumber = $itemdata->{'biblioitemnumber'}";
798       my $consth = $dbh->prepare($conquery);
799       $consth->execute;
800       if (my $conrec=$consth->fetchrow_hashref) {
801         if ($resrec->{'constrainttype'} eq "o") {
802            $resfound = "y";
803          }
804       } else {
805         if ($resrec->{'constrainttype'} eq "e") {
806           $resfound = "y";
807         }
808       }
809       $consth->finish;
810     }
811     if ($resfound eq "y") {
812       my $updquery = "update reserves 
813         set found = 'W',itemnumber='$itemno'
814         where borrowernumber = $resrec->{'borrowernumber'}
815         and reservedate = '$resrec->{'reservedate'}'
816         and biblionumber = $resrec->{'biblionumber'}";
817       my $updsth = $dbh->prepare($updquery);
818       $updsth->execute;
819       $updsth->finish;
820       my $itbr = $resrec->{'branchcode'};
821       if ($resrec->{'branchcode'} ne $env->{'branchcode'}) {
822          my $updquery = "update items
823           set holdingbranch = 'TR'
824           where itemnumber = $itemno";
825         my $updsth = $dbh->prepare($updquery);
826         $updsth->execute;
827         $updsth->finish;
828       } 
829     }
830   }
831   $sth->finish;
832   return ($resfound,$lastrec);
833 }
834
835 END { }       # module clean-up code here (global destructor)