kivitendo/SL/DB/InvoiceItem.pm @ ca055619
82515b2d | Sven Schöling | package SL::DB::InvoiceItem;
|
||
use strict;
|
||||
use SL::DB::MetaSetup::InvoiceItem;
|
||||
1b65e282 | Sven Schöling | use SL::DB::Helper::CustomVariables (
|
||
sub_module => 'invoice',
|
||||
cvars_alias => 1,
|
||||
overloads => {
|
||||
parts_id => 'SL::DB::Part',
|
||||
},
|
||||
);
|
||||
82515b2d | Sven Schöling | |||
__PACKAGE__->meta->add_relationship(
|
||||
part => {
|
||||
type => 'one to one',
|
||||
class => 'SL::DB::Part',
|
||||
column_map => { parts_id => 'id' },
|
||||
dbdaaafb | Moritz Bunkus | },
|
||
price_factor_obj => {
|
||||
type => 'one to one',
|
||||
class => 'SL::DB::PriceFactor',
|
||||
column_map => { price_factor_id => 'id' },
|
||||
},
|
||||
14d07f37 | Moritz Bunkus | unit_obj => {
|
||
type => 'one to one',
|
||||
class => 'SL::DB::Unit',
|
||||
column_map => { unit => 'name' },
|
||||
},
|
||||
82515b2d | Sven Schöling | );
|
||
# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
|
||||
__PACKAGE__->meta->make_manager_class;
|
||||
__PACKAGE__->meta->initialize;
|
||||
1;
|