Bug 24152: (QA follow-up) Add tests for alternative from and to pars
[koha.git] / Koha / Account / Lines.pm
blobd593893924ebd0612ece0d198a8030a08ecdb209
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
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Carp;
22 use Koha::Database;
23 use Koha::Account::Line;
25 use base qw(Koha::Objects);
27 =head1 NAME
29 Koha::Account::Lines - Koha Account Line Object set class
31 =head1 API
33 =head2 Class Methods
35 =head3 total_outstanding
37 my $lines = Koha::Account::Lines->search({ ... });
38 my $total = $lines->total_outstanding;
40 Returns the sum of the outstanding amounts of the resultset. If the resultset is
41 empty it returns 0.
43 =cut
45 sub total_outstanding {
46 my ($self) = @_;
48 my $me = $self->_resultset()->current_source_alias . ".";
49 my $lines = $self->search(
50 {},
52 select => [ { sum => $me.'amountoutstanding' } ],
53 as => ['total_amountoutstanding'],
57 return $lines->count
58 ? $lines->next->get_column('total_amountoutstanding') + 0
59 : 0;
62 =head3 total
64 my $lines = Koha::Account::Lines->search({ ... });
65 my $total = $lines->total;
67 Returns the sum of the amounts of the resultset. If the resultset is
68 empty it returns 0.
70 =cut
72 sub total {
73 my ( $self, $conditions ) = @_;
75 $conditions //= {};
76 my $me = $self->_resultset()->current_source_alias . ".";
77 my $lines = $self->search(
78 $conditions,
80 select => [ { sum => $me.'amount' } ],
81 as => ['total']
84 return $lines->count ? $lines->next->get_column('total') + 0 : 0;
87 =head3 credits_total
89 my $lines = Koha::Account::Lines->search({ ... });
90 my $credits_total = $lines->credits_total;
92 Returns the sum of the amounts of the resultset. If the resultset is
93 empty it returns 0.
95 =cut
97 sub credits_total {
98 my ( $self, $conditions ) = @_;
100 my $me = $self->_resultset()->current_source_alias . ".";
101 my $local_conditions = { $me.'amount' => { '<' => 0 } };
102 $conditions //= {};
103 my $merged_conditions = { %{$conditions}, %{$local_conditions} };
105 my $lines = $self->search(
106 $merged_conditions,
108 select => [ { sum => $me.'amount' } ],
109 as => ['total']
112 return $lines->count ? $lines->next->get_column('total') + 0 : 0;
115 =head3 debits_total
117 my $lines = Koha::Account::Lines->search({ ... });
118 my $debits_total = $lines->debits_total;
120 Returns the sum of the amounts of the resultset. If the resultset is
121 empty it returns 0.
123 =cut
125 sub debits_total {
126 my ( $self, $conditions ) = @_;
128 my $me = $self->_resultset()->current_source_alias . ".";
129 my $local_conditions = { $me.'amount' => { '>' => 0 } };
130 $conditions //= {};
131 my $merged_conditions = { %{$conditions}, %{$local_conditions} };
133 my $lines = $self->search(
134 $merged_conditions,
136 select => [ { sum => $me.'amount' } ],
137 as => ['total']
140 return $lines->count ? $lines->next->get_column('total') + 0 : 0;
143 =head2 Internal methods
145 =head3 _type
147 =cut
149 sub _type {
150 return 'Accountline';
153 sub object_class {
154 return 'Koha::Account::Line';