Changing CanBookBeRenewed to pass back the reason a renewal cannot proceed
[koha.git] / members / readingrec.pl
blob677d985b6a2828d054313a35b169881c457304ff
1 #!/usr/bin/perl
3 # written 27/01/2000
4 # script to display borrowers reading record
6 # Copyright 2000-2002 Katipo Communications
8 # This file is part of Koha.
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.
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.
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
23 use strict;
24 use C4::Auth;
25 use C4::Output;
26 use CGI;
27 use C4::Members;
29 use C4::Dates qw/format_date/;
30 my $input=new CGI;
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";
41 my $limit=$input->param('limit');
43 if ($limit){
44 if ($limit eq 'full'){
45 $limit=0;
48 else {
49 $limit=50;
51 my ($count,$issues)=GetAllIssues($borrowernumber,$order2,$limit);
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 });
62 my @loop_reading;
64 for (my $i=0;$i<$count;$i++){
65 my %line;
66 if($i%2){
67 $line{'toggle'} = 1;
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);
79 my $borrowercategory = GetBorrowercategory( $data->{'categorycode'} );
80 my $category_type = $borrowercategory->{'category_type'};
81 ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' );
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;