synch'ing 2.0.0 branch (RC4 tag) and head
[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 C4::Interface::CGI::Output;
29 use CGI;
30 use C4::Search;
31 use HTML::Template;
32 my $input=new CGI;
33
34
35 my $bornum=$input->param('bornum');
36 #get borrower details
37 my $data=borrdata('',$bornum);
38 my $order=$input->param('order');
39 my $order2=$order;
40 if ($order2 eq ''){
41   $order2="date_due desc";
42 }
43 my $limit=$input->param('limit');
44 if ($limit eq 'full'){
45   $limit=0;
46 } else {
47   $limit=50;
48 }
49 my ($count,$issues)=allissues($bornum,$order2,$limit);
50
51 my ($template, $loggedinuser, $cookie)
52 = get_template_and_user({template_name => "members/readingrec.tmpl",
53                                 query => $input,
54                                 type => "intranet",
55                                 authnotrequired => 0,
56                                 flagsrequired => {borrowers => 1},
57                                 debug => 1,
58                                 });
59
60 my @loop_reading;
61
62 for (my $i=0;$i<$count;$i++){
63         my %line;
64         $line{title}=$issues->[$i]->{'title'};
65         $line{author}=$issues->[$i]->{'author'};
66         $line{date_due}=$issues->[$i]->{'date_due'};
67         $line{returndate}=$issues->[$i]->{'returndate'};
68         $line{volumeddesc}=$issues->[$i]->{'volumeddesc'};
69         push(@loop_reading,\%line);
70 }
71
72 $template->param(title => $data->{'title'},
73                                                 initials => $data->{'initials'},
74                                                 surname => $data->{'surname'},
75                                                 bornum => $bornum,
76                                                 limit => $limit,
77                                                 firstname => $data->{'firstname'},
78                                                 cardnumber => $data->{'cardnumber'},
79                                                 showfulllink => ($count > 50),                                  
80                                                 loop_reading => \@loop_reading);
81 output_html_with_http_headers $input, $cookie, $template->output;
82
83
84