@@ -, +, @@ - Apply the patch - Have some outstanding credit - Create a manual invoice - Set AccountAutoReconcile - Create a manual invoice - Sign off :-D --- members/maninvoice.pl | 5 +++++ 1 file changed, 5 insertions(+) --- a/members/maninvoice.pl +++ a/members/maninvoice.pl @@ -87,6 +87,11 @@ if ($add){ $template->param( 'ERROR' => $error ); output_html_with_http_headers $input, $cookie, $template->output; } else { + + if ( C4::Context->preference('AccountAutoReconcile') ) { + $patron->account->reconcile_balance; + } + print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"); exit; } --