Revision d0c938cf
Von Niclas Zimmermann vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/Order.pm | ||
---|---|---|
21 | 21 |
taxincluded => { type => 'boolean' }, |
22 | 22 |
shippingpoint => { type => 'text' }, |
23 | 23 |
notes => { type => 'text' }, |
24 |
curr => { type => 'character', length => 3 }, |
|
25 | 24 |
employee_id => { type => 'integer' }, |
26 | 25 |
closed => { type => 'boolean', default => 'false' }, |
27 | 26 |
quotation => { type => 'boolean', default => 'false' }, |
... | ... | |
43 | 42 |
delivered => { type => 'boolean', default => 'false' }, |
44 | 43 |
globalproject_id => { type => 'integer' }, |
45 | 44 |
salesman_id => { type => 'integer' }, |
46 |
transaction_description => { type => 'text' }, |
|
47 | 45 |
marge_total => { type => 'numeric', precision => 5, scale => 15 }, |
48 | 46 |
marge_percent => { type => 'numeric', precision => 5, scale => 15 }, |
47 |
transaction_description => { type => 'text' }, |
|
48 |
currency_id => { type => 'integer', not_null => 1 }, |
|
49 | 49 |
], |
50 | 50 |
|
51 | 51 |
primary_key_columns => [ 'id' ], |
52 | 52 |
|
53 |
allow_inline_column_values => 1, |
|
54 |
|
|
55 | 53 |
foreign_keys => [ |
56 | 54 |
contact => { |
57 | 55 |
class => 'SL::DB::Contact', |
Auch abrufbar als: Unified diff
Neues DB-Setup für Währungen
Für RDBO-Code wird hier das MetaSetup der DB upgedated.