french translation updated (again)
[koha.git] / members / readingrec.pl
index d41f2b9..86564bf 100755 (executable)
 use strict;
 use C4::Auth;
 use C4::Output;
-use C4::Interface::CGI::Output;
 use CGI;
 use C4::Members;
+use C4::Branch;
 
-use C4::Date;
+use C4::Dates qw/format_date/;
 my $input=new CGI;
 
 
@@ -43,7 +43,7 @@ my $limit=$input->param('limit');
 
 if ($limit){
     if ($limit eq 'full'){
-       $limit=0;
+               $limit=0;
     }
 } 
 else {
@@ -77,7 +77,16 @@ for (my $i=0;$i<$count;$i++){
        push(@loop_reading,\%line);
 }
 
+$template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
+if (! $limit){ 
+       $limit = 'full'; 
+}
+
+my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
+$template->param( picture => 1 ) if $picture;
+
 $template->param(
+                                               readingrecordview => 1,
                                                biblionumber => $data->{'biblionumber'},
                                                title => $data->{'title'},
                                                initials => $data->{'initials'},
@@ -86,6 +95,18 @@ $template->param(
                                                limit => $limit,
                                                firstname => $data->{'firstname'},
                                                cardnumber => $data->{'cardnumber'},
+                                           categorycode => $data->{'categorycode'},
+                                           category_type => $data->{'category_type'},
+                                          # category_description => $data->{'description'},
+                                           categoryname        => $data->{'description'},
+                                           address => $data->{'address'},
+                                               address2 => $data->{'address2'},
+                                           city => $data->{'city'},
+                                               zipcode => $data->{'zipcode'},
+                                               phone => $data->{'phone'},
+                                               email => $data->{'email'},
+                                               branchcode => $data->{'branchcode'},
+                                               branchname => GetBranchName($data->{'branchcode'}),
                                                showfulllink => ($count > 50),                                  
                                                loop_reading => \@loop_reading);
 output_html_with_http_headers $input, $cookie, $template->output;