Revision 4bcf8804
Von Sven Schöling vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/Invoice.pm | ||
---|---|---|
68 | 68 |
key_columns => { cp_id => 'cp_id' }, |
69 | 69 |
}, |
70 | 70 |
|
71 |
currency => { |
|
72 |
class => 'SL::DB::Currency', |
|
73 |
key_columns => { currency_id => 'id' }, |
|
74 |
}, |
|
75 |
|
|
71 | 76 |
customer => { |
72 | 77 |
class => 'SL::DB::Customer', |
73 | 78 |
key_columns => { customer_id => 'id' }, |
74 | 79 |
}, |
75 | 80 |
|
81 |
department => { |
|
82 |
class => 'SL::DB::Department', |
|
83 |
key_columns => { department_id => 'id' }, |
|
84 |
}, |
|
85 |
|
|
86 |
dunning_config => { |
|
87 |
class => 'SL::DB::DunningConfig', |
|
88 |
key_columns => { dunning_config_id => 'id' }, |
|
89 |
}, |
|
90 |
|
|
91 |
employee => { |
|
92 |
class => 'SL::DB::Employee', |
|
93 |
key_columns => { employee_id => 'id' }, |
|
94 |
}, |
|
95 |
|
|
76 | 96 |
globalproject => { |
77 | 97 |
class => 'SL::DB::Project', |
78 | 98 |
key_columns => { globalproject_id => 'id' }, |
79 | 99 |
}, |
80 | 100 |
|
101 |
language => { |
|
102 |
class => 'SL::DB::Language', |
|
103 |
key_columns => { language_id => 'id' }, |
|
104 |
}, |
|
105 |
|
|
106 |
payment_terms => { |
|
107 |
class => 'SL::DB::PaymentTerm', |
|
108 |
key_columns => { payment_id => 'id' }, |
|
109 |
}, |
|
110 |
|
|
111 |
salesman => { |
|
112 |
class => 'SL::DB::Employee', |
|
113 |
key_columns => { salesman_id => 'id' }, |
|
114 |
}, |
|
115 |
|
|
116 |
shipto => { |
|
117 |
class => 'SL::DB::Shipto', |
|
118 |
key_columns => { shipto_id => 'shipto_id' }, |
|
119 |
}, |
|
120 |
|
|
81 | 121 |
storno_obj => { |
82 | 122 |
class => 'SL::DB::Invoice', |
83 | 123 |
key_columns => { storno_id => 'id' }, |
Auch abrufbar als: Unified diff
MetaSetup: Folgerun um die Foreign Keys umzudrehen