test action
[kivitendo-erp.git] / SL / DB / MetaSetup / Order.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::Order;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('oe');
10
11 __PACKAGE__->meta->columns(
12   amount                  => { type => 'numeric', precision => 15, scale => 5 },
13   closed                  => { type => 'boolean', default => 'false' },
14   cp_id                   => { type => 'integer' },
15   currency_id             => { type => 'integer', not_null => 1 },
16   cusordnumber            => { type => 'text' },
17   customer_id             => { type => 'integer' },
18   delivered               => { type => 'boolean', default => 'false' },
19   delivery_customer_id    => { type => 'integer' },
20   delivery_term_id        => { type => 'integer' },
21   delivery_vendor_id      => { type => 'integer' },
22   department_id           => { type => 'integer' },
23   employee_id             => { type => 'integer' },
24   exchangerate            => { type => 'numeric', precision => 15, scale => 5 },
25   expected_billing_date   => { type => 'date' },
26   globalproject_id        => { type => 'integer' },
27   id                      => { type => 'integer', not_null => 1, sequence => 'id' },
28   intnotes                => { type => 'text' },
29   itime                   => { type => 'timestamp', default => 'now()' },
30   language_id             => { type => 'integer' },
31   marge_percent           => { type => 'numeric', precision => 15, scale => 5 },
32   marge_total             => { type => 'numeric', precision => 15, scale => 5 },
33   mtime                   => { type => 'timestamp' },
34   netamount               => { type => 'numeric', precision => 15, scale => 5 },
35   notes                   => { type => 'text' },
36   order_probability       => { type => 'integer', default => '0', not_null => 1 },
37   ordnumber               => { type => 'text', not_null => 1 },
38   payment_id              => { type => 'integer' },
39   proforma                => { type => 'boolean', default => 'false' },
40   quonumber               => { type => 'text' },
41   quotation               => { type => 'boolean', default => 'false' },
42   reqdate                 => { type => 'date' },
43   salesman_id             => { type => 'integer' },
44   shippingpoint           => { type => 'text' },
45   shipto_id               => { type => 'integer' },
46   shipvia                 => { type => 'text' },
47   tax_point               => { type => 'date' },
48   taxincluded             => { type => 'boolean' },
49   taxzone_id              => { type => 'integer', not_null => 1 },
50   transaction_description => { type => 'text' },
51   transdate               => { type => 'date', default => 'now' },
52   vendor_id               => { type => 'integer' },
53 );
54
55 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
56
57 __PACKAGE__->meta->allow_inline_column_values(1);
58
59 __PACKAGE__->meta->foreign_keys(
60   contact => {
61     class       => 'SL::DB::Contact',
62     key_columns => { cp_id => 'cp_id' },
63   },
64
65   currency => {
66     class       => 'SL::DB::Currency',
67     key_columns => { currency_id => 'id' },
68   },
69
70   customer => {
71     class       => 'SL::DB::Customer',
72     key_columns => { customer_id => 'id' },
73   },
74
75   delivery_customer => {
76     class       => 'SL::DB::Customer',
77     key_columns => { delivery_customer_id => 'id' },
78   },
79
80   delivery_term => {
81     class       => 'SL::DB::DeliveryTerm',
82     key_columns => { delivery_term_id => 'id' },
83   },
84
85   delivery_vendor => {
86     class       => 'SL::DB::Vendor',
87     key_columns => { delivery_vendor_id => 'id' },
88   },
89
90   department => {
91     class       => 'SL::DB::Department',
92     key_columns => { department_id => 'id' },
93   },
94
95   employee => {
96     class       => 'SL::DB::Employee',
97     key_columns => { employee_id => 'id' },
98   },
99
100   globalproject => {
101     class       => 'SL::DB::Project',
102     key_columns => { globalproject_id => 'id' },
103   },
104
105   language => {
106     class       => 'SL::DB::Language',
107     key_columns => { language_id => 'id' },
108   },
109
110   payment_terms => {
111     class       => 'SL::DB::PaymentTerm',
112     key_columns => { payment_id => 'id' },
113   },
114
115   salesman => {
116     class       => 'SL::DB::Employee',
117     key_columns => { salesman_id => 'id' },
118   },
119
120   shipto => {
121     class       => 'SL::DB::Shipto',
122     key_columns => { shipto_id => 'shipto_id' },
123   },
124
125   taxzone => {
126     class       => 'SL::DB::TaxZone',
127     key_columns => { taxzone_id => 'id' },
128   },
129
130   vendor => {
131     class       => 'SL::DB::Vendor',
132     key_columns => { vendor_id => 'id' },
133   },
134 );
135
136 1;
137 ;