@@ -, +, @@ --- Koha/Account.pm | 10 ++++++++++ 1 file changed, 10 insertions(+) --- a/Koha/Account.pm +++ a/Koha/Account.pm @@ -423,6 +423,11 @@ sub balance { my $lines = Koha::Account->new({ patron_id => $patron_id })->outstanding_debits; +It returns the debit lines with outstanding amounts for the patron. + +In scalar context, it returns a Koha::Account::Lines iterator. In list context, it will +return a list of Koha::Account::Line objects. + =cut sub outstanding_debits { @@ -439,6 +444,11 @@ sub outstanding_debits { my $lines = Koha::Account->new({ patron_id => $patron_id })->outstanding_credits; +It returns the credit lines with outstanding amounts for the patron. + +In scalar context, it returns a Koha::Account::Lines iterator. In list context, it will +return a list of Koha::Account::Line objects. + =cut sub outstanding_credits { --