Revision f228ac9b
Von Moritz Bunkus vor mehr als 5 Jahren hinzugefügt
SL/DB/MetaSetup/DeliveryOrderItem.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 |
delivery_order_id => { type => 'integer', not_null => 1 }, |
17 | 17 |
description => { type => 'text' }, |
18 |
discount => { type => 'float', scale => 4 }, |
|
18 |
discount => { type => 'float', precision => 4, scale => 4 },
|
|
19 | 19 |
id => { type => 'integer', not_null => 1, sequence => 'delivery_order_items_id' }, |
20 | 20 |
itime => { type => 'timestamp', default => 'now()' }, |
21 | 21 |
lastcost => { type => 'numeric', precision => 15, scale => 5 }, |
Auch abrufbar als: Unified diff
Rose: MetaSetups bzgl. Fließkommazahlen erneuert