FiBu Schnellsuche - GL Habensumme entfernt, ist schon in oneline_summary
authorG. Richardson <information@kivitendo-premium.de>
Mon, 6 Feb 2017 09:12:09 +0000 (10:12 +0100)
committerG. Richardson <information@kivitendo-premium.de>
Mon, 6 Feb 2017 09:13:17 +0000 (10:13 +0100)
SL/Controller/TopQuickSearch/GLTransaction.pm

index f101739..ebdcee8 100644 (file)
@@ -45,11 +45,6 @@ sub query_autocomplete {
   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' ]);
 
-  # use the sum of all credit amounts as the "amount" of the gl transaction
-  foreach my $gl ( @$gls ) {
-    $gl->{'amount'} = sum map { $_->amount if $_->amount > 0 } @{$gl->transactions};
-  };
-
   my $gldata = [
     map(
       {