Bug 605 fixed
[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 %responseform;
159 my @responsearray;
160 foreach (keys %responses) {
161 #    $responsesform.="<input type=hidden name=response-$_ value=$responses{$_}>\n";
162     $responseform{'name'}=$_;
163     $responseform{'value'}=$responses{$_};
164     push @responsearray,\%responseform;
165 }
166 my $questionform;
167 my $stickyduedate;
168 if ($question) {
169     $stickyduedate=$query->param('stickyduedate');
170 }
171
172
173 # Barcode entry box, with hidden inputs attached....
174 my $counter = 1;
175 my $dayoptions = '';
176 my $monthoptions = '';
177 my $yearoptions = '';
178 for (my $i=1; $i<32; $i++) {
179     my $selected='';
180     if (($query->param('stickyduedate')) && ($day==$i)) {
181         $selected='selected';
182     }
183     $dayoptions.="<option value=$i $selected>$i";
184 }
185 foreach (('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec')) {
186     my $selected='';
187     if (($query->param('stickyduedate')) && ($month==$counter)) {
188         $selected='selected';
189     }
190     $monthoptions.="<option value=$counter $selected>$_";
191     $counter++;
192 }
193 for (my $i=$datearr[5]+1900; $i<$datearr[5]+1905; $i++) {
194     my $selected='';
195     if (($query->param('stickyduedate')) && ($year==$i)) {
196         $selected='selected';
197     }
198     $yearoptions.="<option value=$i $selected>$i";
199 }
200 my $selected='';
201 ($query->param('stickyduedate')) && ($selected='checked');
202
203
204 # make the issued books table.....
205 my $todaysissues='';
206 my $previssues='';
207 my @realtodayissues;
208 my @realprevissues;
209 my $allowborrow;
210 my $hash;
211 if ($borrower) {
212     ($borrower, $flags,$hash) = getpatroninformation(\%env,$borrowernumber,0);
213     $allowborrow= $hash->{'borrow'};
214     my @todaysissues;
215     my @previousissues;
216     my $issueslist = getissues($borrower);
217     foreach my $it (keys %$issueslist) {
218         my $issuedate = $issueslist->{$it}->{'timestamp'};
219         $issuedate = substr($issuedate, 0, 8);
220         if ($todaysdate == $issuedate) {
221             push @todaysissues, $issueslist->{$it};
222         } else {
223             push @previousissues, $issueslist->{$it};
224         }
225     }
226         my $tcolor = '';
227         my $pcolor = '';
228         foreach my $book (sort {$b->{'timestamp'} <=> $a->{'timestamp'}} @todaysissues){
229                 my $dd = $book->{'date_due'};
230                 my $datedue = $book->{'date_due'};
231                 $dd=format_date($dd);
232                 $datedue=~s/-//g;
233                 if ($datedue < $todaysdate) {
234                         $dd="<font color=red>$dd</font>\n";
235                 }
236                 ($tcolor eq $linecolor1) ? ($tcolor=$linecolor2) : ($tcolor=$linecolor1);
237                 $book->{'dd'}=$dd;
238                 $book->{'tcolor'}=$tcolor;
239                 if ($book->{'author'} eq ''){
240                     $book->{'author'}=' ';
241                 }    
242                 push @realtodayissues,$book;
243         }
244     
245
246     # FIXME - For small and private libraries, it'd be nice if this
247     # table included a "Return" link next to each book, so that you
248     # don't have to remember the book's bar code and type it in on the
249     # "Returns" page.
250
251     # This is in the template now, so its possible for a small library to make that link in their
252     # template
253
254     foreach my $book (sort {$a->{'date_due'} cmp $b->{'date_due'}} @previousissues){
255         my $dd = $book->{'date_due'};
256         my $datedue = $book->{'date_due'};
257         $dd=format_date($dd);
258         my $pcolor = '';
259         $datedue=~s/-//g;
260         if ($datedue < $todaysdate) {
261             $dd="<font color=red>$dd</font>\n";
262         }
263         ($pcolor eq $linecolor1) ? ($pcolor=$linecolor2) : ($pcolor=$linecolor1); 
264         $book->{'dd'}=$dd; 
265         $book->{'tcolor'}=$pcolor;
266         if ($book->{'author'} eq ''){
267             $book->{'author'}=' ';
268         }    
269         push @realprevissues,$book
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                 #question form
303                 question => $question,
304                 title => $iteminformation->{'title'},
305                 author => $iteminformation->{'author'},
306                 firstname => $borrower->{'firstname'},
307                 surname => $borrower->{'surname'},
308                 categorycode => $borrower->{'categorycode'},
309                 question => $question,
310                 barcode => $barcode,
311                 questionnumber => $questionnumber,
312                 dayoptions => $dayoptions,
313                 monthoptions => $monthoptions,
314                 yearoptions => $yearoptions,
315                 stickyduedate => $stickyduedate,
316                 rejected => $rejected,
317                 message => $message,
318                 CGIselectborrower => $CGIselectborrower,
319                 amountold => $amountold,
320                 todayissues => \@realtodayissues,
321                 previssues => \@realprevissues,
322                 responseloop => \@responsearray,
323                  month=>$month,
324                  day=>$day,
325                  year=>$year
326                  
327         );
328
329 if ($branchcookie) {
330     $cookie=[$cookie, $branchcookie, $printercookie];
331 }
332
333 output_html_with_http_headers $query, $cookie, $template->output;
334
335 ####################################################################
336 # Extra subroutines,,,
337
338 sub cuecatbarcodedecode {
339     my ($barcode) = @_;
340     chomp($barcode);
341     my @fields = split(/\./,$barcode);
342     my @results = map(decode($_), @fields[1..$#fields]);
343     if ($#results == 2){
344         return $results[2];
345     } else {
346         return $barcode;
347     }
348 }
349
350 sub fixdate {
351     my ($year, $month, $day) = @_;
352     my $invalidduedate;
353     my $date;
354     if (($year eq 0) && ($month eq 0) && ($year eq 0)) {
355         $env{'datedue'}='';
356     } else {
357         if (($year eq 0) || ($month eq 0) || ($year eq 0)) {
358             $invalidduedate="Invalid Due Date Specified. Book was not issued.<p>\n";
359         } else {
360             if (($day>30) && (($month==4) || ($month==6) || ($month==9) || ($month==11))) {
361                 $invalidduedate = "Invalid Due Date Specified. Book was not issued. Only 30 days in $month month.<p>\n";
362             } elsif (($day > 29) && ($month == 2)) {
363                 $invalidduedate="Invalid Due Date Specified. Book was not issued.  Never that many days in February!<p>\n";
364             } elsif (($month == 2) && ($day > 28) && (($year%4) && ((!($year%100) || ($year%400))))) {
365                 $invalidduedate="Invalid Due Date Specified. Book was not issued.  $year is not a leap year.<p>\n";
366             } else {
367                 $date="$year-$month-$day";
368             }
369         }
370     }
371     return ($date, $invalidduedate);
372 }
373
374
375 sub patrontable {
376     my ($borrower) = @_;
377     my $flags = $borrower->{'flags'};
378     my $flaginfotable='';
379     my $flaginfotext;
380     #my $flaginfotext='';
381     my $flag;
382     my $color='';
383     foreach $flag (sort keys %$flags) {
384         warn $flag;
385 #       my @itemswaiting='';
386         ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1);
387         $flags->{$flag}->{'message'}=~s/\n/<br>/g;
388         if ($flags->{$flag}->{'noissues'}) {
389                 $template->param(
390                         noissues => 'true',
391                         color => $color,
392                          );
393                 if ($flag eq 'CHARGES') {
394                         $template->param(
395                                 charges => 'true',
396                                 chargesmsg => $flags->{'CHARGES'}->{'message'}
397                                  );
398                 }
399         } else {
400                  if ($flag eq 'CHARGES') {
401                         $template->param(
402                                 charges => 'true',
403                                 chargesmsg => $flags->{'CHARGES'}->{'message'}
404                          );
405                 }
406                 if ($flag eq 'WAITING') {
407                         my $items=$flags->{$flag}->{'itemlist'};
408                         my @itemswaiting;
409                         foreach my $item (@$items) {
410                         my ($iteminformation) = getiteminformation(\%env, $item->{'itemnumber'}, 0);
411                         $iteminformation->{'branchname'} = $branches->{$iteminformation->{'holdingbranch'}}->{'branchname'};
412                         push @itemswaiting, $iteminformation;
413                         }
414                         $template->param(
415                                 waiting => 'true',
416                                 waitingmsg => $flags->{'WAITING'}->{'message'},
417                                 itemswaiting => \@itemswaiting,
418                                  );
419                 }
420                 if ($flag eq 'ODUES') {
421                         $template->param(
422                                 odues => 'true',
423                                 oduesmsg => $flags->{'ODUES'}->{'message'}
424                                  );
425
426                         my $items=$flags->{$flag}->{'itemlist'};
427                         my $currentcolor=$color;
428                         {
429                         my $color=$currentcolor;
430                             my @itemswaiting;
431                         foreach my $item (@$items) {
432                                 ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1);
433                                 my ($iteminformation) = getiteminformation(\%env, $item->{'itemnumber'}, 0);
434                                 push @itemswaiting, $iteminformation;
435                         }
436                         }
437                         if ($query->param('module') ne 'returns'){
438                                 $template->param( nonreturns => 'true' );
439                         }
440                 }
441                 if ($flag eq 'NOTES') {
442                         $template->param(
443                                 notes => 'true',
444                                 notesmsg => $flags->{'NOTES'}->{'message'}
445                                  );
446                 }
447         }
448     }
449     return($patrontable, $flaginfotext);
450 }
451
452
453 # FIXME - This clashes with &C4::Print::printslip
454 sub printslip {
455     my ($env,$borrowernumber)=@_;
456     my ($borrower, $flags) = getpatroninformation($env,$borrowernumber,0);
457     $env->{'todaysissues'}=1;
458     my ($borrowerissues) = currentissues($env, $borrower);
459     $env->{'nottodaysissues'}=1;
460     $env->{'todaysissues'}=0;
461     my ($borroweriss2)=currentissues($env, $borrower);
462     $env->{'nottodaysissues'}=0;
463     my $i=0;
464     my @issues;
465     foreach (sort {$a <=> $b} keys %$borrowerissues) {
466         $issues[$i]=$borrowerissues->{$_};
467         my $dd=$issues[$i]->{'date_due'};
468         #convert to nz style dates
469         #this should be set with some kinda config variable
470         my @tempdate=split(/-/,$dd);
471         $issues[$i]->{'date_due'}="$tempdate[2]/$tempdate[1]/$tempdate[0]";
472         $i++;
473     }
474     foreach (sort {$a <=> $b} keys %$borroweriss2) {
475         $issues[$i]=$borroweriss2->{$_};
476         my $dd=$issues[$i]->{'date_due'};
477         #convert to nz style dates
478         #this should be set with some kinda config variable
479         my @tempdate=split(/-/,$dd);
480         $issues[$i]->{'date_due'}="$tempdate[2]/$tempdate[1]/$tempdate[0]";
481         $i++;
482     }
483     remoteprint($env,\@issues,$borrower);
484 }
485
486 # Local Variables:
487 # tab-width: 8
488 # End: