53ded975ea45710176b62889b0071a38eacd3e2e
[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   active_discount_source => { type => 'text', default => '', not_null => 1 },
13   active_price_source    => { type => 'text', default => '', not_null => 1 },
14   base_qty               => { type => 'float', scale => 4 },
15   cusordnumber           => { type => 'text' },
16   description            => { type => 'text' },
17   discount               => { type => 'float', scale => 4 },
18   id                     => { type => 'integer', not_null => 1, sequence => 'orderitemsid' },
19   itime                  => { type => 'timestamp', default => 'now()' },
20   lastcost               => { type => 'numeric', precision => 15, scale => 5 },
21   longdescription        => { type => 'text' },
22   marge_percent          => { type => 'numeric', precision => 15, scale => 5 },
23   marge_price_factor     => { type => 'numeric', default => 1, precision => 15, scale => 5 },
24   marge_total            => { type => 'numeric', precision => 15, scale => 5 },
25   mtime                  => { type => 'timestamp' },
26   ordnumber              => { type => 'text' },
27   parts_id               => { type => 'integer' },
28   position               => { type => 'integer', not_null => 1 },
29   price_factor           => { type => 'numeric', default => 1, precision => 15, scale => 5 },
30   price_factor_id        => { type => 'integer' },
31   pricegroup_id          => { type => 'integer' },
32   project_id             => { type => 'integer' },
33   qty                    => { type => 'float', scale => 4 },
34   reqdate                => { type => 'date' },
35   sellprice              => { type => 'numeric', precision => 15, scale => 5 },
36   serialnumber           => { type => 'text' },
37   ship                   => { type => 'float', scale => 4 },
38   subtotal               => { type => 'boolean', default => 'false' },
39   trans_id               => { type => 'integer' },
40   transdate              => { type => 'text' },
41   unit                   => { type => 'varchar', length => 20 },
42 );
43
44 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
45
46 __PACKAGE__->meta->allow_inline_column_values(1);
47
48 __PACKAGE__->meta->foreign_keys(
49   order => {
50     class       => 'SL::DB::Order',
51     key_columns => { trans_id => 'id' },
52   },
53
54   part => {
55     class       => 'SL::DB::Part',
56     key_columns => { parts_id => 'id' },
57   },
58
59   price_factor_obj => {
60     class       => 'SL::DB::PriceFactor',
61     key_columns => { price_factor_id => 'id' },
62   },
63
64   pricegroup => {
65     class       => 'SL::DB::Pricegroup',
66     key_columns => { pricegroup_id => 'id' },
67   },
68
69   project => {
70     class       => 'SL::DB::Project',
71     key_columns => { project_id => 'id' },
72   },
73
74   unit_obj => {
75     class       => 'SL::DB::Unit',
76     key_columns => { unit => 'name' },
77   },
78 );
79
80 1;
81 ;