X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FPart.pm;h=b5e25772c42648e86932396d7189f1b1b7ca06cb;hb=377b705324a4c43ef21b838d4ea9d474132cf16f;hp=bdc726ef164f0df89697e78a47acda5f643ed3aa;hpb=c6b2257945060625bcb86fa7e2efd27c737480ff;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Part.pm b/SL/DB/MetaSetup/Part.pm index bdc726ef1..b5e25772c 100644 --- a/SL/DB/MetaSetup/Part.pm +++ b/SL/DB/MetaSetup/Part.pm @@ -6,92 +6,91 @@ use strict; use base qw(SL::DB::Object); -__PACKAGE__->meta->setup( - table => 'parts', +__PACKAGE__->meta->table('parts'); - columns => [ - id => { type => 'integer', not_null => 1, sequence => 'id' }, - partnumber => { type => 'text', not_null => 1 }, - description => { type => 'text' }, - listprice => { type => 'numeric', precision => 5, scale => 15 }, - sellprice => { type => 'numeric', precision => 5, scale => 15 }, - lastcost => { type => 'numeric', precision => 5, scale => 15 }, - priceupdate => { type => 'date', default => 'now' }, - weight => { type => 'float', precision => 4 }, - notes => { type => 'text' }, - makemodel => { type => 'boolean', default => 'false' }, - assembly => { type => 'boolean', default => 'false' }, - alternate => { type => 'boolean', default => 'false' }, - rop => { type => 'float', precision => 4 }, - inventory_accno_id => { type => 'integer' }, - income_accno_id => { type => 'integer' }, - expense_accno_id => { type => 'integer' }, - shop => { type => 'boolean', default => 'false' }, - obsolete => { type => 'boolean', default => 'false' }, - bom => { type => 'boolean', default => 'false' }, - image => { type => 'text' }, - drawing => { type => 'text' }, - microfiche => { type => 'text' }, - partsgroup_id => { type => 'integer' }, - ve => { type => 'integer' }, - gv => { type => 'numeric', precision => 5, scale => 15 }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - unit => { type => 'varchar', length => 20, not_null => 1 }, - formel => { type => 'text' }, - not_discountable => { type => 'boolean', default => 'false' }, - buchungsgruppen_id => { type => 'integer' }, - payment_id => { type => 'integer' }, - ean => { type => 'text' }, - price_factor_id => { type => 'integer' }, - onhand => { type => 'numeric', default => '0', precision => 5, scale => 25 }, - stockable => { type => 'boolean', default => 'false' }, - has_sernumber => { type => 'boolean', default => 'false' }, - warehouse_id => { type => 'integer' }, - bin_id => { type => 'integer' }, - ], +__PACKAGE__->meta->columns( + alternate => { type => 'boolean', default => 'false' }, + assembly => { type => 'boolean', default => 'false' }, + bin_id => { type => 'integer' }, + bom => { type => 'boolean', default => 'false' }, + buchungsgruppen_id => { type => 'integer' }, + description => { type => 'text' }, + drawing => { type => 'text' }, + ean => { type => 'text' }, + expense_accno_id => { type => 'integer' }, + formel => { type => 'text' }, + gv => { type => 'numeric', precision => 5, scale => 15 }, + has_sernumber => { type => 'boolean', default => 'false' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, + image => { type => 'text' }, + income_accno_id => { type => 'integer' }, + inventory_accno_id => { type => 'integer' }, + itime => { type => 'timestamp', default => 'now()' }, + lastcost => { type => 'numeric', precision => 5, scale => 15 }, + listprice => { type => 'numeric', precision => 5, scale => 15 }, + makemodel => { type => 'boolean', default => 'false' }, + microfiche => { type => 'text' }, + mtime => { type => 'timestamp' }, + not_discountable => { type => 'boolean', default => 'false' }, + notes => { type => 'text' }, + obsolete => { type => 'boolean', default => 'false' }, + onhand => { type => 'numeric', default => '0', precision => 5, scale => 25 }, + partnumber => { type => 'text', not_null => 1 }, + partsgroup_id => { type => 'integer' }, + payment_id => { type => 'integer' }, + price_factor_id => { type => 'integer' }, + priceupdate => { type => 'date', default => 'now' }, + rop => { type => 'float', precision => 4 }, + sellprice => { type => 'numeric', precision => 5, scale => 15 }, + shop => { type => 'boolean', default => 'false' }, + stockable => { type => 'boolean', default => 'false' }, + unit => { type => 'varchar', length => 20, not_null => 1 }, + ve => { type => 'integer' }, + warehouse_id => { type => 'integer' }, + weight => { type => 'float', precision => 4 }, +); + +__PACKAGE__->meta->primary_key_columns([ 'id' ]); - primary_key_columns => [ 'id' ], +__PACKAGE__->meta->unique_keys([ 'partnumber' ]); - allow_inline_column_values => 1, - unique_key => [ 'partnumber' ], +__PACKAGE__->meta->allow_inline_column_values(1); - foreign_keys => [ - bin => { - class => 'SL::DB::Bin', - key_columns => { bin_id => 'id' }, - }, +__PACKAGE__->meta->foreign_keys( + bin => { + class => 'SL::DB::Bin', + key_columns => { bin_id => 'id' }, + }, - buchungsgruppen => { - class => 'SL::DB::Buchungsgruppe', - key_columns => { buchungsgruppen_id => 'id' }, - }, + buchungsgruppen => { + class => 'SL::DB::Buchungsgruppe', + key_columns => { buchungsgruppen_id => 'id' }, + }, - partsgroup => { - class => 'SL::DB::PartsGroup', - key_columns => { partsgroup_id => 'id' }, - }, + partsgroup => { + class => 'SL::DB::PartsGroup', + key_columns => { partsgroup_id => 'id' }, + }, - payment => { - class => 'SL::DB::PaymentTerm', - key_columns => { payment_id => 'id' }, - }, + payment => { + class => 'SL::DB::PaymentTerm', + key_columns => { payment_id => 'id' }, + }, - price_factor => { - class => 'SL::DB::PriceFactor', - key_columns => { price_factor_id => 'id' }, - }, + price_factor => { + class => 'SL::DB::PriceFactor', + key_columns => { price_factor_id => 'id' }, + }, - unit_obj => { - class => 'SL::DB::Unit', - key_columns => { unit => 'name' }, - }, + unit_obj => { + class => 'SL::DB::Unit', + key_columns => { unit => 'name' }, + }, - warehouse => { - class => 'SL::DB::Warehouse', - key_columns => { warehouse_id => 'id' }, - }, - ], + warehouse => { + class => 'SL::DB::Warehouse', + key_columns => { warehouse_id => 'id' }, + }, ); 1;