From 6b4435606a78f88561491e5a6dcc59b7bef3fb14 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 12 May 2023 10:54:14 +1000 Subject: [PATCH] Fixes for chart queries --- app/Services/Chart/ChartService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Chart/ChartService.php b/app/Services/Chart/ChartService.php index 3b8262e369b6..4892b16e445e 100644 --- a/app/Services/Chart/ChartService.php +++ b/app/Services/Chart/ChartService.php @@ -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); }