diff --git a/core/getStats.php b/core/getStats.php index 72b4215..74dbb8d 100644 --- a/core/getStats.php +++ b/core/getStats.php @@ -17,6 +17,27 @@ function getInterventi($db_conn, $isFrequent){ } return $report; } + function getInterventiAnnuali($anno, $db_conn){ + if ($anno == ""){ + $anno = "2018"; + } + $report = array(); + $sql = "SELECT COUNT(FK_TipoChiamata) AS num_inter, MONTH(Data) as mese FROM t_rapportiVVF WHERE YEAR(Data) = '$anno' GROUP BY MONTH(Data)"; + $risultato = mysqli_query($db_conn, $sql); + if ($risultato == false){ + die("error"); + } + $month = ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"]; + for ($i=0; $i < 12; $i++){ + $report[$i] = array($month[$i], 0); + } + $i=0; + while($ris = mysqli_fetch_array ($risultato, MYSQLI_ASSOC)){ + $report[$ris["mese"]-1][1] = $ris["num_inter"]; + $i++; + } + return $report; + } //$report['Intervento'] = getCallType($ris['Intervento'], $db_conn); //$report['N_intervento'] = $ris['n_inter']; diff --git a/stats.php b/stats.php index d2c0440..a3422ab 100644 --- a/stats.php +++ b/stats.php @@ -72,6 +72,8 @@ cancel