Objekt-Verknüpfung ar/ap/gl zu acc_trans-Objekten: one-to-many
Hat man ein ar/ap/gl Objekt kann man sich jetzt alle acc_trans-Einträge
dazu holen.
Die acc_trans-Objekte werden nach acc_trans_id sortiert zurückgegeben.
Die Methode transactions aus Invoice wurde entfernt.
use SL::DB::MetaSetup::GLTransaction;
use SL::DB::MetaSetup::GLTransaction;
-__PACKAGE__->meta->initialize;
# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
__PACKAGE__->meta->make_manager_class;
# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
__PACKAGE__->meta->make_manager_class;
+__PACKAGE__->meta->add_relationship(
+ transactions => {
+ type => 'one to many',
+ class => 'SL::DB::AccTransaction',
+ column_map => { id => 'trans_id' },
+ manager_args => {
+ with_objects => [ 'chart' ],
+ sort_by => 'acc_trans_id ASC',
+ },
+ },
+);
+
+__PACKAGE__->meta->initialize;
+
sub abbreviation {
my $self = shift;
sub abbreviation {
my $self = shift;
column_map => { id => 'trans_id' },
query_args => [ module => 'AR' ],
},
column_map => { id => 'trans_id' },
query_args => [ module => 'AR' ],
},
+ transactions => {
+ type => 'one to many',
+ class => 'SL::DB::AccTransaction',
+ column_map => { id => 'trans_id' },
+ manager_args => {
+ with_objects => [ 'chart' ],
+ sort_by => 'acc_trans_id ASC',
+ },
+ },
);
__PACKAGE__->meta->initialize;
);
__PACKAGE__->meta->initialize;
-sub transactions {
- my ($self) = @_;
-
- return unless $self->id;
-
- require SL::DB::AccTransaction;
- SL::DB::Manager::AccTransaction->get_all(query => [ trans_id => $self->id ]);
-}
-
column_map => { id => 'trans_id' },
query_args => [ module => 'AP' ],
},
column_map => { id => 'trans_id' },
query_args => [ module => 'AP' ],
},
+ transactions => {
+ type => 'one to many',
+ class => 'SL::DB::AccTransaction',
+ column_map => { id => 'trans_id' },
+ manager_args => { with_objects => [ 'chart' ],
+ sort_by => 'acc_trans_id ASC' }
+ },
);
__PACKAGE__->meta->initialize;
);
__PACKAGE__->meta->initialize;