Rose-Model-Updates (Foreign keys, allow_inline_column_values) nach currencies-Einführung
[kivitendo-erp.git] / SL / DB / MetaSetup / Invoice.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::Invoice;
4
5 use strict;
6
7 use base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->setup(
10   table   => 'ar',
11
12   columns => [
13     id                        => { type => 'integer', not_null => 1, sequence => 'glid' },
14     invnumber                 => { type => 'text', not_null => 1 },
15     transdate                 => { type => 'date', default => 'now' },
16     gldate                    => { type => 'date', default => 'now' },
17     customer_id               => { type => 'integer' },
18     taxincluded               => { type => 'boolean' },
19     amount                    => { type => 'numeric', precision => 5, scale => 15 },
20     netamount                 => { type => 'numeric', precision => 5, scale => 15 },
21     paid                      => { type => 'numeric', precision => 5, scale => 15 },
22     datepaid                  => { type => 'date' },
23     duedate                   => { type => 'date' },
24     deliverydate              => { type => 'date' },
25     invoice                   => { type => 'boolean', default => 'false' },
26     shippingpoint             => { type => 'text' },
27     terms                     => { type => 'integer', default => '0' },
28     notes                     => { type => 'text' },
29     ordnumber                 => { type => 'text' },
30     employee_id               => { type => 'integer' },
31     quonumber                 => { type => 'text' },
32     cusordnumber              => { type => 'text' },
33     intnotes                  => { type => 'text' },
34     department_id             => { type => 'integer' },
35     shipvia                   => { type => 'text' },
36     itime                     => { type => 'timestamp', default => 'now()' },
37     mtime                     => { type => 'timestamp' },
38     cp_id                     => { type => 'integer' },
39     language_id               => { type => 'integer' },
40     payment_id                => { type => 'integer' },
41     delivery_customer_id      => { type => 'integer' },
42     delivery_vendor_id        => { type => 'integer' },
43     storno                    => { type => 'boolean', default => 'false' },
44     taxzone_id                => { type => 'integer' },
45     shipto_id                 => { type => 'integer' },
46     type                      => { type => 'text' },
47     dunning_config_id         => { type => 'integer' },
48     orddate                   => { type => 'date' },
49     quodate                   => { type => 'date' },
50     globalproject_id          => { type => 'integer' },
51     salesman_id               => { type => 'integer' },
52     transaction_description   => { type => 'text' },
53     storno_id                 => { type => 'integer' },
54     marge_total               => { type => 'numeric', precision => 5, scale => 15 },
55     marge_percent             => { type => 'numeric', precision => 5, scale => 15 },
56     donumber                  => { type => 'text' },
57     invnumber_for_credit_note => { type => 'text' },
58     direct_debit              => { type => 'boolean', default => 'false' },
59     currency_id               => { type => 'integer', not_null => 1 },
60   ],
61
62   primary_key_columns => [ 'id' ],
63
64   allow_inline_column_values => 1,
65
66   foreign_keys => [
67     contact => {
68       class       => 'SL::DB::Contact',
69       key_columns => { cp_id => 'cp_id' },
70     },
71
72     currency => {
73       class       => 'SL::DB::Currency',
74       key_columns => { currency_id => 'id' },
75     },
76
77     customer => {
78       class       => 'SL::DB::Customer',
79       key_columns => { customer_id => 'id' },
80     },
81
82     department => {
83       class       => 'SL::DB::Department',
84       key_columns => { department_id => 'id' },
85     },
86
87     dunning_config => {
88       class       => 'SL::DB::DunningConfig',
89       key_columns => { dunning_config_id => 'id' },
90     },
91
92     employee => {
93       class       => 'SL::DB::Employee',
94       key_columns => { employee_id => 'id' },
95     },
96
97     globalproject => {
98       class       => 'SL::DB::Project',
99       key_columns => { globalproject_id => 'id' },
100     },
101
102     language => {
103       class       => 'SL::DB::Language',
104       key_columns => { language_id => 'id' },
105     },
106
107     payment_terms => {
108       class       => 'SL::DB::PaymentTerm',
109       key_columns => { payment_id => 'id' },
110     },
111
112     salesman => {
113       class       => 'SL::DB::Employee',
114       key_columns => { salesman_id => 'id' },
115     },
116
117     shipto => {
118       class       => 'SL::DB::Shipto',
119       key_columns => { shipto_id => 'shipto_id' },
120     },
121
122     storno_obj => {
123       class       => 'SL::DB::Invoice',
124       key_columns => { storno_id => 'id' },
125     },
126   ],
127 );
128
129 1;
130 ;