]> wagnertech.de Git - kivitendo-erp.git/commitdiff
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 f024a75e838ed2b2da350281e3e8c2f4bb217f1b..b80cee70aa0b28c801b8adb43974ef21be1f8fb1 100644 (file)
@@ -128,6 +128,11 @@ __PACKAGE__->meta->foreign_keys(
     class       => 'SL::DB::Invoice',
     key_columns => { storno_id => 'id' },
   },
     class       => 'SL::DB::Invoice',
     key_columns => { storno_id => 'id' },
   },
+
+  taxzone => {
+    class       => 'SL::DB::TaxZone',
+    key_columns => { taxzone_id => 'id' },
+  },
 );
 
 1;
 );
 
 1;
index d2d60043e7e1697a78d0f9889bf3f4d6466f7088..6de5abd2a4021cb7ec329394c95b5de009a5ef06 100644 (file)
@@ -97,6 +97,11 @@ __PACKAGE__->meta->foreign_keys(
     key_columns => { storno_id => 'id' },
   },
 
     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' },
   vendor => {
     class       => 'SL::DB::Vendor',
     key_columns => { vendor_id => 'id' },
index f0cd6dcf1cc8fbcd363d67d894b907bcf1d19ee1..3bcdbceee8505b468f010360e5e9a0ed1c8e8827 100644 (file)
@@ -36,9 +36,12 @@ __PACKAGE__->meta->foreign_keys(
     class       => 'SL::DB::Chart',
     key_columns => { income_accno_id => 'id' },
   },
     class       => 'SL::DB::Chart',
     key_columns => { income_accno_id => 'id' },
   },
-);
 
 
-# __PACKAGE__->meta->initialize;
+  taxzone => {
+    class       => 'SL::DB::TaxZone',
+    key_columns => { taxzone_id => 'id' },
+  },
+);
 
 1;
 ;
 
 1;
 ;