View | Details | Raw Unified | Return to bug 14826
Collapse All | Expand All

(-)a/Koha/Account/Offset.pm (-2 / +2 lines)
Lines 31-41 Account offsets are used to track the changes in account lines Link Here
31
31
32
=head1 API
32
=head1 API
33
33
34
=head2 Class Methods
34
=head2 Internal methods
35
35
36
=cut
36
=cut
37
37
38
=head3 type
38
=head3 _type
39
39
40
=cut
40
=cut
41
41
(-)a/Koha/Account/Offsets.pm (-5 / +6 lines)
Lines 33-43 Account offsets track the changes made to the balance of account lines Link Here
33
33
34
=head1 API
34
=head1 API
35
35
36
=head2 Class Methods
36
=head2 Internal methods
37
37
38
=cut
38
=head3 _type
39
40
=head3 type
41
39
42
=cut
40
=cut
43
41
Lines 45-50 sub _type { Link Here
45
    return 'AccountOffset';
43
    return 'AccountOffset';
46
}
44
}
47
45
46
=head3 object_class
47
48
=cut
49
48
sub object_class {
50
sub object_class {
49
    return 'Koha::Account::Offset';
51
    return 'Koha::Account::Offset';
50
}
52
}
51
- 

Return to bug 14826