X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDB%2FBuchungsgruppe.pm;h=bac0f7bcbee6a02d6e70b15dd56478c4948dbea0;hb=f5c454e3855012bdb1928f3e4c4964403d4d8163;hp=2dffaa5a971cfd150073f61ab2961a017fe8e261;hpb=f9676efea9ccfa01df2a57dca9c45cc8fde0d09e;p=kivitendo-erp.git diff --git a/SL/DB/Buchungsgruppe.pm b/SL/DB/Buchungsgruppe.pm index 2dffaa5a9..bac0f7bcb 100644 --- a/SL/DB/Buchungsgruppe.pm +++ b/SL/DB/Buchungsgruppe.pm @@ -1,13 +1,123 @@ -# This file has been auto-generated only because it didn't exist. -# Feel free to modify it at will; it will not be overwritten automatically. - package SL::DB::Buchungsgruppe; use strict; use SL::DB::MetaSetup::Buchungsgruppe; +use SL::DB::Manager::Buchungsgruppe; +use SL::DB::Helper::ActsAsList; + +__PACKAGE__->meta->add_relationship( + inventory_account => { + type => 'many to one', + class => 'SL::DB::Chart', + column_map => { inventory_accno_id => 'id' }, + }, +); + +__PACKAGE__->meta->initialize; + +sub validate { + my ($self) = @_; + + my @errors; + push @errors, $::locale->text('The description is missing.') if !$self->description; + + return @errors; +} + +sub inventory_accno { + my ($self) = @_; + require SL::DB::Manager::Chart; + return SL::DB::Manager::Chart->find_by(id => $self->inventory_accno_id) ? SL::DB::Manager::Chart->find_by(id => $self->inventory_accno_id)->accno() : undef; +} + +sub inventory_accno_description { + my ($self) = @_; + require SL::DB::Manager::Chart; + return SL::DB::Manager::Chart->find_by(id => $self->inventory_accno_id) ? SL::DB::Manager::Chart->find_by(id => $self->inventory_accno_id)->description() : undef; +} -# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. -__PACKAGE__->meta->make_manager_class; +sub income_accno_id { + my ($self, $taxzone) = @_; + my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone; + my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id); + return $taxzone_chart->income_accno_id if $taxzone_chart; +} + +sub expense_accno_id { + my ($self, $taxzone) = @_; + my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone; + my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id); + return $taxzone_chart->expense_accno_id if $taxzone_chart; +} + +sub income_account { + my ($self, $taxzone) = @_; + my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone; + my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id); + return $taxzone_chart->income_accno if $taxzone_chart; +} + +sub expense_account { + my ($self, $taxzone) = @_; + my $taxzone_id = ref $taxzone && $taxzone->isa('SL::DB::TaxZone') ? $taxzone->id : $taxzone; + my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by(taxzone_id => $taxzone_id, buchungsgruppen_id => $self->id); + return $taxzone_chart->expense_accno if $taxzone_chart; +} + +sub taxzonecharts { + my ($self) = @_; + return SL::DB::Manager::TaxzoneChart->get_all(where => [ buchungsgruppen_id => $self->id ]); +} 1; +__END__ + +=pod + +=encoding utf8 + +=head1 NAME + +SL::DB::Buchungsgruppe - RDBO wrapper for the C table + +=head1 FUNCTIONS + +=over 4 + +=item C + +Return the chart ID for the expense account for the given taxzone +(either an integer between 0 and 3 inclusively or an instance of +L). + +=item C + +Return the chart (an instance of L) for the expense +account for the given taxzone (either an integer between 0 and 3 +inclusively or an instance of L). + +=item C + +Return the chart ID for the income account for the given taxzone +(either an integer between 0 and 3 inclusively or an instance of +L). + +=item C + +Return the chart (an instance of L) for the income +account for the given taxzone (either an integer between 0 and 3 +inclusively or an instance of L). + +=back + +=head1 BUGS + +Nothing here yet. + +=head1 AUTHOR + +Sven Schöling Es.schoeling@linet-services.deE, +Moritz Bunkus Em.bunkus@linet-services.deE + +=cut