Revision ebd668c1
Von Tamino Steinert vor etwa 1 Jahr hinzugefügt
SL/DB/MetaSetup/DeliveryOrderItem.pm | ||
---|---|---|
22 | 22 |
longdescription => { type => 'text' }, |
23 | 23 |
marge_price_factor => { type => 'numeric', default => 1, precision => 15, scale => 5 }, |
24 | 24 |
mtime => { type => 'timestamp' }, |
25 |
orderer_id => { type => 'integer' }, |
|
25 | 26 |
ordnumber => { type => 'text' }, |
26 | 27 |
parts_id => { type => 'integer', not_null => 1 }, |
27 | 28 |
position => { type => 'integer', not_null => 1 }, |
... | ... | |
47 | 48 |
key_columns => { delivery_order_id => 'id' }, |
48 | 49 |
}, |
49 | 50 |
|
51 |
orderer => { |
|
52 |
class => 'SL::DB::Employee', |
|
53 |
key_columns => { orderer_id => 'id' }, |
|
54 |
}, |
|
55 |
|
|
50 | 56 |
part => { |
51 | 57 |
class => 'SL::DB::Part', |
52 | 58 |
key_columns => { parts_id => 'id' }, |
Auch abrufbar als: Unified diff
Besteller zu Auftrags- und Lieferscheinpositionen hinzugefügt