X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;ds=sidebyside;f=members%2Fboraccount.pl;h=44db953da51210760d6757b88817736baa249b07;hb=360e2f82e78d9205038f77a34a12b48c9f1630af;hp=b91684a3db3ee9d56a677a2224a329fa13b95782;hpb=d1cea14fae6525b7478548aa19108871395e198d;p=koha_fer diff --git a/members/boraccount.pl b/members/boraccount.pl index b91684a3db..44db953da5 100755 --- a/members/boraccount.pl +++ b/members/boraccount.pl @@ -32,6 +32,7 @@ use CGI; use C4::Members; use C4::Branch; use C4::Accounts; +use C4::Members::Attributes qw(GetBorrowerAttributes); my $input=new CGI; @@ -87,9 +88,6 @@ foreach my $accountline ( @{$accts}) { $accountline->{payment} = 1; $reverse_col = 1; } - if ($accountline->{accounttype} ne 'F' && $accountline->{accounttype} ne 'FU'){ - $accountline->{printtitle} = 1; - } } $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' ); @@ -97,15 +95,24 @@ $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' ); my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'}); $template->param( picture => 1 ) if $picture; +if (C4::Context->preference('ExtendedPatronAttributes')) { + my $attributes = GetBorrowerAttributes($borrowernumber); + $template->param( + ExtendedPatronAttributes => 1, + extendedattributes => $attributes + ); +} + $template->param( finesview => 1, firstname => $data->{'firstname'}, surname => $data->{'surname'}, + othernames => $data->{'othernames'}, borrowernumber => $borrowernumber, cardnumber => $data->{'cardnumber'}, categorycode => $data->{'categorycode'}, category_type => $data->{'category_type'}, - categoryname => $data->{'description'}, + categoryname => $data->{'description'}, address => $data->{'address'}, address2 => $data->{'address2'}, city => $data->{'city'}, @@ -120,6 +127,8 @@ $template->param( totalcredit => $totalcredit, is_child => ($data->{'category_type'} eq 'C'), reverse_col => $reverse_col, - accounts => $accts ); + accounts => $accts, + activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), +); output_html_with_http_headers $input, $cookie, $template->output;