Revision 980917db
Von Tamino Steinert vor mehr als 1 Jahr hinzugefügt
SL/DB/MetaSetup/OrderItem.pm | ||
---|---|---|
24 | 24 |
marge_total => { type => 'numeric', precision => 15, scale => 5 }, |
25 | 25 |
mtime => { type => 'timestamp' }, |
26 | 26 |
optional => { type => 'boolean', default => 'false' }, |
27 |
orderer_id => { type => 'integer' }, |
|
27 | 28 |
ordnumber => { type => 'text' }, |
28 | 29 |
parts_id => { type => 'integer' }, |
29 | 30 |
position => { type => 'integer', not_null => 1 }, |
... | ... | |
54 | 55 |
key_columns => { trans_id => 'id' }, |
55 | 56 |
}, |
56 | 57 |
|
58 |
orderer => { |
|
59 |
class => 'SL::DB::Employee', |
|
60 |
key_columns => { orderer_id => 'id' }, |
|
61 |
}, |
|
62 |
|
|
57 | 63 |
part => { |
58 | 64 |
class => 'SL::DB::Part', |
59 | 65 |
key_columns => { parts_id => 'id' }, |
Auch abrufbar als: Unified diff
Besteller zu Auftrags- und Lieferscheinpositionen hinzugefügt