From: Moritz Bunkus Date: Tue, 26 Feb 2013 12:40:59 +0000 (+0100) Subject: Finanzcontrollingbericht: geschlossene Aufträge nicht berücksichtigen X-Git-Tag: release-3.1.0beta1~22^2~70 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=0a6c79998344bd422f4654f1a88cdb8c7ff7f67d;p=kivitendo-erp.git Finanzcontrollingbericht: geschlossene Aufträge nicht berücksichtigen --- diff --git a/SL/Controller/FinancialControllingReport.pm b/SL/Controller/FinancialControllingReport.pm index e57599ace..6a836e583 100644 --- a/SL/Controller/FinancialControllingReport.pm +++ b/SL/Controller/FinancialControllingReport.pm @@ -70,7 +70,8 @@ sub setup_db_args_for_list { $args{query} = [ @{ $args{query} || [] }, SL::DB::Manager::Order->type_filter('sales_order'), - or => [ + '!closed' => 1, + or => [ globalproject_id => undef, and => [ 'globalproject.active' => 1,