french translation updated (again)
[koha.git] / members / readingrec.pl
index 10e8919..86564bf 100755 (executable)
@@ -25,8 +25,9 @@ use C4::Auth;
 use C4::Output;
 use CGI;
 use C4::Members;
+use C4::Branch;
 
-use C4::Dates;
+use C4::Dates qw/format_date/;
 my $input=new CGI;
 
 
@@ -42,7 +43,7 @@ my $limit=$input->param('limit');
 
 if ($limit){
     if ($limit eq 'full'){
-       $limit=0;
+               $limit=0;
     }
 } 
 else {
@@ -76,11 +77,16 @@ for (my $i=0;$i<$count;$i++){
        push(@loop_reading,\%line);
 }
 
-       my $borrowercategory = GetBorrowercategory( $data->{'categorycode'} );
-       my $category_type = $borrowercategory->{'category_type'};
-       ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' );
+$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'},
@@ -91,7 +97,8 @@ $template->param(
                                                cardnumber => $data->{'cardnumber'},
                                            categorycode => $data->{'categorycode'},
                                            category_type => $data->{'category_type'},
-                                           category_description => $data->{'description'},
+                                          # category_description => $data->{'description'},
+                                           categoryname        => $data->{'description'},
                                            address => $data->{'address'},
                                                address2 => $data->{'address2'},
                                            city => $data->{'city'},
@@ -99,6 +106,7 @@ $template->param(
                                                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;