Small template cleanup: display library name and cat description instead of codes
[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 CGI;
27 use C4::Members;
28 use C4::Branch;
29
30 use C4::Dates qw/format_date/;
31 my $input=new CGI;
32
33
34 my $borrowernumber=$input->param('borrowernumber');
35 #get borrower details
36 my $data=GetMember($borrowernumber,'borrowernumber');
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)=GetAllIssues($borrowernumber,$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         my $borrowercategory = GetBorrowercategory( $data->{'categorycode'} );
81         my $category_type = $borrowercategory->{'category_type'};
82         ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' );
83 if (! $limit){ 
84         $limit = 'full'; 
85 }
86
87 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
88 $template->param( picture => 1 ) if $picture;
89
90 $template->param(
91                                                 readingrecordview => 1,
92                                                 biblionumber => $data->{'biblionumber'},
93                                                 title => $data->{'title'},
94                                                 initials => $data->{'initials'},
95                                                 surname => $data->{'surname'},
96                                                 borrowernumber => $borrowernumber,
97                                                 limit => $limit,
98                                                 firstname => $data->{'firstname'},
99                                                 cardnumber => $data->{'cardnumber'},
100                                             categorycode => $data->{'categorycode'},
101                                             category_type => $data->{'category_type'},
102                                            # category_description => $data->{'description'},
103                                             categoryname        => $data->{'description'},
104                                             address => $data->{'address'},
105                                                 address2 => $data->{'address2'},
106                                             city => $data->{'city'},
107                                                 zipcode => $data->{'zipcode'},
108                                                 phone => $data->{'phone'},
109                                                 email => $data->{'email'},
110                                                 branchcode => $data->{'branchcode'},
111                                                 branchname => GetBranchName($data->{'branchcode'}),
112                                                 showfulllink => ($count > 50),                                  
113                                                 loop_reading => \@loop_reading);
114 output_html_with_http_headers $input, $cookie, $template->output;
115
116
117