Reworked layout of issues section.
[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         if ($patroninformation->{'debarred'}) {
204             $rejected="Patron is Debarred";
205             last SWITCH;
206         }
207         my $amount = checkaccount($env,$patroninformation->{'borrowernumber'}, $dbh);
208         if ($amount>5) {
209             $rejected=sprintf "Patron owes \$%.02f.", $amount;
210             last SWITCH;
211         }
212         unless ($iteminformation) {
213             $rejected="$barcode is not a valid barcode.";
214             last SWITCH;
215         }
216         if ($iteminformation->{'notforloan'} == 1) {
217             $rejected="Item not for loan.";
218             last SWITCH;
219         }
220         if ($iteminformation->{'wthdrawn'} == 1) {
221             $rejected="Item withdrawn.";
222             last SWITCH;
223         }
224         if ($iteminformation->{'restricted'} == 1) {
225             $rejected="Restricted item.";
226             last SWITCH;
227         }
228         if ($iteminformation->{'itemtype'} eq 'REF') {
229             $rejected="Reference item:  Not for loan.";
230             last SWITCH;
231         }
232         my ($currentborrower) = currentborrower($env, $iteminformation->{'itemnumber'}, $dbh);
233         if ($currentborrower eq $patroninformation->{'borrowernumber'}) {
234 # Already issued to current borrower
235             my ($renewstatus) = renewstatus($env,$dbh,$patroninformation->{'borrowernumber'}, $iteminformation->{'itemnumber'});
236             if ($renewstatus == 0) {
237                 $rejected="No more renewals allowed for this item.";
238                 last SWITCH;
239             } else {
240                 if ($responses->{4} eq '') {
241                     $questionnumber=4;
242                     $question="Book is issued to this borrower.\nRenew?";
243                     $defaultanswer='Y';
244                     last SWITCH;
245                 } elsif ($responses->{4} eq 'Y') {
246                     my $charge=calc_charges($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'});
247                     if ($charge > 0) {
248                         createcharge($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'}, $charge);
249                         $iteminformation->{'charge'}=$charge;
250                     }
251                     &UpdateStats($env,$env->{'branchcode'},'renew',$charge,'',$iteminformation->{'itemnumber'},$iteminformation->{'itemtype'});
252                     renewbook($env,$dbh, $patroninformation->{'borrowernumber'}, $iteminformation->{'itemnumber'});
253                     $noissue=1;
254                 } else {
255                     $rejected=-1;
256                     last SWITCH;
257                 }
258             }
259         } elsif ($currentborrower ne '') {
260             my ($currborrower, $cbflags)=getpatroninformation($env,$currentborrower,0);
261             if ($responses->{1} eq '') {
262                 $questionnumber=1;
263                 $question="Issued to $currborrower->{'firstname'} $currborrower->{'surname'} ($currborrower->{'cardnumber'}).\nMark as returned?";
264                 $defaultanswer='Y';
265                 last SWITCH;
266             } elsif ($responses->{1} eq 'Y') {
267                 returnbook($env,$iteminformation->{'barcode'});
268             } else {
269                 $rejected=-1;
270                 last SWITCH;
271             }
272         }
273
274         my ($resbor, $resrec) = checkreserve($env, $dbh, $iteminformation->{'itemnumber'});
275
276         if ($resbor eq $patroninformation->{'borrowernumber'}) {
277              my $rquery = "update reserves set found = 'F' where reservedate = '$resrec->{'reservedate'}' and borrowernumber = '$resrec->{'borrowernumber'}' and biblionumber = '$resrec->{'biblionumber'}'";
278              my $rsth = $dbh->prepare($rquery);
279              $rsth->execute;
280              $rsth->finish;
281         } elsif ($resbor ne "") {
282             my ($resborrower, $flags)=getpatroninformation($env, $resbor,0);
283             if ($responses->{2} eq '') {
284                 $questionnumber=2;
285                 $question="Reserved for $resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'}) since $resrec->{'reservedate'}\nAllow issue?";
286                 $defaultanswer='N';
287                 last SWITCH;
288             } elsif ($responses->{2} eq 'N') {
289                 #printreserve($env, $resrec, $resborrower, $iteminformation);
290                 $rejected=-1;
291                 last SWITCH;
292             } else {
293                 if ($responses->{3} eq '') {
294                     $questionnumber=3;
295                     $question="Cancel reserve for $resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'})?";
296                     $defaultanswer='N';
297                     last SWITCH;
298                 } elsif ($responses->{3} eq 'Y') {
299                     my $rquery = "update reserves set found = 'F' where reservedate = '$resrec->{'reservedate'}' and borrowernumber = '$resrec->{'borrowernumber'}' and biblionumber = '$resrec->{'biblionumber'}'";
300                     my $rsth = $dbh->prepare($rquery);
301                     $rsth->execute;
302                     $rsth->finish;
303                 }
304             }
305         }
306     }
307     my $dateduef;
308     unless (($question) || ($rejected) || ($noissue)) {
309         my $loanlength=21;
310         if ($iteminformation->{'loanlength'}) {
311             $loanlength=$iteminformation->{'loanlength'};
312         }
313         my $ti=time;
314         my $datedue=time+($loanlength)*86400;
315         my @datearr = localtime($datedue);
316         $dateduef = (1900+$datearr[5])."-".($datearr[4]+1)."-".$datearr[3];
317         if ($env->{'datedue'}) {
318             $dateduef=$env->{'datedue'};
319         }
320         my $sth=$dbh->prepare("insert into issues (borrowernumber, itemnumber, date_due, branchcode) values ($patroninformation->{'borrowernumber'}, $iteminformation->{'itemnumber'}, '$dateduef', '$env->{'branchcode'}')");
321         $sth->execute;
322         $sth->finish;
323         $iteminformation->{'issues'}++;
324         $sth=$dbh->prepare("update items set issues=$iteminformation->{'issues'} where itemnumber=$iteminformation->{'itemnumber'}");
325         $sth->execute;
326         $sth->finish;
327         my $charge=calc_charges($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'});
328         if ($charge > 0) {
329             createcharge($env, $dbh, $iteminformation->{'itemnumber'}, $patroninformation->{'borrowernumber'}, $charge);
330             $iteminformation->{'charge'}=$charge;
331         }
332         &UpdateStats($env,$env->{'branchcode'},'issue',$charge,'',$iteminformation->{'itemnumber'},$iteminformation->{'itemtype'});
333     }
334     my $message='';
335     if ($iteminformation->{'charge'}) {
336         $message=sprintf "Rental charge of \$%.02f applies.", $iteminformation->{'charge'};
337     }
338     $dbh->disconnect;
339     return ($iteminformation, $dateduef, $rejected, $question, $questionnumber, $defaultanswer, $message);
340 }
341
342
343 sub returnbook {
344     my ($env, $barcode) = @_;
345     my ($messages, $overduecharge);
346     my $dbh=&C4Connect;
347     my ($iteminformation) = getiteminformation($env, 0, $barcode);
348     my $borrower;
349     if ($iteminformation) {
350         my $sth=$dbh->prepare("select * from issues where (itemnumber='$iteminformation->{'itemnumber'}') and (returndate is null)");
351         $sth->execute;
352         my ($currentborrower) = currentborrower($env, $iteminformation->{'itemnumber'}, $dbh);
353         updatelastseen($env,$dbh,$iteminformation->{'itemnumber'});
354         if ($currentborrower) {
355             ($borrower)=getpatroninformation($env,$currentborrower,0);
356             my @datearr = localtime(time);
357             my $dateret = (1900+$datearr[5])."-".$datearr[4]."-".$datearr[3];
358             my $query = "update issues set returndate = now(), branchcode ='$env->{'branchcode'}' where (borrowernumber = $borrower->{'borrowernumber'}) and (itemnumber = $iteminformation->{'itemnumber'}) and (returndate is null)";
359             my $sth = $dbh->prepare($query);
360             $sth->execute;
361             $sth->finish;
362
363
364             # check for overdue fine
365
366             $overduecharge;
367             $sth=$dbh->prepare("select * from accountlines where (borrowernumber=$borrower->{'borrowernumber'}) and (itemnumber = $iteminformation->{'itemnumber'}) and (accounttype='FU' or accounttype='O')");
368             $sth->execute;
369             # alter fine to show that the book has been returned
370             if (my $data = $sth->fetchrow_hashref) {
371                 my $usth=$dbh->prepare("update accountlines set accounttype='F' where (borrowernumber=$borrower->{'borrowernumber'}) and (itemnumber=$iteminformation->{'itemnumber'}) and (acccountno='$data->{'accountno'}')");
372                 $usth->execute();
373                 $usth->finish();
374                 $overduecharge=$data->{'amountoutstanding'};
375             }
376             $sth->finish;
377             # check for charge made for lost book
378             $sth=$dbh->prepare("select * from accountlines where (borrowernumber=$borrower->{'borrowernumber'}) and (itemnumber = $iteminformation->{'itemnumber'}) and (accounttype='L')");
379             $sth->execute;
380             if (my $data = $sth->fetchrow_hashref) {
381                 # writeoff this amount
382                 my $offset;
383                 my $amount = $data->{'amount'};
384                 my $acctno = $data->{'accountno'};
385                 my $amountleft;
386                 if ($data->{'amountoutstanding'} == $amount) {
387                     $offset = $data->{'amount'};
388                     $amountleft = 0;
389                 } else {
390                     $offset = $amount - $data->{'amountoutstanding'};
391                     $amountleft = $data->{'amountoutstanding'} - $amount;
392                 }
393                 my $uquery = "update accountlines
394                   set accounttype = 'LR',amountoutstanding='0'
395                   where (borrowernumber = $borrower->{'borrowernumber'})
396                   and (itemnumber = $iteminformation->{'itemnumber'})
397                   and (accountno = '$acctno') ";
398                 my $usth = $dbh->prepare($uquery);
399                 $usth->execute();
400                 $usth->finish;
401                 my $nextaccntno = C4::Accounts::getnextacctno($env,$borrower->{'borrowernumber'},$dbh);
402                 $uquery = "insert into accountlines
403                   (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
404                   values ($borrower->{'borrowernumber'},$nextaccntno,now(),0-$amount,'Book Returned',
405                   'CR',$amountleft)";
406                 $usth = $dbh->prepare($uquery);
407                 $usth->execute;
408                 $usth->finish;
409                 $uquery = "insert into accountoffsets
410                   (borrowernumber, accountno, offsetaccount,  offsetamount)
411                   values ($borrower->{'borrowernumber'},$data->{'accountno'},$nextaccntno,$offset)";
412                 $usth = $dbh->prepare($uquery);
413                 $usth->execute;
414                 $usth->finish;
415             }
416             $sth->finish;
417         }
418         my ($resfound,$resrec) = find_reserves($env, $dbh, $iteminformation->{'itemnumber'});
419         if ($resfound eq 'y') {
420            my ($borrower) = getpatroninformation($env,$resrec->{'borrowernumber'},0);
421            #printreserve($env,$resrec,$resborrower,$itemrec);
422            my ($branches) = getbranches();
423            my $branchname=$branches->{$resrec->{'branchcode'}}->{'branchname'};
424            push (@$messages, "<b><font color=red>RESERVED</font></b> for collection by $borrower->{'firstname'} $borrower->{'surname'} ($borrower->{'cardnumber'}) at $branchname");
425         }
426         UpdateStats($env,$env->{'branchcode'},'return','0','',$iteminformation->{'itemnumber'});
427     }
428     $dbh->disconnect;
429     return ($iteminformation, $borrower, $messages, $overduecharge);
430 }
431
432
433 sub patronflags {
434 # Original subroutine for Circ2.pm
435     my %flags;
436     my ($env,$patroninformation,$dbh) = @_;
437     my $amount = checkaccount($env,$patroninformation->{'borrowernumber'}, $dbh);
438     if ($amount>0) { 
439         my %flaginfo;
440         $flaginfo{'message'}=sprintf "Patron owes \$%.02f", $amount; 
441         if ($amount>5) {
442             $flaginfo{'noissues'}=1;
443         }
444         $flags{'CHARGES'}=\%flaginfo;
445     }
446     if ($patroninformation->{'gonenoaddress'} == 1) {
447         my %flaginfo;
448         $flaginfo{'message'}='Borrower has no valid address.'; 
449         $flaginfo{'noissues'}=1;
450         $flags{'GNA'}=\%flaginfo;
451     }
452     if ($patroninformation->{'lost'} == 1) {
453         my %flaginfo;
454         $flaginfo{'message'}='Borrower\'s card reported lost.'; 
455         $flaginfo{'noissues'}=1;
456         $flags{'LOST'}=\%flaginfo;
457     }
458     if ($patroninformation->{'debarred'} == 1) {
459         my %flaginfo;
460         $flaginfo{'message'}='Borrower is Debarred.'; 
461         $flaginfo{'noissues'}=1;
462         $flags{'DBARRED'}=\%flaginfo;
463     }
464     if ($patroninformation->{'borrowernotes'}) {
465         my %flaginfo;
466         $flaginfo{'message'}="$patroninformation->{'borrowernotes'}";
467         $flags{'NOTES'}=\%flaginfo;
468     }
469     my ($odues, $itemsoverdue) = checkoverdues($env,$patroninformation->{'borrowernumber'},$dbh);
470     if ($odues > 0) {
471         my %flaginfo;
472         $flaginfo{'message'}="Yes";
473         $flaginfo{'itemlist'}=$itemsoverdue;
474         foreach (sort {$a->{'date_due'} cmp $b->{'date_due'}} @$itemsoverdue) {
475             $flaginfo{'itemlisttext'}.="$_->{'date_due'} $_->{'barcode'} $_->{'title'} \n";
476         }
477         $flags{'ODUES'}=\%flaginfo;
478     }
479     my ($nowaiting,$itemswaiting) = checkwaiting($env,$dbh,$patroninformation->{'borrowernumber'});
480     if ($nowaiting>0) {
481         my %flaginfo;
482         $flaginfo{'message'}="Reserved items available";
483         $flaginfo{'itemlist'}=$itemswaiting;
484         $flaginfo{'itemfields'}=['barcode', 'title', 'author', 'dewey', 'subclass', 'holdingbranch'];
485         $flags{'WAITING'}=\%flaginfo;
486     }
487     my $flag;
488     my $key;
489     return(\%flags);
490 }
491
492
493 sub checkoverdues {
494 # From Main.pm, modified to return a list of overdueitems, in addition to a count
495   #checks whether a borrower has overdue items
496   my ($env,$bornum,$dbh)=@_;
497   my @datearr = localtime;
498   my $today = ($datearr[5] + 1900)."-".($datearr[4]+1)."-".$datearr[3];
499   my @overdueitems;
500   my $count=0;
501   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'";
502   my $sth=$dbh->prepare($query);
503   $sth->execute;
504   while (my $data = $sth->fetchrow_hashref) {
505       push (@overdueitems, $data);
506       $count++;
507   }
508   $sth->finish;
509   return ($count, \@overdueitems);
510 }
511
512 sub updatelastseen {
513 # Stolen from Returns.pm
514     my ($env,$dbh,$itemnumber)= @_;
515     my $br = $env->{'branchcode'};
516     my $query = "update items 
517     set datelastseen = now(), holdingbranch = '$br'
518     where (itemnumber = '$itemnumber')";
519     my $sth = $dbh->prepare($query);
520     $sth->execute;
521     $sth->finish;
522
523
524 sub currentborrower {
525 # Original subroutine for Circ2.pm
526     my ($env, $itemnumber, $dbh) = @_;
527     my $q_itemnumber=$dbh->quote($itemnumber);
528     my $sth=$dbh->prepare("select borrowers.borrowernumber from
529     issues,borrowers where issues.itemnumber=$q_itemnumber and
530     issues.borrowernumber=borrowers.borrowernumber and issues.returndate is
531     NULL");
532     $sth->execute;
533     my ($previousborrower)=$sth->fetchrow;
534     return($previousborrower);
535 }
536
537 sub checkreserve {
538 # Stolen from Main.pm
539   # Check for reserves for biblio 
540   my ($env,$dbh,$itemnum)=@_;
541   my $resbor = "";
542   my $query = "select * from reserves,items 
543     where (items.itemnumber = '$itemnum')
544     and (reserves.cancellationdate is NULL)
545     and (items.biblionumber = reserves.biblionumber)
546     and ((reserves.found = 'W')
547     or (reserves.found is null)) 
548     order by priority";
549   my $sth = $dbh->prepare($query);
550   $sth->execute();
551   my $resrec;
552   my $data=$sth->fetchrow_hashref;
553   while ($data && $resbor eq '') {
554     $resrec=$data;
555     my $const = $data->{'constrainttype'};
556     if ($const eq "a") {
557       $resbor = $data->{'borrowernumber'};
558     } else {
559       my $found = 0;
560       my $cquery = "select * from reserveconstraints,items 
561          where (borrowernumber='$data->{'borrowernumber'}') 
562          and reservedate='$data->{'reservedate'}'
563          and reserveconstraints.biblionumber='$data->{'biblionumber'}'
564          and (items.itemnumber=$itemnum and 
565          items.biblioitemnumber = reserveconstraints.biblioitemnumber)";
566       my $csth = $dbh->prepare($cquery);
567       $csth->execute;
568       if (my $cdata=$csth->fetchrow_hashref) {$found = 1;}
569       if ($const eq 'o') {
570         if ($found eq 1) {$resbor = $data->{'borrowernumber'};}
571       } else {
572         if ($found eq 0) {$resbor = $data->{'borrowernumber'};}
573       }
574       $csth->finish();
575     }
576     $data=$sth->fetchrow_hashref;
577   }
578   $sth->finish;
579   return ($resbor,$resrec);
580 }
581
582 sub currentissues {
583 # New subroutine for Circ2.pm
584     my ($env, $borrower) = @_;
585     my $dbh=&C4Connect;
586     my %currentissues;
587     my $counter=1;
588     my $borrowernumber=$borrower->{'borrowernumber'};
589     my $crit='';
590     if ($env->{'todaysissues'}) {
591         my @datearr = localtime(time());
592         my $today = (1900+$datearr[5]).sprintf "0%02d", ($datearr[4]+1).sprintf "%02d", $datearr[3];
593         $crit=" and issues.timestamp like '$today%' ";
594     }
595     if ($env->{'nottodaysissues'}) {
596         my @datearr = localtime(time());
597         my $today = (1900+$datearr[5]).sprintf "0%02d", ($datearr[4]+1).sprintf "%02d", $datearr[3];
598         $crit=" and !(issues.timestamp like '$today%') ";
599     }
600     my $select="select * from issues,items,biblioitems,biblio where
601     borrowernumber=$borrowernumber and issues.itemnumber=items.itemnumber and
602     items.biblionumber=biblio.biblionumber and
603     items.biblioitemnumber=biblioitems.biblioitemnumber and returndate is null
604     $crit order by issues.timestamp desc";
605 #    print $select;
606     my $sth=$dbh->prepare($select);
607     $sth->execute;
608     while (my $data = $sth->fetchrow_hashref) {
609         $data->{'dewey'}=~s/0*$//;
610         ($data->{'dewey'} == 0) && ($data->{'dewey'}='');
611         my $datedue=$data->{'date_due'};
612         my $itemnumber=$data->{'itemnumber'};
613         $currentissues{$counter}=$data;
614         $counter++;
615     }
616     $sth->finish;
617     $dbh->disconnect;
618     return(\%currentissues);
619 }
620
621 sub checkwaiting {
622 #Stolen from Main.pm
623   # check for reserves waiting
624   my ($env,$dbh,$bornum)=@_;
625   my @itemswaiting;
626   my $query = "select * from reserves
627     where (borrowernumber = '$bornum')
628     and (reserves.found='W') and cancellationdate is NULL";
629   my $sth = $dbh->prepare($query);
630   $sth->execute();
631   my $cnt=0;
632   if (my $data=$sth->fetchrow_hashref) {
633     @itemswaiting[$cnt] =$data;
634     $cnt ++
635   }
636   $sth->finish;
637   return ($cnt,\@itemswaiting);
638 }
639
640
641 sub checkaccount  {
642 # Stolen from Accounts.pm
643   #take borrower number
644   #check accounts and list amounts owing
645   my ($env,$bornumber,$dbh)=@_;
646   my $sth=$dbh->prepare("Select sum(amountoutstanding) from accountlines where
647   borrowernumber=$bornumber and amountoutstanding<>0");
648   $sth->execute;
649   my $total=0;
650   while (my $data=$sth->fetchrow_hashref){
651     $total=$total+$data->{'sum(amountoutstanding)'};
652   }
653   $sth->finish;
654   # output(1,2,"borrower owes $total");
655   #if ($total > 0){
656   #  # output(1,2,"borrower owes $total");
657   #  if ($total > 5){
658   #    reconcileaccount($env,$dbh,$bornumber,$total);
659   #  }
660   #}
661   #  pause();
662   return($total);
663 }    
664
665 sub renewstatus {
666 # Stolen from Renewals.pm
667   # check renewal status
668   my ($env,$dbh,$bornum,$itemno)=@_;
669   my $renews = 1;
670   my $renewokay = 0;
671   my $q1 = "select * from issues 
672     where (borrowernumber = '$bornum')
673     and (itemnumber = '$itemno') 
674     and returndate is null";
675   my $sth1 = $dbh->prepare($q1);
676   $sth1->execute;
677   if (my $data1 = $sth1->fetchrow_hashref) {
678     my $q2 = "select renewalsallowed from items,biblioitems,itemtypes
679        where (items.itemnumber = '$itemno')
680        and (items.biblioitemnumber = biblioitems.biblioitemnumber) 
681        and (biblioitems.itemtype = itemtypes.itemtype)";
682     my $sth2 = $dbh->prepare($q2);
683     $sth2->execute;     
684     if (my $data2=$sth2->fetchrow_hashref) {
685       $renews = $data2->{'renewalsallowed'};
686     }
687     if ($renews > $data1->{'renewals'}) {
688       $renewokay = 1;
689     }
690     $sth2->finish;
691   }   
692   $sth1->finish;
693   return($renewokay);    
694 }
695
696 sub renewbook {
697 # Stolen from Renewals.pm
698   # mark book as renewed
699   my ($env,$dbh,$bornum,$itemno,$datedue)=@_;
700   $datedue=$env->{'datedue'};
701   if ($datedue eq "" ) {    
702     my $loanlength=21;
703     my $query= "Select * from biblioitems,items,itemtypes
704        where (items.itemnumber = '$itemno')
705        and (biblioitems.biblioitemnumber = items.biblioitemnumber)
706        and (biblioitems.itemtype = itemtypes.itemtype)";
707     my $sth=$dbh->prepare($query);
708     $sth->execute;
709     if (my $data=$sth->fetchrow_hashref) {
710       $loanlength = $data->{'loanlength'}
711     }
712     $sth->finish;
713     my $ti = time;
714     my $datedu = time + ($loanlength * 86400);
715     my @datearr = localtime($datedu);
716     $datedue = (1900+$datearr[5])."-".($datearr[4]+1)."-".$datearr[3];
717   }
718   my @date = split("-",$datedue);
719   my $odatedue = (@date[2]+0)."-".(@date[1]+0)."-".@date[0];
720   my $issquery = "select * from issues where borrowernumber='$bornum' and
721     itemnumber='$itemno' and returndate is null";
722   my $sth=$dbh->prepare($issquery);
723   $sth->execute;
724   my $issuedata=$sth->fetchrow_hashref;
725   $sth->finish;
726   my $renews = $issuedata->{'renewals'} +1;
727   my $updquery = "update issues 
728     set date_due = '$datedue', renewals = '$renews'
729     where borrowernumber='$bornum' and
730     itemnumber='$itemno' and returndate is null";
731   my $sth=$dbh->prepare($updquery);
732   
733   $sth->execute;
734   $sth->finish;
735   return($odatedue);
736 }
737
738 sub calc_charges {
739 # Stolen from Issues.pm
740 # calculate charges due
741     my ($env, $dbh, $itemno, $bornum)=@_;
742     my $charge=0;
743     my $item_type;
744     my $q1 = "select itemtypes.itemtype,rentalcharge from items,biblioitems,itemtypes where (items.itemnumber ='$itemno') and (biblioitems.biblioitemnumber = items.biblioitemnumber) and (biblioitems.itemtype = itemtypes.itemtype)";
745     my $sth1= $dbh->prepare($q1);
746     $sth1->execute;
747     if (my $data1=$sth1->fetchrow_hashref) {
748         $item_type = $data1->{'itemtype'};
749         $charge = $data1->{'rentalcharge'};
750         my $q2 = "select rentaldiscount from borrowers,categoryitem 
751         where (borrowers.borrowernumber = '$bornum') 
752         and (borrowers.categorycode = categoryitem.categorycode)
753         and (categoryitem.itemtype = '$item_type')";
754         my $sth2=$dbh->prepare($q2);
755         $sth2->execute;
756         if (my $data2=$sth2->fetchrow_hashref) {
757             my $discount = $data2->{'rentaldiscount'};
758             $charge = ($charge *(100 - $discount)) / 100;
759         }
760         $sth2->{'finish'};
761     }      
762     $sth1->finish;
763     return ($charge);
764 }
765
766 sub createcharge {
767 #Stolen from Issues.pm
768     my ($env,$dbh,$itemno,$bornum,$charge) = @_;
769     my $nextaccntno = getnextacctno($env,$bornum,$dbh);
770     my $query = "insert into accountlines (borrowernumber,itemnumber,accountno,date,amount, description,accounttype,amountoutstanding) values ($bornum,$itemno,$nextaccntno,now(),$charge,'Rental','Rent',$charge)";
771     my $sth = $dbh->prepare($query);
772     $sth->execute;
773     $sth->finish;
774 }
775
776
777 sub getnextacctno {
778 # Stolen from Accounts.pm
779     my ($env,$bornumber,$dbh)=@_;
780     my $nextaccntno = 1;
781     my $query = "select * from accountlines where (borrowernumber = '$bornumber') order by accountno desc";
782     my $sth = $dbh->prepare($query);
783     $sth->execute;
784     if (my $accdata=$sth->fetchrow_hashref){
785         $nextaccntno = $accdata->{'accountno'} + 1;
786     }
787     $sth->finish;
788     return($nextaccntno);
789 }
790
791 sub find_reserves {
792 # Stolen from Returns.pm
793   my ($env,$dbh,$itemno) = @_;
794   my ($itemdata) = getiteminformation($env,$itemno,0);
795   my $query = "select * from reserves where 
796   ((reserves.found = 'W')                                   
797   or (reserves.found is null)) 
798   and biblionumber = $itemdata->{'biblionumber'} and cancellationdate is NULL
799   order by priority,reservedate ";
800   my $sth = $dbh->prepare($query);
801   $sth->execute;
802   my $resfound = "n";
803   my $resrec;
804   my $lastrec;
805   while (($resrec=$sth->fetchrow_hashref) && ($resfound eq "n")) {
806       $lastrec=$resrec;
807     if ($resrec->{'found'} eq "W") {
808       if ($resrec->{'itemnumber'} eq $itemno) {
809         $resfound = "y";
810       }
811     } 
812     if ($resrec->{'constrainttype'} eq "a") {
813       $resfound = "y";
814     } else {
815       my $conquery = "select * from reserveconstraints where borrowernumber
816 = $resrec->{'borrowernumber'} and reservedate = '$resrec->{'reservedate'}' and biblionumber = $resrec->{'biblionumber'} and biblioitemnumber = $itemdata->{'biblioitemnumber'}";
817       my $consth = $dbh->prepare($conquery);
818       $consth->execute;
819       if (my $conrec=$consth->fetchrow_hashref) {
820         if ($resrec->{'constrainttype'} eq "o") {
821            $resfound = "y";
822          }
823       } else {
824         if ($resrec->{'constrainttype'} eq "e") {
825           $resfound = "y";
826         }
827       }
828       $consth->finish;
829     }
830     if ($resfound eq "y") {
831       my $updquery = "update reserves 
832         set found = 'W',itemnumber='$itemno'
833         where borrowernumber = $resrec->{'borrowernumber'}
834         and reservedate = '$resrec->{'reservedate'}'
835         and biblionumber = $resrec->{'biblionumber'}";
836       my $updsth = $dbh->prepare($updquery);
837       $updsth->execute;
838       $updsth->finish;
839       my $itbr = $resrec->{'branchcode'};
840       if ($resrec->{'branchcode'} ne $env->{'branchcode'}) {
841          my $updquery = "update items
842           set holdingbranch = 'TR'
843           where itemnumber = $itemno";
844         my $updsth = $dbh->prepare($updquery);
845         $updsth->execute;
846         $updsth->finish;
847       } 
848     }
849   }
850   $sth->finish;
851   return ($resfound,$lastrec);
852 }
853
854 END { }       # module clean-up code here (global destructor)