1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Fix for scheduled reports

This commit is contained in:
Hillel Coren 2018-03-21 16:40:39 +02:00
parent c4dc100180
commit 28e64b6473

View File

@ -31,6 +31,8 @@ class RunReport extends Job
$reportType = $this->reportType;
$config = $this->config;
$config['subgroup'] = false; // don't yet support charts in export
$isExport = $this->isExport;
$reportClass = '\\App\\Ninja\\Reports\\' . Str::studly($reportType) . 'Report';