From: Moritz Bunkus Date: Thu, 3 Apr 2014 09:09:04 +0000 (+0200) Subject: Finanzübersicht: Zugriff auf 'data' gefixt (braucht Initializer) X-Git-Tag: release-3.2.0beta~476^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=58f2f2f46640e98ea43f1d7701c7e2f4b635784d;p=kivitendo-erp.git Finanzübersicht: Zugriff auf 'data' gefixt (braucht Initializer) --- diff --git a/SL/Controller/FinancialOverview.pm b/SL/Controller/FinancialOverview.pm index d3f20315c..49c04698c 100644 --- a/SL/Controller/FinancialOverview.pm +++ b/SL/Controller/FinancialOverview.pm @@ -14,8 +14,8 @@ use SL::Controller::Helper::ReportGenerator; use SL::Locale::String; use Rose::Object::MakeMethods::Generic ( - scalar => [ qw(report number_columns year current_year objects data subtotals_per_quarter salesman_id) ], - 'scalar --get_set_init' => [ qw(employees types) ], + scalar => [ qw(report number_columns year current_year objects subtotals_per_quarter salesman_id) ], + 'scalar --get_set_init' => [ qw(employees types data) ], ); __PACKAGE__->run_before(sub { $::auth->assert('report'); });