Revision 29666b19
Von Kivitendo Admin vor etwa 8 Jahren hinzugefügt
SL/Controller/TopQuickSearch/GLTransaction.pm | ||
---|---|---|
push( @arfilter, (or => [ invnumber => $arinvnumberquery, name => $namequery ] ) );
|
||
push( @apfilter, (or => [ invnumber => $apinvnumberquery, name => $namequery ] ) );
|
||
|
||
my $gls = SL::DB::Manager::GLTransaction->get_all( query => [ @glfilter ], limit => $limit, sort_by => 'transdate DESC');
|
||
my $gls = SL::DB::Manager::GLTransaction->get_all( query => [ @glfilter ], limit => $limit, sort_by => 'transdate DESC', with_objects => [ 'transactions' ]);
|
||
my $ars = SL::DB::Manager::Invoice->get_all( query => [ @arfilter ], limit => $limit, sort_by => 'transdate DESC', with_objects => [ 'customer' ]);
|
||
my $aps = SL::DB::Manager::PurchaseInvoice->get_all(query => [ @apfilter ], limit => $limit, sort_by => 'transdate DESC', with_objects => [ 'vendor' ]);
|
||
|
Auch abrufbar als: Unified diff
FiBu Schnellsuche - transactions bei gl direkt mitladen
Da z.B. bei oneline_summary die Haben-Summe aus der acc_trans berechnet
wird.