Revision f228ac9b
Von Moritz Bunkus vor mehr als 5 Jahren hinzugefügt
SL/DB/MetaSetup/InvoiceItem.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 |
allocated => { type => 'float', scale => 4 }, |
|
14 |
allocated => { type => 'float', precision => 4, scale => 4 },
|
|
15 | 15 |
assemblyitem => { type => 'boolean', default => 'false' }, |
16 |
base_qty => { type => 'float', scale => 4 }, |
|
16 |
base_qty => { type => 'float', precision => 4, scale => 4 },
|
|
17 | 17 |
cusordnumber => { type => 'text' }, |
18 | 18 |
deliverydate => { type => 'date' }, |
19 | 19 |
description => { type => 'text' }, |
20 |
discount => { type => 'float', scale => 4 }, |
|
20 |
discount => { type => 'float', precision => 4, scale => 4 },
|
|
21 | 21 |
donumber => { type => 'text' }, |
22 | 22 |
fxsellprice => { type => 'numeric', precision => 15, scale => 5 }, |
23 | 23 |
id => { type => 'integer', not_null => 1, sequence => 'invoiceid' }, |
... | ... | |
35 | 35 |
price_factor_id => { type => 'integer' }, |
36 | 36 |
pricegroup_id => { type => 'integer' }, |
37 | 37 |
project_id => { type => 'integer' }, |
38 |
qty => { type => 'float', scale => 4 }, |
|
38 |
qty => { type => 'float', precision => 4, scale => 4 },
|
|
39 | 39 |
sellprice => { type => 'numeric', precision => 15, scale => 5 }, |
40 | 40 |
serialnumber => { type => 'text' }, |
41 | 41 |
subtotal => { type => 'boolean', default => 'false' }, |
Auch abrufbar als: Unified diff
Rose: MetaSetups bzgl. Fließkommazahlen erneuert