Revision 4fd22b56
Von Sven Schöling vor etwa 14 Jahren hinzugefügt
SL/DB/MetaSetup/Invoice.pm | ||
---|---|---|
68 | 68 |
key_columns => { customer_id => 'id' }, |
69 | 69 |
}, |
70 | 70 |
|
71 |
dunning_config => { |
|
72 |
class => 'SL::DB::DunningConfig', |
|
73 |
key_columns => { dunning_config_id => 'id' }, |
|
74 |
}, |
|
75 |
|
|
71 | 76 |
globalproject => { |
72 | 77 |
class => 'SL::DB::Project', |
73 | 78 |
key_columns => { globalproject_id => 'id' }, |
74 | 79 |
}, |
75 | 80 |
|
81 |
salesman => { |
|
82 |
class => 'SL::DB::Employee', |
|
83 |
key_columns => { salesman_id => 'id' }, |
|
84 |
}, |
|
85 |
|
|
76 | 86 |
storno_obj => { |
77 | 87 |
class => 'SL::DB::Invoice', |
78 | 88 |
key_columns => { storno_id => 'id' }, |
Auch abrufbar als: Unified diff
DBO Update - alle normalen Models hinzugefügt.