@@ -, +, @@ ->pay - Try all the possible options, specially selecting things to pay for (not - Check on the DB, that the accountlines for the patron you're playin $ sudo koha-mysql kohadev > SELECT * FROM accountlines WHERE borrowernumber=; - SIgn off :-D --- members/paycollect.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/members/paycollect.pl +++ a/members/paycollect.pl @@ -156,6 +156,7 @@ if ( $total_paid and $total_paid ne '0.00' ) { { type => $type, amount => $total_paid, + library_id => $branch, lines => \@lines, note => $note, payment_type => $payment_type, @@ -167,6 +168,7 @@ if ( $total_paid and $total_paid ne '0.00' ) { Koha::Account->new( { patron_id => $borrowernumber } )->pay( { amount => $total_paid, + library_id => $branch, note => $note, payment_type => $payment_type, } --