*** empty log message ***
[koha.git] / circ / circulation.pl
1 #!/usr/bin/perl
2 # Please use 8-character tabs for this file (indents are every 4 characters)
3
4 #written 8/5/2002 by Finlay
5 #script to execute issuing of books
6
7
8 # Copyright 2000-2002 Katipo Communications
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA  02111-1307 USA
24
25 use strict;
26 use CGI;
27 use C4::Circulation::Circ2;
28 use C4::Search;
29 use C4::Output;
30 use C4::Print;
31 use DBI;
32 use C4::Auth;
33 use C4::Interface::CGI::Output;
34 use C4::Koha;
35 use HTML::Template;
36 use C4::Date;
37
38 my $query=new CGI;
39 #my ($loggedinuser, $sessioncookie, $sessionID) = checkauth
40 #       ($query, 0, { circulate => 1 });
41
42 my ($template, $loggedinuser, $cookie) = get_template_and_user
43     ({
44         template_name   => 'circ/circulation.tmpl',
45         query           => $query,
46         type            => "intranet",
47         authnotrequired => 0,
48         flagsrequired   => { circulate => 1 },
49     });
50
51
52 my %env;
53 my $linecolor1='#ffffcc';
54 my $linecolor2='white';
55
56 my $branches = getbranches();
57 my $printers = getprinters(\%env);
58
59 my $branch = getbranch($query, $branches);
60 my $printer = getprinter($query, $printers);
61
62
63 #set up cookie.....
64 my $branchcookie;
65 my $printercookie;
66 if ($query->param('setcookies')) {
67         $branchcookie = $query->cookie(-name=>'branch', -value=>"$branch", -expires=>'+1y');
68         $printercookie = $query->cookie(-name=>'printer', -value=>"$printer", -expires=>'+1y');
69 }
70
71 $env{'branchcode'}=$branch;
72 $env{'printer'}=$printer;
73 $env{'queue'}=$printer;
74
75 my @datearr = localtime(time());
76 # FIXME - Could just use POSIX::strftime("%Y%m%d", localtime);
77 my $todaysdate = (1900+$datearr[5]).sprintf ("%0.2d", ($datearr[4]+1)).sprintf ("%0.2d", ($datearr[3]));
78 #warn $todaysdate;
79
80
81 my $message;
82 my $borrowerslist;
83 # if there is a list of find borrowers....
84 my $findborrower = $query->param('findborrower');
85 if ($findborrower) {
86         my ($count,$borrowers)=BornameSearch(\%env,$findborrower,'web');
87         my @borrowers=@$borrowers;
88         if ($#borrowers == -1) {
89                 $query->param('findborrower', '');
90                 $message =  "No borrower matched '$findborrower'";
91         } elsif ($#borrowers == 0) {
92                 $query->param('borrnumber', $borrowers[0]->{'borrowernumber'});
93                 $query->param('barcode','');
94         } else {
95                 $borrowerslist = \@borrowers;
96         }
97 }
98
99 my $borrowernumber = $query->param('borrnumber');
100 my $bornum = $query->param('borrnumber');
101 # check and see if we should print
102 my $print=$query->param('print');
103 my $barcode = $query->param('barcode');
104 if ($barcode eq ''  && $print eq 'maybe'){
105         $print = 'yes';
106 }
107 if ($print eq 'yes' && $borrowernumber ne ''){
108         printslip(\%env,$borrowernumber);
109         $query->param('borrnumber','');
110         $borrowernumber='';
111 }
112
113 # get the borrower information.....
114 my $borrower;
115 my $flags;
116 if ($borrowernumber) {
117     ($borrower, $flags) = getpatroninformation(\%env,$borrowernumber,0);
118 }
119
120 # get the responses to any questions.....
121 my %responses;
122 foreach (sort $query->param) {
123         if ($_ =~ /response-(\d*)/) {
124                 $responses{$1} = $query->param($_);
125         }
126 }
127 if (my $qnumber = $query->param('questionnumber')) {
128         $responses{$qnumber} = $query->param('answer');
129 }
130
131 my ($iteminformation, $duedate, $rejected, $question, $questionnumber, $defaultanswer);
132
133 my $year=$query->param('year');
134 my $month=$query->param('month');
135 my $day=$query->param('day');
136
137 # if the barcode is set
138 if ($barcode) {
139         $barcode = cuecatbarcodedecode($barcode);
140         my ($datedue, $invalidduedate) = fixdate($year, $month, $day);
141         unless ($invalidduedate) {
142                 $env{'datedue'}=$datedue;
143                 my @time=localtime(time);
144                 my $date= (1900+$time[5])."-".($time[4]+1)."-".$time[3];
145                 ($iteminformation, $duedate, $rejected, $question, $questionnumber, $defaultanswer, $message)
146                                         = issuebook(\%env, $borrower, $barcode, \%responses, $date);
147         }
148 }
149
150 # reload the borrower info for the sake of reseting the flags.....
151 if ($borrowernumber) {
152         ($borrower, $flags) = getpatroninformation(\%env,$borrowernumber,0);
153 }
154
155 ##################################################################################
156 # HTML code....
157
158 my $responsesform = '';
159 foreach (keys %responses) {
160     $responsesform.="<input type=hidden name=response-$_ value=$responses{$_}>\n";
161 }
162 my $questionform;
163 my $stickyduedate;
164 if ($question) {
165     $stickyduedate=$query->param('stickyduedate');
166 }
167
168
169 # Barcode entry box, with hidden inputs attached....
170 my $counter = 1;
171 my $dayoptions = '';
172 my $monthoptions = '';
173 my $yearoptions = '';
174 for (my $i=1; $i<32; $i++) {
175     my $selected='';
176     if (($query->param('stickyduedate')) && ($day==$i)) {
177         $selected='selected';
178     }
179     $dayoptions.="<option value=$i $selected>$i";
180 }
181 foreach (('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec')) {
182     my $selected='';
183     if (($query->param('stickyduedate')) && ($month==$counter)) {
184         $selected='selected';
185     }
186     $monthoptions.="<option value=$counter $selected>$_";
187     $counter++;
188 }
189 for (my $i=$datearr[5]+1900; $i<$datearr[5]+1905; $i++) {
190     my $selected='';
191     if (($query->param('stickyduedate')) && ($year==$i)) {
192         $selected='selected';
193     }
194     $yearoptions.="<option value=$i $selected>$i";
195 }
196 my $selected='';
197 ($query->param('stickyduedate')) && ($selected='checked');
198
199
200 # make the issued books table.....
201 my $todaysissues='';
202 my $previssues='';
203 my @realtodayissues;
204 my @realprevissues;
205 my $allowborrow;
206 my $hash;
207 if ($borrower) {
208     ($borrower, $flags,$hash) = getpatroninformation(\%env,$borrowernumber,0);
209     $allowborrow= $hash->{'borrow'};
210     my @todaysissues;
211     my @previousissues;
212     my $issueslist = getissues($borrower);
213     foreach my $it (keys %$issueslist) {
214         my $issuedate = $issueslist->{$it}->{'timestamp'};
215         $issuedate = substr($issuedate, 0, 8);
216         if ($todaysdate == $issuedate) {
217             push @todaysissues, $issueslist->{$it};
218         } else {
219             push @previousissues, $issueslist->{$it};
220         }
221         my $tcolor = '';
222         my $pcolor = '';
223         foreach my $book (sort {$b->{'timestamp'} <=> $a->{'timestamp'}} @todaysissues){
224                 my $dd = $book->{'date_due'};
225                 my $datedue = $book->{'date_due'};
226                 $dd=format_date($dd);
227                 $datedue=~s/-//g;
228                 if ($datedue < $todaysdate) {
229                         $dd="<font color=red>$dd</font>\n";
230                 }
231                 ($tcolor eq $linecolor1) ? ($tcolor=$linecolor2) : ($tcolor=$linecolor1);
232                 $book->{'dd'}=$dd;
233                 $book->{'tcolor'}=$tcolor;
234                 push @realtodayissues,$book;
235         }
236         ($tcolor eq $linecolor1) ? ($tcolor=$linecolor2) : ($tcolor=$linecolor1);
237         $book->{'dd'}=$dd;
238         $book->{'tcolor'}=$tcolor;
239         push @realtodayissues,$book
240 }
241     # FIXME - For small and private libraries, it'd be nice if this
242     # table included a "Return" link next to each book, so that you
243     # don't have to remember the book's bar code and type it in on the
244     # "Returns" page.
245
246     # This is in the template now, so its possible for a small library to make that link in their
247     # template
248
249     foreach my $book (sort {$a->{'date_due'} cmp $b->{'date_due'}} @previousissues){
250         my $dd = $book->{'date_due'};
251         my $datedue = $book->{'date_due'};
252         $dd=format_date($dd);
253         $datedue=~s/-//g;
254         if ($datedue < $todaysdate) {
255             $dd="<font color=red>$dd</font>\n";
256         }
257 }
258
259 # actually print the page!
260 #if ($branchcookie && $printercookie) {
261 #    print $query->header(-type=>'text/html',-expires=>'now', -cookie=>[$branchcookie,$printercookie,$sessioncookie]);
262 #} else {
263 #    print $query->header(-cookie=>[$sessioncookie]);
264 #}
265
266 #if ($query->param('barcode') eq '' && $query->param('charges') eq 'yes'){
267 #    my $count=@inp;
268 #     for (my $i=0;$i<$count;$i++){
269 #        $inp[$i]=~ s/onLoad=focusinput\(\)/onLoad=focusinput\(\)\;messenger\(\"\/cgi-bin\/koha\/pay.pl?bornum=$bornum\",700,600\)\;window1.focus\(\)/;
270 #     }
271 #}
272
273 my @values;
274 my %labels;
275 my $CGIselectborrower;
276 if ($borrowerslist) {
277         foreach (sort {$a->{'surname'}.$a->{'firstname'} cmp $b->{'surname'}.$b->{'firstname'}} @$borrowerslist){
278                 push @values,$_->{'borrowernumber'};
279                 $labels{$_->{'borrowernumber'}} ="$_->{'surname'}, $_->{'firstname'} ($_->{'cardnumber'})";
280         }
281         $CGIselectborrower=CGI::scrolling_list( -name     => 'borrnumber',
282                                 -values   => \@values,
283                                 -labels   => \%labels,
284                                 -size     => 7,
285                                 -multiple => 0 );
286 }
287 #title
288
289 my ($patrontable, $flaginfotable) = patrontable($borrower);
290 my $amountold=$flags->{'CHARGES'}->{'message'};
291 my @temp=split(/\$/,$amountold);
292 $amountold=$temp[1];
293 $template->param(
294                 findborrower => $findborrower,
295                 borrower => $borrower,
296                 borrowernumber => $borrowernumber,
297                 branch => $branch,
298                 printer => $printer,
299                 branchname => $branches->{$branch}->{'branchname'},
300                 printername => $printers->{$printer}->{'printername'},
301                 allowborrow =>$allowborrow,
302
303                 #question form
304                 question => $question,
305                 title => $iteminformation->{'title'},
306                 author => $iteminformation->{'author'},
307                 firstname => $borrower->{'firstname'},
308                 surname => $borrower->{'surname'},
309                 question => $question,
310                 barcode => $barcode,
311                 questionnumber => $questionnumber,
312                 dayoptions => $dayoptions,
313                 monthoptions => $monthoptions,
314                 yearoptions => $yearoptions,
315                 stickyduedate => $stickyduedate,
316                 responseform => $responsesform,
317                 rejected => $rejected,
318                 message => $message,
319                 CGIselectborrower => $CGIselectborrower,
320
321                 patrontable => $patrontable,
322                 flaginfotable => $flaginfotable,
323                 CHARGES => $flags->{'CHARGES'},
324                 amountold => $amountold,
325         );
326
327 if ($branchcookie) {
328     $cookie=[$cookie, $branchcookie, $printercookie];
329 }
330
331 output_html_with_http_headers $query, $cookie, $template->output;
332
333 ####################################################################
334 # Extra subroutines,,,
335
336 sub cuecatbarcodedecode {
337     my ($barcode) = @_;
338     chomp($barcode);
339     my @fields = split(/\./,$barcode);
340     my @results = map(decode($_), @fields[1..$#fields]);
341     if ($#results == 2){
342         return $results[2];
343     } else {
344         return $barcode;
345     }
346 }
347
348 sub fixdate {
349     my ($year, $month, $day) = @_;
350     my $invalidduedate;
351     my $date;
352     if (($year eq 0) && ($month eq 0) && ($year eq 0)) {
353         $env{'datedue'}='';
354     } else {
355         if (($year eq 0) || ($month eq 0) || ($year eq 0)) {
356             $invalidduedate="Invalid Due Date Specified. Book was not issued.<p>\n";
357         } else {
358             if (($day>30) && (($month==4) || ($month==6) || ($month==9) || ($month==11))) {
359                 $invalidduedate = "Invalid Due Date Specified. Book was not issued. Only 30 days in $month month.<p>\n";
360             } elsif (($day > 29) && ($month == 2)) {
361                 $invalidduedate="Invalid Due Date Specified. Book was not issued.  Never that many days in February!<p>\n";
362             } elsif (($month == 2) && ($day > 28) && (($year%4) && ((!($year%100) || ($year%400))))) {
363                 $invalidduedate="Invalid Due Date Specified. Book was not issued.  $year is not a leap year.<p>\n";
364             } else {
365                 $date="$year-$month-$day";
366             }
367         }
368     }
369     return ($date, $invalidduedate);
370 }
371
372
373 sub patrontable {
374     my ($borrower) = @_;
375     my $flags = $borrower->{'flags'};
376     my $flaginfotable='';
377     my $flaginfotext='';
378     my $flag;
379     my $color='';
380     foreach $flag (sort keys %$flags) {
381         ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1);
382         $flags->{$flag}->{'message'}=~s/\n/<br>/g;
383         if ($flags->{$flag}->{'noissues'}) {
384             if ($flag eq 'CHARGES') {
385                 $flaginfotext.="<tr><td valign=top><font color=red>$flag</font></td><td bgcolor=$color><b>$flags->{$flag}->{'message'}</b> <a href=/cgi-bin/koha/pay.pl?bornum=$borrower->{'borrowernumber'} onClick=\"openWindow(this, 'Payment', 480,640)\">Payment</a></td></tr>\n";
386             } else {
387                 $flaginfotext.="<tr><td valign=top><font color=red>$flag</font></td><td bgcolor=$color>$flags->{$flag}->{'message'}</td></tr>\n";
388             }
389         } else {
390             if ($flag eq 'CHARGES') {
391                 $flaginfotext.="<tr><td valign=top>$flag</td><td> $flags->{$flag}->{'message'} <a href=/cgi-bin/koha/pay.pl?bornum=$borrower->{'borrowernumber'} onClick=\"openWindow(this, 'Payment', 480,640)\">Payment</a></td></tr>\n";
392             } elsif ($flag eq 'WAITING') {
393                 my $itemswaiting='';
394                 my $items=$flags->{$flag}->{'itemlist'};
395                 foreach my $item (@$items) {
396                     my ($iteminformation) = getiteminformation(\%env, $item->{'itemnumber'}, 0);
397                     $itemswaiting.="<a href=/cgi-bin/koha/detail.pl?bib=$iteminformation->{'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$iteminformation->{'barcode'}</a> $iteminformation->{'title'} ($branches->{$iteminformation->{'holdingbranch'}}->{'branchname'})<br>\n";
398                 }
399                 $flaginfotext.="<tr><td valign=top>$flag</td><td>$itemswaiting</td></tr>\n";
400             } elsif ($flag eq 'ODUES') {
401                 my $items=$flags->{$flag}->{'itemlist'};
402                 my $itemswaiting="<table border=1 cellspacing=0 cellpadding=2>\n";
403                 my $currentcolor=$color;
404                 {
405                     my $color=$currentcolor;
406                     foreach my $item (@$items) {
407                         ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1);
408                         my ($iteminformation) = getiteminformation(\%env, $item->{'itemnumber'}, 0);
409                         $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";
410                     }
411                 }
412                 $itemswaiting.="</table>\n";
413                 if ($query->param('module') ne 'returns'){
414                   $flaginfotext.="<tr><td valign=top>$flag</td><td>$flags->{$flag}->{'message'}, See below</td></tr>\n";
415                 } else {
416                   $flaginfotext.="<tr><td valign=top>$flag</td><td>$flags->{$flag}->{'message'}</td></tr>\n";
417                 }
418             } else {
419                 $flaginfotext.="<tr><td valign=top>$flag</td><td>$flags->{$flag}->{'message'}</td></tr>\n";
420             }
421         }
422     }
423     ($flaginfotext) && ($flaginfotext="<tr><td  colspan=2><b>Flags</b></td></tr>$flaginfotext\n");
424     $flaginfotext.="</table>";
425     my $patrontable= << "EOF";
426 <br><p>
427     <table border=1 cellpadding=5 cellspacing=0 align=right>
428     <tr><td colspan=2><font color=black><b>Patron Information</b></font></td></tr>
429     <tr><td colspan=2>
430     <a href=/cgi-bin/koha/moremember.pl?bornum=$borrower->{'borrowernumber'} onClick="openWindow(this,'Member', 480, 640)">$borrower->{'cardnumber'}</a> $borrower->{'surname'}, $borrower->{'title'} $borrower->{'firstname'}<br>$borrower->{'streetaddress'} $borrower->{'city'} Cat: $borrower->{'categorycode'} </td></tr>
431 EOF
432     return($patrontable, $flaginfotext);
433 }
434
435
436 # FIXME - This clashes with &C4::Print::printslip
437 sub printslip {
438     my ($env,$borrowernumber)=@_;
439     my ($borrower, $flags) = getpatroninformation($env,$borrowernumber,0);
440     $env->{'todaysissues'}=1;
441     my ($borrowerissues) = currentissues($env, $borrower);
442     $env->{'nottodaysissues'}=1;
443     $env->{'todaysissues'}=0;
444     my ($borroweriss2)=currentissues($env, $borrower);
445     $env->{'nottodaysissues'}=0;
446     my $i=0;
447     my @issues;
448     foreach (sort {$a <=> $b} keys %$borrowerissues) {
449         $issues[$i]=$borrowerissues->{$_};
450         my $dd=$issues[$i]->{'date_due'};
451         #convert to nz style dates
452         #this should be set with some kinda config variable
453         my @tempdate=split(/-/,$dd);
454         $issues[$i]->{'date_due'}="$tempdate[2]/$tempdate[1]/$tempdate[0]";
455         $i++;
456     }
457     foreach (sort {$a <=> $b} keys %$borroweriss2) {
458         $issues[$i]=$borroweriss2->{$_};
459         my $dd=$issues[$i]->{'date_due'};
460         #convert to nz style dates
461         #this should be set with some kinda config variable
462         my @tempdate=split(/-/,$dd);
463         $issues[$i]->{'date_due'}="$tempdate[2]/$tempdate[1]/$tempdate[0]";
464         $i++;
465     }
466     remoteprint($env,\@issues,$borrower);
467 }
468
469 # Local Variables:
470 # tab-width: 8
471 # End: