MetaSetup neu generiert
[kivitendo-erp.git] / SL / DB / MetaSetup / DeliveryOrder.pm
index 86cdc64..0877f90 100644 (file)
@@ -6,98 +6,73 @@ use strict;
 
 use base qw(SL::DB::Object);
 
-__PACKAGE__->meta->setup(
-  table   => 'delivery_orders',
-
-  columns => [
-    id                      => { type => 'integer', not_null => 1, sequence => 'id' },
-    donumber                => { type => 'text', not_null => 1 },
-    ordnumber               => { type => 'text' },
-    transdate               => { type => 'date', default => 'now()' },
-    vendor_id               => { type => 'integer' },
-    customer_id             => { type => 'integer' },
-    reqdate                 => { type => 'date' },
-    shippingpoint           => { type => 'text' },
-    notes                   => { type => 'text' },
-    intnotes                => { type => 'text' },
-    employee_id             => { type => 'integer' },
-    closed                  => { type => 'boolean', default => 'false' },
-    delivered               => { type => 'boolean', default => 'false' },
-    cusordnumber            => { type => 'text' },
-    oreqnumber              => { type => 'text' },
-    department_id           => { type => 'integer' },
-    shipvia                 => { type => 'text' },
-    cp_id                   => { type => 'integer' },
-    language_id             => { type => 'integer' },
-    shipto_id               => { type => 'integer' },
-    globalproject_id        => { type => 'integer' },
-    salesman_id             => { type => 'integer' },
-    transaction_description => { type => 'text' },
-    is_sales                => { type => 'boolean' },
-    itime                   => { type => 'timestamp', default => 'now()' },
-    mtime                   => { type => 'timestamp' },
-    taxzone_id              => { type => 'integer' },
-    taxincluded             => { type => 'boolean' },
-    terms                   => { type => 'integer' },
-    currency_id             => { type => 'integer', not_null => 1 },
-  ],
-
-  primary_key_columns => [ 'id' ],
-
-  allow_inline_column_values => 1,
-
-  foreign_keys => [
-    contact => {
-      class       => 'SL::DB::Contact',
-      key_columns => { cp_id => 'cp_id' },
-    },
-
-    currency => {
-      class       => 'SL::DB::Currency',
-      key_columns => { currency_id => 'id' },
-    },
-
-    customer => {
-      class       => 'SL::DB::Customer',
-      key_columns => { customer_id => 'id' },
-    },
+__PACKAGE__->meta->table('delivery_orders');
+
+__PACKAGE__->meta->columns(
+  id                      => { type => 'integer', not_null => 1, sequence => 'id' },
+  donumber                => { type => 'text', not_null => 1 },
+  ordnumber               => { type => 'text' },
+  transdate               => { type => 'date', default => 'now()' },
+  vendor_id               => { type => 'integer' },
+  customer_id             => { type => 'integer' },
+  reqdate                 => { type => 'date' },
+  shippingpoint           => { type => 'text' },
+  notes                   => { type => 'text' },
+  intnotes                => { type => 'text' },
+  employee_id             => { type => 'integer' },
+  closed                  => { type => 'boolean', default => 'false' },
+  delivered               => { type => 'boolean', default => 'false' },
+  cusordnumber            => { type => 'text' },
+  oreqnumber              => { type => 'text' },
+  department_id           => { type => 'integer' },
+  shipvia                 => { type => 'text' },
+  cp_id                   => { type => 'integer' },
+  language_id             => { type => 'integer' },
+  shipto_id               => { type => 'integer' },
+  globalproject_id        => { type => 'integer' },
+  salesman_id             => { type => 'integer' },
+  transaction_description => { type => 'text' },
+  is_sales                => { type => 'boolean' },
+  itime                   => { type => 'timestamp', default => 'now()' },
+  mtime                   => { type => 'timestamp' },
+  taxzone_id              => { type => 'integer' },
+  taxincluded             => { type => 'boolean' },
+  terms                   => { type => 'integer' },
+  currency_id             => { type => 'integer', not_null => 1 },
+);
 
-    department => {
-      class       => 'SL::DB::Department',
-      key_columns => { department_id => 'id' },
-    },
+__PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-    employee => {
-      class       => 'SL::DB::Employee',
-      key_columns => { employee_id => 'id' },
-    },
+__PACKAGE__->meta->allow_inline_column_values(1);
 
-    globalproject => {
-      class       => 'SL::DB::Project',
-      key_columns => { globalproject_id => 'id' },
-    },
+__PACKAGE__->meta->foreign_keys(
+  contact => {
+    class       => 'SL::DB::Contact',
+    key_columns => { cp_id => 'cp_id' },
+  },
 
-    language => {
-      class       => 'SL::DB::Language',
-      key_columns => { language_id => 'id' },
-    },
+  currency => {
+    class       => 'SL::DB::Currency',
+    key_columns => { currency_id => 'id' },
+  },
 
-    salesman => {
-      class       => 'SL::DB::Employee',
-      key_columns => { salesman_id => 'id' },
-    },
+  customer => {
+    class       => 'SL::DB::Customer',
+    key_columns => { customer_id => 'id' },
+  },
 
-    shipto => {
-      class       => 'SL::DB::Shipto',
-      key_columns => { shipto_id => 'shipto_id' },
-    },
+  globalproject => {
+    class       => 'SL::DB::Project',
+    key_columns => { globalproject_id => 'id' },
+  },
 
-    vendor => {
-      class       => 'SL::DB::Vendor',
-      key_columns => { vendor_id => 'id' },
-    },
-  ],
+  vendor => {
+    class       => 'SL::DB::Vendor',
+    key_columns => { vendor_id => 'id' },
+  },
 );
 
+# __PACKAGE__->meta->initialize;
+
 1;
 ;