Bug 7598: make strings in acquisitions JavaScript translatable
[koha.git] / members / boraccount.pl
index 44db953..48e2620 100755 (executable)
@@ -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') {
@@ -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;