Revision 4bcf8804
Von Sven Schöling vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/PurchaseInvoice.pm | ||
---|---|---|
56 | 56 |
key_columns => { cp_id => 'cp_id' }, |
57 | 57 |
}, |
58 | 58 |
|
59 |
currency => { |
|
60 |
class => 'SL::DB::Currency', |
|
61 |
key_columns => { currency_id => 'id' }, |
|
62 |
}, |
|
63 |
|
|
64 |
department => { |
|
65 |
class => 'SL::DB::Department', |
|
66 |
key_columns => { department_id => 'id' }, |
|
67 |
}, |
|
68 |
|
|
69 |
employee => { |
|
70 |
class => 'SL::DB::Employee', |
|
71 |
key_columns => { employee_id => 'id' }, |
|
72 |
}, |
|
73 |
|
|
59 | 74 |
globalproject => { |
60 | 75 |
class => 'SL::DB::Project', |
61 | 76 |
key_columns => { globalproject_id => 'id' }, |
62 | 77 |
}, |
63 | 78 |
|
79 |
language => { |
|
80 |
class => 'SL::DB::Language', |
|
81 |
key_columns => { language_id => 'id' }, |
|
82 |
}, |
|
83 |
|
|
84 |
payment_terms => { |
|
85 |
class => 'SL::DB::PaymentTerm', |
|
86 |
key_columns => { payment_id => 'id' }, |
|
87 |
}, |
|
88 |
|
|
64 | 89 |
storno_obj => { |
65 | 90 |
class => 'SL::DB::PurchaseInvoice', |
66 | 91 |
key_columns => { storno_id => 'id' }, |
Auch abrufbar als: Unified diff
MetaSetup: Folgerun um die Foreign Keys umzudrehen