X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=members%2Fboraccount.pl;h=518aa3c01da2243091a72d7f6ca55fd76213841f;hb=5d6c092921919526ade501facb1220f8a108a08f;hp=44db953da51210760d6757b88817736baa249b07;hpb=5baff558a53fabb7b719bf627064cf2c1680f246;p=koha_fer diff --git a/members/boraccount.pl b/members/boraccount.pl index 44db953da5..518aa3c01d 100755 --- a/members/boraccount.pl +++ b/members/boraccount.pl @@ -42,7 +42,7 @@ my ($template, $loggedinuser, $cookie) query => $input, type => "intranet", authnotrequired => 0, - flagsrequired => {borrowers => 1, updatecharges => 1}, + flagsrequired => {borrowers => 1, updatecharges => 'remaining_permissions'}, debug => 1, }); @@ -53,7 +53,7 @@ my $action = $input->param('action') || ''; my $data=GetMember('borrowernumber' => $borrowernumber); if ( $action eq 'reverse' ) { - ReversePayment( $borrowernumber, $input->param('accountno') ); + ReversePayment( $input->param('accountlines_id') ); } if ( $data->{'category_type'} eq 'C') { @@ -84,7 +84,7 @@ foreach my $accountline ( @{$accts}) { $accountline->{date} = format_date($accountline->{date}); $accountline->{amount} = sprintf '%.2f', $accountline->{amount}; $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding}; - if ($accountline->{accounttype} eq 'Pay') { + if ($accountline->{accounttype} =~ /^Pay/) { $accountline->{payment} = 1; $reverse_col = 1; } @@ -92,7 +92,7 @@ foreach my $accountline ( @{$accts}) { $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' ); -my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'}); +my ($picture, $dberror) = GetPatronImage($data->{'borrowernumber'}); $template->param( picture => 1 ) if $picture; if (C4::Context->preference('ExtendedPatronAttributes')) { @@ -129,6 +129,7 @@ $template->param( reverse_col => $reverse_col, accounts => $accts, activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), + RoutingSerials => C4::Context->preference('RoutingSerials'), ); output_html_with_http_headers $input, $cookie, $template->output;