@@ -, +, @@ --- members/mancredit.pl | 1 + members/maninvoice.pl | 2 +- members/pay.pl | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) --- a/members/mancredit.pl +++ a/members/mancredit.pl @@ -109,6 +109,7 @@ if (C4::Context->preference('ExtendedPatronAttributes')) { is_child => ($data->{'category_type'} eq 'C'), activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), RoutingSerials => C4::Context->preference('RoutingSerials'), + finesview => 1, ); output_html_with_http_headers $input, $cookie, $template->output; } --- a/members/maninvoice.pl +++ a/members/maninvoice.pl @@ -39,7 +39,6 @@ my $flagsrequired = { borrowers => 1 }; my $borrowernumber=$input->param('borrowernumber'); - # get borrower details my $data=GetMember('borrowernumber'=>$borrowernumber); my $add=$input->param('add'); @@ -136,6 +135,7 @@ if (C4::Context->preference('ExtendedPatronAttributes')) { is_child => ($data->{'category_type'} eq 'C'), activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), RoutingSerials => C4::Context->preference('RoutingSerials'), + finesview => 1, ); output_html_with_http_headers $input, $cookie, $template->output; } --- a/members/pay.pl +++ a/members/pay.pl @@ -106,6 +106,7 @@ for (@names) { $template->param( activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), RoutingSerials => C4::Context->preference('RoutingSerials'), + finesview => 1, ); add_accounts_to_template(); --