Revision 39e13b0f
Von Moritz Bunkus vor mehr als 13 Jahren hinzugefügt
SL/DB/Customer.pm | ||
---|---|---|
class => 'SL::DB::Business',
|
||
column_map => { business_id => 'id' },
|
||
},
|
||
custom_variables => {
|
||
type => 'one to many',
|
||
class => 'SL::DB::CustomVariable',
|
||
column_map => { id => 'trans_id' },
|
||
query_args => [ config_id => [ \"(SELECT custom_variable_configs.id FROM custom_variable_configs WHERE custom_variable_configs.module = 'CT')" ] ],
|
||
},
|
||
);
|
||
|
||
__PACKAGE__->meta->make_manager_class;
|
SL/DB/Part.pm | ||
---|---|---|
class => 'SL::DB::Price',
|
||
column_map => { id => 'parts_id' },
|
||
},
|
||
makemodels => {
|
||
type => 'one to many',
|
||
class => 'SL::DB::MakeModel',
|
||
column_map => { id => 'parts_id' },
|
||
},
|
||
translations => {
|
||
type => 'one to many',
|
||
class => 'SL::DB::Translation',
|
||
column_map => { id => 'parts_id' },
|
||
},
|
||
custom_variables => {
|
||
type => 'one to many',
|
||
class => 'SL::DB::CustomVariable',
|
||
column_map => { id => 'trans_id' },
|
||
query_args => [ config_id => [ \"(SELECT custom_variable_configs.id FROM custom_variable_configs WHERE custom_variable_configs.module = 'IC')" ] ],
|
||
},
|
||
);
|
||
|
||
__PACKAGE__->meta->initialize;
|
SL/DB/Vendor.pm | ||
---|---|---|
class => 'SL::DB::Business',
|
||
column_map => { business_id => 'id' },
|
||
},
|
||
custom_variables => {
|
||
type => 'one to many',
|
||
class => 'SL::DB::CustomVariable',
|
||
column_map => { id => 'trans_id' },
|
||
query_args => [ config_id => [ \"(SELECT custom_variable_configs.id FROM custom_variable_configs WHERE custom_variable_configs.module = 'CT')" ] ],
|
||
},
|
||
);
|
||
|
||
__PACKAGE__->meta->make_manager_class;
|
Auch abrufbar als: Unified diff
Verknüpfungen Parts/Customers/Vendors -> Custom Variables