X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=members%2Fmancredit.pl;h=88200d0e20b6a99b4010f65d3a2007391119e3fb;hb=612b12f41ba59a6508fcbf306be66455a6f0012b;hp=ae41b5776a364007b94d33c2b347e100f6b2834c;hpb=8f21144fb154b68747d004eecca53fe84a020f22;p=srvgit diff --git a/members/mancredit.pl b/members/mancredit.pl index ae41b5776a..88200d0e20 100755 --- a/members/mancredit.pl +++ b/members/mancredit.pl @@ -33,6 +33,7 @@ use C4::Members; use C4::Branch; use C4::Accounts; use C4::Items; +use C4::Members::Attributes qw(GetBorrowerAttributes); my $input=new CGI; @@ -77,6 +78,14 @@ if ($add){ $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( borrowernumber => $borrowernumber, @@ -97,6 +106,7 @@ if ($add){ branchcode => $data->{'branchcode'}, branchname => GetBranchName($data->{'branchcode'}), is_child => ($data->{'category_type'} eq 'C'), + activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), ); output_html_with_http_headers $input, $cookie, $template->output; }