1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Fixes for chart queries

This commit is contained in:
David Bomba 2023-05-12 10:54:14 +10:00
parent e1b5b8ef69
commit 6b4435606a

View File

@ -75,7 +75,7 @@ class ChartService
foreach ($currencies as $key => $value) {
$data[$key]['invoices'] = $this->getInvoiceChartQuery($start_date, $end_date, $key);
// $data[$key]['outstanding'] = $this->getOutstandingChartQuery($start_date, $end_date, $key);
$data[$key]['outstanding'] = $this->getOutstandingChartQuery($start_date, $end_date, $key);
$data[$key]['payments'] = $this->getPaymentChartQuery($start_date, $end_date, $key);
$data[$key]['expenses'] = $this->getExpenseChartQuery($start_date, $end_date, $key);
}