Revision 0395c036
Von Kivitendo Admin vor fast 10 Jahren hinzugefügt
SL/DB/Invoice.pm | ||
---|---|---|
45 | 45 |
column_map => { id => 'trans_id' }, |
46 | 46 |
query_args => [ module => 'AR' ], |
47 | 47 |
}, |
48 |
transactions => { |
|
49 |
type => 'one to many', |
|
50 |
class => 'SL::DB::AccTransaction', |
|
51 |
column_map => { id => 'trans_id' }, |
|
52 |
manager_args => { |
|
53 |
with_objects => [ 'chart' ], |
|
54 |
sort_by => 'acc_trans_id ASC', |
|
55 |
}, |
|
56 |
}, |
|
48 | 57 |
); |
49 | 58 |
|
50 | 59 |
__PACKAGE__->meta->initialize; |
... | ... | |
351 | 360 |
goto &customer; |
352 | 361 |
} |
353 | 362 |
|
354 |
sub transactions { |
|
355 |
my ($self) = @_; |
|
356 |
|
|
357 |
return unless $self->id; |
|
358 |
|
|
359 |
require SL::DB::AccTransaction; |
|
360 |
SL::DB::Manager::AccTransaction->get_all(query => [ trans_id => $self->id ]); |
|
361 |
} |
|
362 |
|
|
363 | 363 |
1; |
364 | 364 |
|
365 | 365 |
__END__ |
Auch abrufbar als: Unified diff
ar/ap/gl - neues Relationship "transactions"
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.