From 1d5784c02bf85a7adb0e4a9f703a18e65760f3ee Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 9 Feb 2005 14:55:03 +0000 Subject: [PATCH] Nouveau fichier --- .../stats/clients/clients.week.class.php | 153 ++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 htdocs/telephonie/stats/clients/clients.week.class.php diff --git a/htdocs/telephonie/stats/clients/clients.week.class.php b/htdocs/telephonie/stats/clients/clients.week.class.php new file mode 100644 index 00000000000..93a82ac994b --- /dev/null +++ b/htdocs/telephonie/stats/clients/clients.week.class.php @@ -0,0 +1,153 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ + * $Source$ + * + */ + +require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/graph/bar.class.php"); + +class GraphClientsWeek extends GraphBar { + + Function GraphClientsWeek($DB, $file) + { + $this->db = $DB; + $this->file = $file; + + $this->client = 0; + $this->titre = "Nouveaux clients par semaine"; + + $this->barcolor = "yellow"; + $this->showframe = true; + } + + Function GraphMakeGraph($commercial=0) + { + $num = 0; + + $sql = "SELECT fk_client_comm, date_format(date_commande,'%x%v')"; + $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_societe_ligne"; + $sql .= " WHERE date_commande IS NOT NULL "; + + if ($commercial > 0) + { + $sql .= " AND fk_commercial = ".$commercial; + } + + $sql .= " ORDER BY date_format(date_commande,'%x%v') ASC"; + + $result = $this->db->query($sql); + + if ($result) + { + $num = $this->db->num_rows(); + + $i = 0; + $j = 0; + $datas = array(); + $labels = array(); + $oldweek = 0; + $clients = array(); + + while ($i < $num) + { + $row = $this->db->fetch_row(); + + if ($oldweek == 0) + { + $oldweek = $row[1]; + array_push($clients, $row[0]); + + $datas[$j] = 1; + $labels[$j] = $row[1]; + } + else + { + + if ($row[1] == $labels[$j]) + { + if (! in_array($row[0], $clients)) + { + array_push($clients, $row[0]); + $datas[$j]++; + } + } + else + { + $j++; + if (! in_array($row[0], $clients)) + { + array_push($clients, $row[0]); + $datas[$j] = 1; + } + else + { + $datas[$j] = 0; + } + + $labels[$j] = $row[1]; + } + + } + + $i++; + } + + $this->db->free(); + } + else + { + print $this->db->error() . ' ' . $sql; + } + + $datas_new = array(); + $labels_new = array(); + $j = 0 ; + + $datas_new[0] = $datas[0]; + $labels_new[0] = ceil(substr($labels[0],-2)); + + for ($i = 1 ; $i < sizeof($labels) ; $i++) + { + if (substr($labels[$i], -2) - substr($labels[$i-1], -2) > 1) + { + for ($k = 1 ; $k < ($labels[$i] - $labels[$i-1]) ; $k++) + { + $datas_new[$i+$j] = 0; + $labels_new[$i+$j] = ceil(substr($labels[$i-1], -2) + $k) ; // suppression du 0 + + $j++; + } + } + + $datas_new[$i+$j] = $datas[$i]; + $labels_new[$i+$j] = ceil(substr($labels[$i], - 2)); + } + + $nbel = sizeof($datas_new); + + for ($i = 0 ; $i < ($nbel - 22) ; $i++) + { + array_shift($datas_new); + array_shift($labels_new); + } + + $this->GraphDraw($this->file, $datas_new, $labels_new); + } +} +?>