From ad76415d35623b0abb52ecfad5816c8436270719 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 8 Feb 2005 14:49:17 +0000 Subject: [PATCH] Nouveau fichier --- .../stats/lignes/commandes.week.class.php | 109 ++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 htdocs/telephonie/stats/lignes/commandes.week.class.php diff --git a/htdocs/telephonie/stats/lignes/commandes.week.class.php b/htdocs/telephonie/stats/lignes/commandes.week.class.php new file mode 100644 index 00000000000..06a9be892dd --- /dev/null +++ b/htdocs/telephonie/stats/lignes/commandes.week.class.php @@ -0,0 +1,109 @@ + + * + * 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 GraphLignesCommandesWeek extends GraphBar { + + Function GraphLignesCommandesWeek($DB, $file) + { + $this->db = $DB; + $this->file = $file; + + $this->client = 0; + $this->titre = "Commandes Lignes"; + + $this->barcolor = "blue"; + $this->showframe = true; + } + + Function GraphMakeGraph($commercial=0) + { + $num = 0; + + $sql = "SELECT date_format(date_commande,'%x%v'), count(*)"; + $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_societe_ligne"; + $sql .= " WHERE date_commande IS NOT NULL "; + + if ($commercial > 0) + { + $sql .= " AND fk_commercial = ".$commercial; + } + + $sql .= " GROUP BY date_format(date_commande,'%x%v') ASC"; + + $result = $this->db->query($sql); + + if ($result) + { + $num = $this->db->num_rows(); + + + $i = 0; + $j = 0; + $attente = array(); + $acommander = array(); + $commandee = array(); + $active = array(); + $last = 0; + $oldyear == 0; + + + while ($i < $num) + { + + $row = $this->db->fetch_row(); + + if ($oldyear == 0) + { + $oldyear = substr($row[0],0,4); + } + + + if ($oldyear == substr($row[0],0,4) && $j > 0 && substr($row[0],-2) <> ($labels[$j-1] +1 ) ) + { + + $datas[$j] = 0; + $labels[$j] = $labels[$j-1] + 1; + $j++; + + } + + $datas[$j] = $row[1]; + $labels[$j] = substr($row[0],-2); + + $i++; + $j++; + } + + $this->db->free(); + } + else + { + print $this->db->error() . ' ' . $sql; + } + + $this->GraphDraw($this->file, $datas, $labels); + } +} + +?>