X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FOrder.pm;fp=SL%2FDB%2FMetaSetup%2FOrder.pm;h=397db119ac4c3398ca7d73af486903bf97fc0f26;hb=b8b112a39bd601b0bc717646d78de470631da22a;hp=063ca0b0f547bbef07a5f794ce182da7b2420ce9;hpb=c09313030ba77f61771483e69179fd916d9328cd;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Order.pm b/SL/DB/MetaSetup/Order.pm index 063ca0b0f..397db119a 100644 --- a/SL/DB/MetaSetup/Order.pm +++ b/SL/DB/MetaSetup/Order.pm @@ -6,119 +6,109 @@ use strict; use base qw(SL::DB::Object); -__PACKAGE__->meta->setup( - table => 'oe', - - columns => [ - id => { type => 'integer', not_null => 1, sequence => 'id' }, - ordnumber => { type => 'text', not_null => 1 }, - transdate => { type => 'date', default => 'now' }, - vendor_id => { type => 'integer' }, - customer_id => { type => 'integer' }, - amount => { type => 'numeric', precision => 5, scale => 15 }, - netamount => { type => 'numeric', precision => 5, scale => 15 }, - reqdate => { type => 'date' }, - taxincluded => { type => 'boolean' }, - shippingpoint => { type => 'text' }, - notes => { type => 'text' }, - employee_id => { type => 'integer' }, - closed => { type => 'boolean', default => 'false' }, - quotation => { type => 'boolean', default => 'false' }, - quonumber => { type => 'text' }, - cusordnumber => { type => 'text' }, - intnotes => { type => 'text' }, - department_id => { type => 'integer' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - shipvia => { type => 'text' }, - cp_id => { type => 'integer' }, - language_id => { type => 'integer' }, - payment_id => { type => 'integer' }, - delivery_customer_id => { type => 'integer' }, - delivery_vendor_id => { type => 'integer' }, - taxzone_id => { type => 'integer' }, - proforma => { type => 'boolean', default => 'false' }, - shipto_id => { type => 'integer' }, - delivered => { type => 'boolean', default => 'false' }, - globalproject_id => { type => 'integer' }, - salesman_id => { type => 'integer' }, - marge_total => { type => 'numeric', precision => 5, scale => 15 }, - marge_percent => { type => 'numeric', precision => 5, scale => 15 }, - transaction_description => { type => 'text' }, - 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' }, - }, - - delivery_customer => { - class => 'SL::DB::Customer', - key_columns => { delivery_customer_id => 'id' }, - }, - - delivery_vendor => { - class => 'SL::DB::Vendor', - key_columns => { delivery_vendor_id => 'id' }, - }, - - department => { - class => 'SL::DB::Department', - key_columns => { department_id => 'id' }, - }, - - employee => { - class => 'SL::DB::Employee', - key_columns => { employee_id => 'id' }, - }, - - globalproject => { - class => 'SL::DB::Project', - key_columns => { globalproject_id => 'id' }, - }, - - language => { - class => 'SL::DB::Language', - key_columns => { language_id => 'id' }, - }, - - payment_terms => { - class => 'SL::DB::PaymentTerm', - key_columns => { payment_id => 'id' }, - }, - - salesman => { - class => 'SL::DB::Employee', - key_columns => { salesman_id => 'id' }, - }, - - shipto => { - class => 'SL::DB::Shipto', - key_columns => { shipto_id => 'shipto_id' }, - }, - - vendor => { - class => 'SL::DB::Vendor', - key_columns => { vendor_id => 'id' }, - }, - ], +__PACKAGE__->meta->table('oe'); + +__PACKAGE__->meta->columns( + id => { type => 'integer', not_null => 1, sequence => 'id' }, + ordnumber => { type => 'text', not_null => 1 }, + transdate => { type => 'date', default => 'now' }, + vendor_id => { type => 'integer' }, + customer_id => { type => 'integer' }, + amount => { type => 'numeric', precision => 5, scale => 15 }, + netamount => { type => 'numeric', precision => 5, scale => 15 }, + reqdate => { type => 'date' }, + taxincluded => { type => 'boolean' }, + shippingpoint => { type => 'text' }, + notes => { type => 'text' }, + employee_id => { type => 'integer' }, + closed => { type => 'boolean', default => 'false' }, + quotation => { type => 'boolean', default => 'false' }, + quonumber => { type => 'text' }, + cusordnumber => { type => 'text' }, + intnotes => { type => 'text' }, + department_id => { type => 'integer' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + shipvia => { type => 'text' }, + cp_id => { type => 'integer' }, + language_id => { type => 'integer' }, + payment_id => { type => 'integer' }, + delivery_customer_id => { type => 'integer' }, + delivery_vendor_id => { type => 'integer' }, + taxzone_id => { type => 'integer' }, + proforma => { type => 'boolean', default => 'false' }, + shipto_id => { type => 'integer' }, + delivered => { type => 'boolean', default => 'false' }, + globalproject_id => { type => 'integer' }, + salesman_id => { type => 'integer' }, + transaction_description => { type => 'text' }, + marge_total => { type => 'numeric', precision => 5, scale => 15 }, + marge_percent => { type => 'numeric', precision => 5, scale => 15 }, + currency_id => { type => 'integer', not_null => 1 }, ); +__PACKAGE__->meta->primary_key_columns([ 'id' ]); + +__PACKAGE__->meta->allow_inline_column_values(1); + +__PACKAGE__->meta->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' }, + }, + + delivery_customer => { + class => 'SL::DB::Customer', + key_columns => { delivery_customer_id => 'id' }, + }, + + delivery_vendor => { + class => 'SL::DB::Vendor', + key_columns => { delivery_vendor_id => 'id' }, + }, + + department => { + class => 'SL::DB::Department', + key_columns => { department_id => 'id' }, + }, + + employee => { + class => 'SL::DB::Employee', + key_columns => { employee_id => 'id' }, + }, + + globalproject => { + class => 'SL::DB::Project', + key_columns => { globalproject_id => 'id' }, + }, + + language => { + class => 'SL::DB::Language', + key_columns => { language_id => 'id' }, + }, + + salesman => { + class => 'SL::DB::Employee', + key_columns => { salesman_id => 'id' }, + }, + + vendor => { + class => 'SL::DB::Vendor', + key_columns => { vendor_id => 'id' }, + }, +); + +# __PACKAGE__->meta->initialize; + 1; ;