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); }