DB Code für Buchungsgruppe und TaxzoneChart aufgeräumt
[kivitendo-erp.git] / SL / DB / Buchungsgruppe.pm
1 package SL::DB::Buchungsgruppe;
2
3 use strict;
4
5 use SL::DB::MetaSetup::Buchungsgruppe;
6 use SL::DB::Manager::Buchungsgruppe;
7 use SL::DB::Helper::ActsAsList;
8
9 __PACKAGE__->meta->add_relationship(
10   inventory_account => {
11     type          => 'many to one',
12     class         => 'SL::DB::Chart',
13     column_map    => { inventory_accno_id => 'id' },
14   },
15 );
16
17 __PACKAGE__->meta->initialize;
18
19 sub validate {
20   my ($self) = @_;
21
22   my @errors;
23   push @errors, $::locale->text('The description is missing.') if !$self->description;
24
25   return @errors;
26 }
27
28 sub income_accno_id {
29   my ($self, $taxzone) = @_;
30
31   require SL::DB::TaxZone;
32   require SL::DB::TaxzoneChart;
33
34   my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
35   my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
36   return $taxzone_chart->income_accno_id if $taxzone_chart;
37 }
38
39 sub expense_accno_id {
40   my ($self, $taxzone) = @_;
41   require SL::DB::TaxZone;
42   require SL::DB::TaxzoneChart;
43
44   my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
45   my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
46   return $taxzone_chart->expense_accno_id if $taxzone_chart;
47 }
48
49 sub income_account {
50   my ($self, $taxzone) = @_;
51
52   require SL::DB::TaxZone;
53   require SL::DB::TaxzoneChart;
54
55   my $taxzone_id       = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
56   my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
57   return $taxzone_chart->income_accno if $taxzone_chart;
58 }
59
60 sub expense_account {
61   my ($self, $taxzone) = @_;
62
63   require SL::DB::TaxZone;
64   require SL::DB::TaxzoneChart;
65
66   my $taxzone_id       = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
67   my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
68   return $taxzone_chart->expense_accno if $taxzone_chart;
69 }
70
71 sub taxzonecharts {
72   my ($self) = @_;
73   return SL::DB::Manager::TaxzoneChart->get_all(where => [ buchungsgruppen_id => $self->id ]);
74 }
75
76 1;
77 __END__
78
79 =pod
80
81 =encoding utf8
82
83 =head1 NAME
84
85 SL::DB::Buchungsgruppe - RDBO wrapper for the C<buchungsgruppen> table
86
87 =head1 FUNCTIONS
88
89 =over 4
90
91 =item C<expense_accno_id $taxzone>
92
93 Return the chart ID for the expense account for the given taxzone
94 (either the DB id or an instance of L<SL::DB::TaxZone>).
95
96 =item C<expense_account>
97
98 Return the chart (an instance of L<SL::DB::Chart>) for the expense
99 account for the given taxzone (either the DB id or an instance of
100 L<SL::DB::TaxZone>).
101
102 =item C<income_accno_id>
103
104 Return the chart ID for the income account for the given taxzone
105 (either the DB id or an instance of L<SL::DB::TaxZone>).
106 L<SL::DB::TaxZone>).
107
108 =item C<income_account>
109
110 Return the chart (an instance of L<SL::DB::Chart>) for the income
111 account for the given taxzone (either the DB id or an instance of
112 L<SL::DB::TaxZone>).
113
114 =back
115
116 =head1 BUGS
117
118 Nothing here yet.
119
120 =head1 AUTHOR
121
122 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>,
123 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
124
125 =cut