1 package SL::DB::Buchungsgruppe;
5 use SL::DB::MetaSetup::Buchungsgruppe;
6 use SL::DB::Manager::Buchungsgruppe;
7 use SL::DB::Helper::ActsAsList;
9 __PACKAGE__->meta->initialize;
11 sub inventory_account { goto &inventory_accno; }
17 push @errors, $::locale->text('The description is missing.') if !$self->description;
18 if( $self->inventory_accno_id ) {
19 require SL::DB::Chart;
20 my $inventory_accno = SL::DB::Manager::Chart->find_by( id => $self->inventory_accno_id );
21 push(@errors, $::locale->text('Booking group #1 needs a valid inventory account', $self->description)) unless $inventory_accno;
23 push @errors, $::locale->text('The booking group needs an inventory account.');
30 my ($self, $taxzone) = @_;
32 require SL::DB::TaxZone;
33 require SL::DB::TaxzoneChart;
35 my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
36 my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
37 return $taxzone_chart->income_accno_id if $taxzone_chart;
40 sub expense_accno_id {
41 my ($self, $taxzone) = @_;
42 require SL::DB::TaxZone;
43 require SL::DB::TaxzoneChart;
45 my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
46 my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
47 return $taxzone_chart->expense_accno_id if $taxzone_chart;
51 my ($self, $taxzone) = @_;
53 require SL::DB::TaxZone;
54 require SL::DB::TaxzoneChart;
56 my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
57 my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
58 return $taxzone_chart->income_accno if $taxzone_chart;
62 my ($self, $taxzone) = @_;
64 require SL::DB::TaxZone;
65 require SL::DB::TaxzoneChart;
67 my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone;
68 my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id);
69 return $taxzone_chart->expense_accno if $taxzone_chart;
74 return SL::DB::Manager::TaxzoneChart->get_all(where => [ buchungsgruppen_id => $self->id ]);
79 die 'not an accessor' if @_ > 1;
82 return 0 if SL::DB::Manager::Part->get_all_count(query => [ buchungsgruppen_id => $self->id ]);
95 SL::DB::Buchungsgruppe - RDBO wrapper for the C<buchungsgruppen> table
101 =item C<expense_accno_id $taxzone>
103 Return the chart ID for the expense account for the given taxzone
104 (either the DB id or an instance of L<SL::DB::TaxZone>).
106 =item C<expense_account>
108 Return the chart (an instance of L<SL::DB::Chart>) for the expense
109 account for the given taxzone (either the DB id or an instance of
112 =item C<income_accno_id>
114 Return the chart ID for the income account for the given taxzone
115 (either the DB id or an instance of L<SL::DB::TaxZone>).
118 =item C<income_account>
120 Return the chart (an instance of L<SL::DB::Chart>) for the income
121 account for the given taxzone (either the DB id or an instance of
126 Checks whether this Buchungsgruppe is assigned to any parts.
136 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>,
137 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>