Head & rel_2_2 merged
[koha.git] / members / readingrec.pl
1 #!/usr/bin/perl
2
3 # written 27/01/2000
4 # script to display borrowers reading record
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA  02111-1307 USA
22
23 use strict;
24 use C4::Auth;
25 use C4::Output;
26 use C4::Interface::CGI::Output;
27 use CGI;
28 use C4::Members;
29 use HTML::Template;
30 use C4::Date;
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
44 if ($limit){
45     if ($limit eq 'full'){
46         $limit=0;
47     }
48
49 else {
50   $limit=50;
51 }
52 my ($count,$issues)=allissues($bornum,$order2,$limit);
53
54 my ($template, $loggedinuser, $cookie)
55 = get_template_and_user({template_name => "members/readingrec.tmpl",
56                                 query => $input,
57                                 type => "intranet",
58                                 authnotrequired => 0,
59                                 flagsrequired => {borrowers => 1},
60                                 debug => 1,
61                                 });
62
63 my @loop_reading;
64
65 for (my $i=0;$i<$count;$i++){
66         my %line;
67         if($i%2){
68                 $line{'toggle'} = 1;
69         }
70         $line{biblionumber}=$issues->[$i]->{'biblionumber'};
71         $line{title}=$issues->[$i]->{'title'};
72         $line{author}=$issues->[$i]->{'author'};
73         $line{classification} = $issues->[$i]->{'classification'};
74         $line{date_due}=format_date($issues->[$i]->{'date_due'});
75         $line{returndate}=format_date($issues->[$i]->{'returndate'});
76         $line{volumeddesc}=$issues->[$i]->{'volumeddesc'};
77         push(@loop_reading,\%line);
78 }
79
80 $template->param(
81                                                 biblionumber => $data->{'biblionumber'},
82                                                 title => $data->{'title'},
83                                                 initials => $data->{'initials'},
84                                                 surname => $data->{'surname'},
85                                                 bornum => $bornum,
86                                                 limit => $limit,
87                                                 firstname => $data->{'firstname'},
88                                                 cardnumber => $data->{'cardnumber'},
89                                                 showfulllink => ($count > 50),                                  
90                                                 loop_reading => \@loop_reading);
91 output_html_with_http_headers $input, $cookie, $template->output;
92
93
94