Steuerzonen und Buchungsgruppen bearbeiten
[kivitendo-erp.git] / SL / DB / TaxzoneChart.pm
index 540f49b..4eb0ea8 100644 (file)
@@ -6,10 +6,80 @@ package SL::DB::TaxzoneChart;
 use strict;
 
 use SL::DB::MetaSetup::TaxzoneChart;
+use SL::DB::Manager::TaxzoneChart;
+use SL::DB::MetaSetup::Buchungsgruppe;
 
 __PACKAGE__->meta->initialize;
 
 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
-__PACKAGE__->meta->make_manager_class;
+#__PACKAGE__->meta->make_manager_class;
+
+sub get_all_accounts_by_buchungsgruppen_id {
+  my ($self, $buchungsgruppen_id) = @_;
+
+  my $all_taxzonecharts = SL::DB::Manager::TaxzoneChart->get_all(where   => [ buchungsgruppen_id => $buchungsgruppen_id ],
+                                                                 sort_by => 'taxzone_id');
+
+  my %list = ();
+
+  #inventory_accno der Buchungsgruppe:
+  $list{inventory_accno} = SL::DB::Manager::Buchungsgruppe->find_by(id => $buchungsgruppen_id)->inventory_accno;
+  $list{inventory_accno_description} = SL::DB::Manager::Buchungsgruppe->find_by(id => $buchungsgruppen_id)->inventory_accno_description;
+
+  foreach my $taxzonechart (@{ $all_taxzonecharts }) {
+    $list{ $taxzonechart->taxzone_id }{taxzone_chart_id}          = $taxzonechart->id;
+    $list{ $taxzonechart->taxzone_id }{income_accno}              = $taxzonechart->get_income_accno;
+    $list{ $taxzonechart->taxzone_id }{expense_accno}             = $taxzonechart->get_expense_accno;
+    $list{ $taxzonechart->taxzone_id }{income_accno_id}           = $taxzonechart->income_accno_id;
+    $list{ $taxzonechart->taxzone_id }{expense_accno_id}          = $taxzonechart->expense_accno_id;
+    $list{ $taxzonechart->taxzone_id }{income_accno_description}  = $taxzonechart->get_income_accno_description;
+    $list{ $taxzonechart->taxzone_id }{expense_accno_description} = $taxzonechart->get_expense_accno_description;
+  }
+  return \%list;
+}
+
+sub get_all_accounts_by_taxzone_id {
+  my ($self, $taxzone_id) = @_;
+
+  my $all_taxzonecharts = SL::DB::Manager::TaxzoneChart->get_all(where => [ taxzone_id => $taxzone_id ]);
+
+  my %list = ();
+
+  foreach my $tzchart (@{ $all_taxzonecharts }) {
+    $list{ $tzchart->buchungsgruppen_id }{taxzone_chart_id}          = $tzchart->id;
+    $list{ $tzchart->buchungsgruppen_id }{income_accno}              = $tzchart->get_income_accno;
+    $list{ $tzchart->buchungsgruppen_id }{expense_accno}             = $tzchart->get_expense_accno;
+    $list{ $tzchart->buchungsgruppen_id }{income_accno_id}           = $tzchart->income_accno_id;
+    $list{ $tzchart->buchungsgruppen_id }{expense_accno_id}          = $tzchart->expense_accno_id;
+    $list{ $tzchart->buchungsgruppen_id }{income_accno_description}  = $tzchart->get_income_accno_description;
+    $list{ $tzchart->buchungsgruppen_id }{expense_accno_description} = $tzchart->get_expense_accno_description;
+  }
+
+  return \%list;
+}
+
+sub get_income_accno {
+  my $self = shift;
+  require SL::DB::Manager::Chart;
+  return SL::DB::Manager::Chart->find_by(id => $self->income_accno_id)->accno();
+}
+
+sub get_expense_accno {
+  my $self = shift;
+  require SL::DB::Manager::Chart;
+  return SL::DB::Manager::Chart->find_by(id => $self->expense_accno_id)->accno();
+}
+
+sub get_income_accno_description {
+  my $self = shift;
+  require SL::DB::Manager::Chart;
+  return SL::DB::Manager::Chart->find_by(id => $self->income_accno_id)->description();
+}
+
+sub get_expense_accno_description {
+  my $self = shift;
+  require SL::DB::Manager::Chart;
+  return SL::DB::Manager::Chart->find_by(id => $self->expense_accno_id)->description();
+}
 
 1;