Fehlende MetaSetup Dateien für Steuerzonenupdate
authorG. Richardson <information@kivitendo-premium.de>
Sun, 3 Aug 2014 23:55:15 +0000 (01:55 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Mon, 4 Aug 2014 15:31:42 +0000 (17:31 +0200)
SL/DB/MetaSetup/Invoice.pm
SL/DB/MetaSetup/PurchaseInvoice.pm
SL/DB/MetaSetup/TaxzoneChart.pm

index f024a75..b80cee7 100644 (file)
@@ -128,6 +128,11 @@ __PACKAGE__->meta->foreign_keys(
     class       => 'SL::DB::Invoice',
     key_columns => { storno_id => 'id' },
   },
+
+  taxzone => {
+    class       => 'SL::DB::TaxZone',
+    key_columns => { taxzone_id => 'id' },
+  },
 );
 
 1;
index d2d6004..6de5abd 100644 (file)
@@ -97,6 +97,11 @@ __PACKAGE__->meta->foreign_keys(
     key_columns => { storno_id => 'id' },
   },
 
+  taxzone => {
+    class       => 'SL::DB::TaxZone',
+    key_columns => { taxzone_id => 'id' },
+  },
+
   vendor => {
     class       => 'SL::DB::Vendor',
     key_columns => { vendor_id => 'id' },
index f0cd6dc..3bcdbce 100644 (file)
@@ -36,9 +36,12 @@ __PACKAGE__->meta->foreign_keys(
     class       => 'SL::DB::Chart',
     key_columns => { income_accno_id => 'id' },
   },
-);
 
-# __PACKAGE__->meta->initialize;
+  taxzone => {
+    class       => 'SL::DB::TaxZone',
+    key_columns => { taxzone_id => 'id' },
+  },
+);
 
 1;
 ;