Revision 2aecf487
Von Sven Schöling vor mehr als 10 Jahren hinzugefügt
SL/DB/Invoice.pm | ||
---|---|---|
320 | 320 |
goto &transdate; |
321 | 321 |
} |
322 | 322 |
|
323 |
sub transactions { |
|
324 |
my ($self) = @_; |
|
325 |
|
|
326 |
return unless $self->id; |
|
327 |
|
|
328 |
require SL::DB::AccTransaction; |
|
329 |
SL::DB::Manager::AccTransaction->get_all(query => [ trans_id => $self->id ]); |
|
330 |
} |
|
331 |
|
|
323 | 332 |
1; |
324 | 333 |
|
325 | 334 |
__END__ |
Auch abrufbar als: Unified diff
SL::DB::Invoice: Verknüpfung auf die Buchungsobjekte