road to 1.3.3 releasing...
[koha.git] / readingrec.pl
1 #!/usr/bin/perl
2
3 #written 27/01/2000
4 #script to display borrowers reading record
5
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 C4::Auth;
27 use C4::Output;
28 use CGI;
29 use C4::Search;
30 use HTML::Template;
31 my $input=new CGI;
32
33
34 my $bornum=$input->param('bornum');
35 #get borrower details
36 my $data=borrdata('',$bornum);
37 my $order=$input->param('order');
38 my $order2=$order;
39 if ($order2 eq ''){
40   $order2="date_due desc";
41 }
42 my $limit=$input->param('limit');
43 if ($limit eq 'full'){
44   $limit=0;
45 } else {
46   $limit=50;
47 }
48 my ($count,$issues)=allissues($bornum,$order2,$limit);
49
50 my ($template, $loggedinuser, $cookie)
51 = get_template_and_user({template_name => "members/readingrec.tmpl",
52                                 query => $input,
53                                 type => "intranet",
54                                 authnotrequired => 0,
55                                 flagsrequired => {borrowers => 1},
56                                 debug => 1,
57                                 });
58
59 my @loop_reading;
60
61 for (my $i=0;$i<$count;$i++){
62         my %line;
63         $line{title}=$issues->[$i]->{'title'};
64         $line{author}=$issues->[$i]->{'author'};
65         $line{returndate}=$issues->[$i]->{'returndate'};
66         $line{volumeddesc}=$issues->[$i]->{'volumeddesc'};
67         push(@loop_reading,\%line);
68 }
69 $template->param(title => $data->{'title'},
70                                                 initials => $data->{'initials'},
71                                                 surname => $data->{'surname'},
72                                                 bornum => $bornum,
73                                                 limit => $limit,
74                                                 loop_reading => \@loop_reading);
75 print $input->header(-cookie => $cookie),$template->output;
76
77
78