Revision f228ac9b
Von Moritz Bunkus vor mehr als 5 Jahren hinzugefügt
SL/DB/MetaSetup/OrderItem.pm | ||
---|---|---|
11 | 11 |
__PACKAGE__->meta->columns( |
12 | 12 |
active_discount_source => { type => 'text', default => '', not_null => 1 }, |
13 | 13 |
active_price_source => { type => 'text', default => '', not_null => 1 }, |
14 |
base_qty => { type => 'float', scale => 4 }, |
|
14 |
base_qty => { type => 'float', precision => 4, scale => 4 },
|
|
15 | 15 |
cusordnumber => { type => 'text' }, |
16 | 16 |
description => { type => 'text' }, |
17 |
discount => { type => 'float', scale => 4 }, |
|
17 |
discount => { type => 'float', precision => 4, scale => 4 },
|
|
18 | 18 |
id => { type => 'integer', not_null => 1, sequence => 'orderitemsid' }, |
19 | 19 |
itime => { type => 'timestamp', default => 'now()' }, |
20 | 20 |
lastcost => { type => 'numeric', precision => 15, scale => 5 }, |
... | ... | |
30 | 30 |
price_factor_id => { type => 'integer' }, |
31 | 31 |
pricegroup_id => { type => 'integer' }, |
32 | 32 |
project_id => { type => 'integer' }, |
33 |
qty => { type => 'float', scale => 4 }, |
|
33 |
qty => { type => 'float', precision => 4, scale => 4 },
|
|
34 | 34 |
reqdate => { type => 'date' }, |
35 | 35 |
sellprice => { type => 'numeric', precision => 15, scale => 5 }, |
36 | 36 |
serialnumber => { type => 'text' }, |
37 |
ship => { type => 'float', scale => 4 }, |
|
37 |
ship => { type => 'float', precision => 4, scale => 4 },
|
|
38 | 38 |
subtotal => { type => 'boolean', default => 'false' }, |
39 | 39 |
trans_id => { type => 'integer' }, |
40 | 40 |
transdate => { type => 'text' }, |
Auch abrufbar als: Unified diff
Rose: MetaSetups bzgl. Fließkommazahlen erneuert