bug 2504: switch version number in HEAD to 3.1
[koha_fer] / members / readingrec.pl
index 5d737d1..2809129 100755 (executable)
@@ -77,9 +77,14 @@ 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' );
+if ( $data->{'category_type'} eq 'C') {
+    my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
+    my $cnt = scalar(@$catcodes);
+    $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
+    $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
+}
+
+$template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
 if (! $limit){ 
        $limit = 'full'; 
 }
@@ -108,6 +113,7 @@ $template->param(
                                                phone => $data->{'phone'},
                                                email => $data->{'email'},
                                                branchcode => $data->{'branchcode'},
+                                               is_child        => ($data->{'category_type'} eq 'C'),
                                                branchname => GetBranchName($data->{'branchcode'}),
                                                showfulllink => ($count > 50),                                  
                                                loop_reading => \@loop_reading);