X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/d17e1b9d1b761bb19d0cb79a742ea70a07028998..57717cbb6f5e4c6da34d6267ab867db485fced57:/SL/DB/MetaSetup/Default.pm diff --git a/SL/DB/MetaSetup/Default.pm b/SL/DB/MetaSetup/Default.pm index c1deb9c34..5b547efc4 100644 --- a/SL/DB/MetaSetup/Default.pm +++ b/SL/DB/MetaSetup/Default.pm @@ -28,6 +28,7 @@ __PACKAGE__->meta->columns( coa => { type => 'text' }, company => { type => 'text' }, currency_id => { type => 'integer', not_null => 1 }, + customer_hourly_rate => { type => 'numeric', precision => 2, scale => 8 }, customernumber => { type => 'text' }, datev_check_on_ap_transaction => { type => 'boolean', default => 'true' }, datev_check_on_ar_transaction => { type => 'boolean', default => 'true' }, @@ -66,8 +67,9 @@ __PACKAGE__->meta->columns( profit_determination => { type => 'text' }, purchase_delivery_order_show_delete => { type => 'boolean', default => 'true' }, purchase_order_show_delete => { type => 'boolean', default => 'true' }, - requirement_spec_section_number_format => { type => 'text', default => 'A00', not_null => 1 }, requirement_spec_function_block_number_format => { type => 'text', default => 'FB000', not_null => 1 }, + requirement_spec_section_number_format => { type => 'text', default => 'A00', not_null => 1 }, + requirement_spec_section_order_part_id => { type => 'integer' }, revtrans => { type => 'boolean', default => 'false' }, rfqnumber => { type => 'text' }, rmanumber => { type => 'text' }, @@ -116,6 +118,11 @@ __PACKAGE__->meta->foreign_keys( key_columns => { currency_id => 'id' }, }, + requirement_spec_section_order_part => { + class => 'SL::DB::Part', + key_columns => { requirement_spec_section_order_part_id => 'id' }, + }, + warehouse => { class => 'SL::DB::Warehouse', key_columns => { warehouse_id => 'id' },