members subdir - Dates.pm integration and warnings fixes.
[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
29 use C4::Dates;
30 my $input=new CGI;
31
32
33 my $borrowernumber=$input->param('borrowernumber');
34 #get borrower details
35 my $data=GetMember($borrowernumber,'borrowernumber');
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
43 if ($limit){
44     if ($limit eq 'full'){
45         $limit=0;
46     }
47
48 else {
49   $limit=50;
50 }
51 my ($count,$issues)=GetAllIssues($borrowernumber,$order2,$limit);
52
53 my ($template, $loggedinuser, $cookie)
54 = get_template_and_user({template_name => "members/readingrec.tmpl",
55                                 query => $input,
56                                 type => "intranet",
57                                 authnotrequired => 0,
58                                 flagsrequired => {borrowers => 1},
59                                 debug => 1,
60                                 });
61
62 my @loop_reading;
63
64 for (my $i=0;$i<$count;$i++){
65         my %line;
66         if($i%2){
67                 $line{'toggle'} = 1;
68         }
69         $line{biblionumber}=$issues->[$i]->{'biblionumber'};
70         $line{title}=$issues->[$i]->{'title'};
71         $line{author}=$issues->[$i]->{'author'};
72         $line{classification} = $issues->[$i]->{'classification'};
73         $line{date_due}=format_date($issues->[$i]->{'date_due'});
74         $line{returndate}=format_date($issues->[$i]->{'returndate'});
75         $line{volumeddesc}=$issues->[$i]->{'volumeddesc'};
76         push(@loop_reading,\%line);
77 }
78
79         my $borrowercategory = GetBorrowercategory( $data->{'categorycode'} );
80         my $category_type = $borrowercategory->{'category_type'};
81         ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' );
82
83 $template->param(
84                                                 biblionumber => $data->{'biblionumber'},
85                                                 title => $data->{'title'},
86                                                 initials => $data->{'initials'},
87                                                 surname => $data->{'surname'},
88                                                 borrowernumber => $borrowernumber,
89                                                 limit => $limit,
90                                                 firstname => $data->{'firstname'},
91                                                 cardnumber => $data->{'cardnumber'},
92                                             categorycode => $data->{'categorycode'},
93                                             category_type => $data->{'category_type'},
94                                             category_description => $data->{'description'},
95                                             address => $data->{'address'},
96                                                 address2 => $data->{'address2'},
97                                             city => $data->{'city'},
98                                                 zipcode => $data->{'zipcode'},
99                                                 phone => $data->{'phone'},
100                                                 email => $data->{'email'},
101                                                 branchcode => $data->{'branchcode'},
102                                                 showfulllink => ($count > 50),                                  
103                                                 loop_reading => \@loop_reading);
104 output_html_with_http_headers $input, $cookie, $template->output;
105
106
107