Bug 20996: (follow-up) Fix merge problems
[koha.git] / Koha / Account / Lines.pm
blobfde90cd99cbbaaed20e150a5c4b89b8368d539b0
1 package Koha::Account::Lines;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 use Modern::Perl;
20 use Carp;
21 use List::Util qw( sum0 );
23 use Koha::Database;
24 use Koha::Account::Line;
26 use base qw(Koha::Objects);
28 =head1 NAME
30 Koha::Account::Lines - Koha Account Line Object set class
32 =head1 API
34 =head2 Class Methods
36 =head3 total_outstanding
38 my $lines = Koha::Account::Lines->search({ ... });
39 my $total = $lines->total_outstanding;
41 Returns the sum of the outstanding amounts of the resultset. If the resultset is
42 empty it returns 0.
44 =cut
46 sub total_outstanding {
47 my ( $self ) = @_;
49 my $total = sum0( $self->get_column('amountoutstanding') );
51 return $total;
54 =head2 Internal methods
56 =head3 _type
58 =cut
60 sub _type {
61 return 'Accountline';
64 sub object_class {
65 return 'Koha::Account::Line';