fix that i had forgotten to template for $op=delete_confirm
[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::Output;
27 use CGI;
28 use C4::Search;
29 use HTML::Template;
30 my $input=new CGI;
31
32
33 my $bornum=$input->param('bornum');
34 #get borrower details
35 my $data=borrdata('',$bornum);
36 my $order=$input->param('order');
37 my $order2=$order;
38 if ($order2 eq ''){
39   $order2="date_due desc";
40 }
41 my $limit=$input->param('limit');
42 if ($limit eq 'full'){
43   $limit=0;
44 } else {
45   $limit=50;
46 }
47 my ($count,$issues)=allissues($bornum,$order2,$limit);
48
49
50 #print $input->header;
51 #print startpage();
52 #print startmenu('member');
53 my $template = gettemplate("members/readingrec.tmpl");
54
55 my @loop_reading;
56
57 for (my $i=0;$i<$count;$i++){
58         my %line;
59         $line{title}=$issues->[$i]->{'title'};
60         $line{author}=$issues->[$i]->{'author'};
61         $line{returndate}=$issues->[$i]->{'returndate'};
62         $line{volumeddesc}=$issues->[$i]->{'volumeddesc'};
63         push(@loop_reading,\%line);
64 }
65 $template->param(title => $data->{'title'},
66                                                 initials => $data->{'initials'},
67                                                 surname => $data->{'surname'},
68                                                 bornum => $bornum,
69                                                 limit => $limit,
70                                                 loop_reading => \@loop_reading);
71 print "Content-Type: text/html\n\n", $template->output;
72
73
74