dd2fde76e63b7dda6a4eeaa3cf5e13a1dd9365ba
[kivitendo-erp.git] / SL / DB / MetaSetup / OrderItem.pm
1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::OrderItem;
4
5 use strict;
6
7 use base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('orderitems');
10
11 __PACKAGE__->meta->columns(
12   trans_id           => { type => 'integer' },
13   parts_id           => { type => 'integer' },
14   description        => { type => 'text' },
15   qty                => { type => 'float', precision => 4 },
16   sellprice          => { type => 'numeric', precision => 5, scale => 15 },
17   discount           => { type => 'float', precision => 4 },
18   project_id         => { type => 'integer' },
19   reqdate            => { type => 'date' },
20   ship               => { type => 'float', precision => 4 },
21   serialnumber       => { type => 'text' },
22   id                 => { type => 'integer', not_null => 1, sequence => 'orderitemsid' },
23   itime              => { type => 'timestamp', default => 'now()' },
24   mtime              => { type => 'timestamp' },
25   pricegroup_id      => { type => 'integer' },
26   ordnumber          => { type => 'text' },
27   transdate          => { type => 'text' },
28   cusordnumber       => { type => 'text' },
29   unit               => { type => 'varchar', length => 20 },
30   base_qty           => { type => 'float', precision => 4 },
31   subtotal           => { type => 'boolean', default => 'false' },
32   longdescription    => { type => 'text' },
33   marge_total        => { type => 'numeric', precision => 5, scale => 15 },
34   marge_percent      => { type => 'numeric', precision => 5, scale => 15 },
35   lastcost           => { type => 'numeric', precision => 5, scale => 15 },
36   price_factor_id    => { type => 'integer' },
37   price_factor       => { type => 'numeric', default => 1, precision => 5, scale => 15 },
38   marge_price_factor => { type => 'numeric', default => 1, precision => 5, scale => 15 },
39 );
40
41 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
42
43 __PACKAGE__->meta->allow_inline_column_values(1);
44
45 __PACKAGE__->meta->foreign_keys(
46   part => {
47     class       => 'SL::DB::Part',
48     key_columns => { parts_id => 'id' },
49   },
50
51   price_factor_obj => {
52     class       => 'SL::DB::PriceFactor',
53     key_columns => { price_factor_id => 'id' },
54   },
55
56   pricegroup => {
57     class       => 'SL::DB::Pricegroup',
58     key_columns => { pricegroup_id => 'id' },
59   },
60
61   project => {
62     class       => 'SL::DB::Project',
63     key_columns => { project_id => 'id' },
64   },
65
66   order => {
67     class       => 'SL::DB::Order',
68     key_columns => { trans_id => 'id' },
69   },
70 );
71
72 # __PACKAGE__->meta->initialize;
73
74 1;
75 ;