last modif for 1.3.2 release
[koha.git] / circ / circulation.pl
index 95f3d99..c92b5cd 100755 (executable)
@@ -3,17 +3,41 @@
 #written 8/5/2002 by Finlay
 #script to execute issuing of books
 
+
+# Copyright 2000-2002 Katipo Communications
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
 use strict;
 use CGI;
 use C4::Circulation::Circ2;
 use C4::Search;
 use C4::Output;
 use C4::Print;
+use DBI;
+use C4::Auth;
+
+my $query=new CGI;
+my ($loggedinuser, $sessioncookie, $sessionID) = checkauth($query);
+
 
 my %env;
 my $headerbackgroundcolor='#99cc33';
-my $circbackgroundcolor='#ffffcc';
-my $circbackgroundcolor='white';
+my $circbackgroundcolor='#ffffcc';     # FIXME - Never used
+my $circbackgroundcolor='white';       # FIXME - Never used
 my $linecolor1='#ffffcc';
 my $linecolor2='white';
 my $backgroundimage="/images/background-mem.gif";
@@ -29,6 +53,11 @@ my $printer = $query->param("printer");
 ($branch) || ($branch=$query->cookie('branch')) ;
 ($printer) || ($printer=$query->cookie('printer')) ;
 
+($branches->{$branch}) || ($branch=(keys %$branches)[0]);
+($printers->{$printer}) || ($printer=(keys %$printers)[0]);
+
+
+
 #set up cookie.....
 my $info = '';
 my $branchcookie;
@@ -43,8 +72,11 @@ $env{'printer'}=$printer;
 $env{'queue'}=$printer;
 
 my @datearr = localtime(time());
-my $todaysdate = (1900+$datearr[5]).sprintf ("%0.2d", ($datearr[4]+1)).sprintf ("%0.2d", $datearr[3]);
-warn $todaysdate;
+my $tday = localtime(time());          # FIXME - Unused
+#warn "today: $tday \n";
+# FIXME - Could just use POSIX::strftime("%Y%m%d", localtime);
+my $todaysdate = (1900+$datearr[5]).sprintf ("%0.2d", ($datearr[4]+1)).sprintf ("%0.2d", ($datearr[3]));
+#warn $todaysdate;
 
 
 my $message;
@@ -65,23 +97,23 @@ if ($findborrower) {
     }
 }
 
-my $borrowernumber = $query->param('borrnumber');    
-
+my $borrowernumber = $query->param('borrnumber');
+my $bornum = $query->param('borrnumber');
 # check and see if we should print
 my $print=$query->param('print');
 my $barcode = $query->param('barcode');
-#if ($barcode eq '' ){
-#    $print = 'yes';
-#}
+if ($barcode eq ''  && $print eq 'maybe'){
+    $print = 'yes';
+}
 if ($print eq 'yes' && $borrowernumber ne ''){
-    printslip(\%env,$borrowernumber);    
+    printslip(\%env,$borrowernumber);
     $query->param('borrnumber','');
     $borrowernumber='';
 }
-    
 
 
-# get the currently issued books......
+
+# get the borrower information.....
 my $borrower;
 my $flags;
 if ($borrowernumber) {
@@ -100,7 +132,6 @@ if (my $qnumber = $query->param('questionnumber')) {
 }
 
 
-# if the barcode is set    
 
 my ($iteminformation, $duedate, $rejected, $question, $questionnumber, $defaultanswer);
 
@@ -108,7 +139,7 @@ my $year=$query->param('year');
 my $month=$query->param('month');
 my $day=$query->param('day');
 
-
+# if the barcode is set
 if ($barcode) {
     $barcode = cuecatbarcodedecode($barcode);
     my ($datedue, $invalidduedate) = fixdate($year, $month, $day);
@@ -117,11 +148,16 @@ if ($barcode) {
        $env{'datedue'}=$datedue;
        my @time=localtime(time);
        my $date= (1900+$time[5])."-".($time[4]+1)."-".$time[3];
-       ($iteminformation, $duedate, $rejected, $question, $questionnumber, $defaultanswer, $message) 
+       ($iteminformation, $duedate, $rejected, $question, $questionnumber, $defaultanswer, $message)
                      = issuebook(\%env, $borrower, $barcode, \%responses, $date);
     }
 }
 
+# reload the borrower info for the sake of reseting the flags.....
+if ($borrowernumber) {
+    ($borrower, $flags) = getpatroninformation(\%env,$borrowernumber,0);
+}
+
 
 ##################################################################################
 # HTML code....
@@ -172,12 +208,25 @@ my $title = <<"EOF";
 <img src="/images/button-next-borrower.gif" width="171" height="42" border="0" alt="Next Borrower"></a> &nbsp
 <a href=returns.pl>
 <img src="/images/button-returns.gif" width="110" height="42" border="0" alt="Returns"></a>
-&nbsp<a href=branchtransfers.pl>
-<img src="/images/button-transfers.gif" width="127" height="42" border="0" alt="Transfers">
-</a>
+&nbsp<a href=branchtransfers.pl><img src="/images/button-transfers.gif" width="127" height="42" border="0" alt="Transfers"></a>
 </td></tr></table>
 <FONT SIZE=6><em>Circulation: Issues</em></FONT><br>
-<b>Branch:</b> $branches->{$branch}->{'branchname'} &nbsp 
+<b>Branch:</b> $branches->{$branch}->{'branchname'} &nbsp
+<b>Printer:</b> $printers->{$printer}->{'printername'} <br>
+<a href=selectbranchprinter.pl>Change Settings</a></td>
+<input type=hidden name=branch value=$branch>
+<input type=hidden name=printer value=$printer>
+<p>
+EOF
+
+my $titlenoborrower = <<"EOF";
+<table align="right"><tr><td>
+<a href=returns.pl>
+<img src="/images/button-returns.gif" width="110" height="42" border="0" alt="Returns"></a>
+&nbsp<a href=branchtransfers.pl><img src="/images/button-transfers.gif" width="127" height="42" border="0" alt="Transfers"></a>
+</td></tr></table>
+<FONT SIZE=6><em>Circulation: Issues</em></FONT><br>
+<b>Branch:</b> $branches->{$branch}->{'branchname'} &nbsp
 <b>Printer:</b> $printers->{$printer}->{'printername'} <br>
 <a href=selectbranchprinter.pl>Change Settings</a></td>
 <input type=hidden name=branch value=$branch>
@@ -193,7 +242,8 @@ my $cardnumberinput = << "EOF";
 <tr><th bgcolor=$headerbackgroundcolor background=$backgroundimage>
 <font color=black><b>Enter borrower card number<br> or partial last name</b></font></td></tr>
 <tr><td><input name=findborrower></td></tr>
-  
+  <input type=hidden name=branch value=$branch>
+<input type=hidden name=printer value=$printer>
 </table>
 </form>
 EOF
@@ -208,9 +258,9 @@ if ($question) {
     $questionform = <<"EOF";
 <table border=1 cellpadding=5 cellspacing=0 bgcolor="#dddddd">
 <tr><th bgcolor=$headerbackgroundcolor background=$backgroundimage>
-<font color=black><b>Issuing Question</b></font></th></tr>
-<tr><td><table border=0 cellpadding=10><tr><td> 
-Attempting to issue $iteminformation->{'title'} 
+<font size=+2 color=red><b>Issuing Question</b></font></th></tr>
+<tr><td><table border=0 cellpadding=10><tr><td>
+Attempting to issue $iteminformation->{'title'}
 by $iteminformation->{'author'} to $borrower->{'firstname'} $borrower->{'surname'}.
 <p>
 $question
@@ -317,7 +367,16 @@ my $barcodeentrytext = <<"EOF";
 <input type=hidden name=borrnumber value=$borrowernumber>
 <input type=hidden name=branch value=$branch>
 <input type=hidden name=printer value=$printer>
-<input type=hidden name=print value=yes>
+<input type=hidden name=print value=maybe>
+EOF
+if ($flags->{'CHARGES'}){
+    $barcodeentrytext.="<input type=hidden name=charges value=yes>";
+}
+my $amountold=$flags->{'CHARGES'}->{'message'};
+my @temp=split(/\$/,$amountold);
+$amountold=$temp[1];
+$barcodeentrytext.="<input type=hidden name=oldamount value=$amountold>";
+$barcodeentrytext.=<<"EOF";
 </td></tr></table>
 </td></tr></table>
 </form>
@@ -340,46 +399,65 @@ EOF
 my $todaysissues='';
 my $previssues='';
 if ($borrower) {
+    my @todaysissues;
+    my @previousissues;
     my $issueslist = getissues($borrower);
-    my $tcolor = '';
-    my $pcolor = '';
-    foreach my $it (sort keys %$issueslist) {
-       my $dd = $issueslist->{$it}->{'date_due'};
+    foreach my $it (keys %$issueslist) {
        my $issuedate = $issueslist->{$it}->{'timestamp'};
        $issuedate = substr($issuedate, 0, 8);
-
-       my $bookissue = $issueslist->{$it};
-       my $bgcolor='';
-       my $datedue = $bookissue->{'date_due'};
+       if ($todaysdate == $issuedate) {
+           push @todaysissues, $issueslist->{$it};
+       } else {
+           push @previousissues, $issueslist->{$it};
+       }
+    }
+    my $tcolor = '';
+    my $pcolor = '';
+    foreach my $book (sort {$b->{'timestamp'} <=> $a->{'timestamp'}} @todaysissues){
+       my $dd = $book->{'date_due'};
+       my $datedue = $book->{'date_due'};
        #convert to nz style dates
-       #this should be set with some kinda config variable         
+       #this should be set with some kinda config variable
        my @tempdate=split(/-/,$dd);
        $dd="$tempdate[2]/$tempdate[1]/$tempdate[0]";
        $datedue=~s/-//g;
        if ($datedue < $todaysdate) {
            $dd="<font color=red>$dd</font>\n";
        }
-       if ($todaysdate == $issuedate) {
-           ($tcolor eq $linecolor1) ? ($tcolor=$linecolor2) : ($tcolor=$linecolor1);
-           $todaysissues .=<< "EOF";
+       ($tcolor eq $linecolor1) ? ($tcolor=$linecolor2) : ($tcolor=$linecolor1);
+       $todaysissues .=<< "EOF";
 <tr><td bgcolor=$tcolor align=center>$dd</td>
 <td bgcolor=$tcolor align=center>
-<a href=/cgi-bin/koha/detail.pl?bib=$bookissue->{'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$bookissue->{'barcode'}</a></td>
-<td bgcolor=$tcolor>$bookissue->{'title'}</td>
-<td bgcolor=$tcolor>$bookissue->{'author'}</td>
-<td bgcolor=$tcolor align=center>$bookissue->{'dewey'} $bookissue->{'subclass'}</td></tr>
+<a href=/cgi-bin/koha/detail.pl?bib=$book->{'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$book->{'barcode'}</a></td>
+<td bgcolor=$tcolor>$book->{'title'}</td>
+<td bgcolor=$tcolor>$book->{'author'}</td>
+<td bgcolor=$tcolor align=center>$book->{'dewey'} $book->{'subclass'}</td></tr>
 EOF
-        } else {
-           ($pcolor eq $linecolor1) ? ($pcolor=$linecolor2) : ($pcolor=$linecolor1);
-           $previssues .= << "EOF";
+    }
+    # FIXME - For small and private libraries, it'd be nice if this
+    # table included a "Return" link next to each book, so that you
+    # don't have to remember the book's bar code and type it in on the
+    # "Returns" page.
+    foreach my $book (sort {$a->{'date_due'} cmp $b->{'date_due'}} @previousissues){
+       my $dd = $book->{'date_due'};
+       my $datedue = $book->{'date_due'};
+       #convert to nz style dates
+       #this should be set with some kinda config variable
+       my @tempdate=split(/-/,$dd);
+       $dd="$tempdate[2]/$tempdate[1]/$tempdate[0]";
+       $datedue=~s/-//g;
+       if ($datedue < $todaysdate) {
+           $dd="<font color=red>$dd</font>\n";
+       }
+       ($pcolor eq $linecolor1) ? ($pcolor=$linecolor2) : ($pcolor=$linecolor1);
+       $previssues .= << "EOF";
 <tr><td bgcolor=$pcolor align=center>$dd</td>
 <td bgcolor=$pcolor align=center>
-<a href=/cgi-bin/koha/detail.pl?bib=$bookissue->{'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$bookissue->{'barcode'}</a></td>
-<td bgcolor=$pcolor>$bookissue->{'title'}</td>
-<td bgcolor=$pcolor>$bookissue->{'author'}</td>
-<td bgcolor=$pcolor align=center>$bookissue->{'dewey'} $bookissue->{'subclass'}</td></tr>
+<a href=/cgi-bin/koha/detail.pl?bib=$book->{'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$book->{'barcode'}</a></td>
+<td bgcolor=$pcolor>$book->{'title'}</td>
+<td bgcolor=$pcolor>$book->{'author'}</td>
+<td bgcolor=$pcolor align=center>$book->{'dewey'} $book->{'subclass'}</td></tr>
 EOF
-       }
     }
 }
 
@@ -413,15 +491,29 @@ EOF
 
 
 if ($branchcookie && $printercookie) {
-    print $query->header(-type=>'text/html',-expires=>'now', -cookie=>[$branchcookie,$printercookie]);
+    print $query->header(-type=>'text/html',-expires=>'now', -cookie=>[$branchcookie,$printercookie,$sessioncookie]);
 } else {
-    print $query->header();
+    print $query->header(-cookie=>[$sessioncookie]);
 }
 
 print startpage();
-print startmenu('circulation');
+my @inp=startmenu('circulation');
+if ($query->param('barcode') eq '' && $query->param('charges') eq 'yes'){
+    my $count=@inp;
+     for (my $i=0;$i<$count;$i++){
+        $inp[$i]=~ s/onLoad=focusinput\(\)/onLoad=focusinput\(\)\;messenger\(\"\/cgi-bin\/koha\/pay.pl?bornum=$bornum\",700,600\)\;window1.focus\(\)/;
+     }
+}
 
-print $title;
+print @inp;
+
+
+#print startmenu('circulation');
+if ($borrower) {
+    print $title;
+} else {
+    print $titlenoborrower;
+}
 
 
 print $info;
@@ -472,8 +564,8 @@ sub cuecatbarcodedecode {
        return $results[2];
     } else {
        return $barcode;
-    } 
-} 
+    }
+}
 
 sub fixdate {
     my ($year, $month, $day) = @_;
@@ -537,13 +629,13 @@ sub patrontable {
                        ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1);
                        my ($iteminformation) = getiteminformation(\%env, $item->{'itemnumber'}, 0);
                        $itemswaiting.="<tr><td><font color=red>$iteminformation->{'date_due'}</font></td><td bgcolor=$color><a href=/cgi-bin/koha/detail.pl?bib=$iteminformation->{'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$iteminformation->{'barcode'}</a></td><td>$iteminformation->{'title'}</td></tr>\n";
-                   }               
+                   }
                }
                $itemswaiting.="</table>\n";
                if ($query->param('module') ne 'returns'){
                  $flaginfotext.="<tr><td valign=top>$flag</td><td>$flags->{$flag}->{'message'}, See below</td></tr>\n";
                } else {
-                 $flaginfotext.="<tr><td valign=top>$flag</td><td>$flags->{$flag}->{'message'}</td></tr>\n"; 
+                 $flaginfotext.="<tr><td valign=top>$flag</td><td>$flags->{$flag}->{'message'}</td></tr>\n";
                }
            } else {
                $flaginfotext.="<tr><td valign=top>$flag</td><td>$flags->{$flag}->{'message'}</td></tr>\n";
@@ -563,7 +655,7 @@ EOF
 }
 
 
-
+# FIXME - This clashes with &C4::Print::printslip
 sub printslip {
     my ($env,$borrowernumber)=@_;
     my ($borrower, $flags) = getpatroninformation($env,$borrowernumber,0);
@@ -575,18 +667,20 @@ sub printslip {
     $env->{'nottodaysissues'}=0;
     my $i=0;
     my @issues;
-    foreach (sort keys %$borrowerissues) {
+    foreach (sort {$a <=> $b} keys %$borrowerissues) {
        $issues[$i]=$borrowerissues->{$_};
        my $dd=$issues[$i]->{'date_due'};
+#      warn $_,$dd;
        #convert to nz style dates
        #this should be set with some kinda config variable
        my @tempdate=split(/-/,$dd);
        $issues[$i]->{'date_due'}="$tempdate[2]/$tempdate[1]/$tempdate[0]";
        $i++;
     }
-    foreach (sort keys %$borroweriss2) {
+    foreach (sort {$a <=> $b} keys %$borroweriss2) {
        $issues[$i]=$borroweriss2->{$_};
        my $dd=$issues[$i]->{'date_due'};
+#      warn $_,$dd;
        #convert to nz style dates
        #this should be set with some kinda config variable
        my @tempdate=split(/-/,$dd);