]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/MetaSetup/Vendor.pm
Task-Server: Mandantenfähigkeit
[mfinanz.git] / SL / DB / MetaSetup / Vendor.pm
index 8367137a351ade37efc9a71ec591f5117371ef7c..54e9d07b564278c1c4c84b91e6164b7a775b76f6 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Vendor;
 
 use strict;
 
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('vendor');
 
 
 __PACKAGE__->meta->table('vendor');
 
@@ -46,8 +46,7 @@ __PACKAGE__->meta->columns(
   street           => { type => 'text' },
   taxincluded      => { type => 'boolean' },
   taxnumber        => { type => 'text' },
   street           => { type => 'text' },
   taxincluded      => { type => 'boolean' },
   taxnumber        => { type => 'text' },
-  taxzone_id       => { type => 'integer', default => '0', not_null => 1 },
-  terms            => { type => 'integer', default => '0' },
+  taxzone_id       => { type => 'integer', not_null => 1 },
   user_password    => { type => 'text' },
   username         => { type => 'text' },
   ustid            => { type => 'text' },
   user_password    => { type => 'text' },
   username         => { type => 'text' },
   ustid            => { type => 'text' },
@@ -85,6 +84,11 @@ __PACKAGE__->meta->foreign_keys(
     class       => 'SL::DB::PaymentTerm',
     key_columns => { payment_id => 'id' },
   },
     class       => 'SL::DB::PaymentTerm',
     key_columns => { payment_id => 'id' },
   },
+
+  taxzone => {
+    class       => 'SL::DB::TaxZone',
+    key_columns => { taxzone_id => 'id' },
+  },
 );
 
 1;
 );
 
 1;