mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-30 13:21:30 +01:00
98 lines
2.4 KiB
PHP
98 lines
2.4 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
*
|
|
* 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/bar.class.php");
|
|
|
|
class GraphCommNbMensuel extends GraphBar{
|
|
|
|
|
|
Function GraphCommNbMensuel($DB, $file)
|
|
{
|
|
$this->name = "comm.nbmensuel";
|
|
$this->db = $DB;
|
|
$this->file = $file;
|
|
$this->showframe = true;
|
|
$this->client = 0;
|
|
$this->titre = "Nombre de communication par mois";
|
|
|
|
$this->barcolor = "bisque3";
|
|
|
|
$this->datas = array();
|
|
$this->labels = array();
|
|
}
|
|
|
|
Function Graph($datas='', $labels='')
|
|
{
|
|
$this->GetDatas();
|
|
|
|
if (sizeof($this->datas))
|
|
{
|
|
$this->GraphDraw($this->file, $this->datas, $this->labels);
|
|
}
|
|
}
|
|
|
|
Function GetDatas()
|
|
{
|
|
if ($this->client == 0)
|
|
{
|
|
|
|
$sql = "SELECT date_format(date, '%Y%m'), count(*)";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_communications_details";
|
|
$sql .= " GROUP BY date_format(date, '%Y%m') ASC";
|
|
}
|
|
else
|
|
{
|
|
$sql = "SELECT date_format(td.date,'%Y%m'), count(*)";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_communications_details as td";
|
|
$sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne as s";
|
|
|
|
$sql .= " WHERE td.ligne = s.ligne";
|
|
$sql .= " AND s.fk_client_comm = ".$this->client;
|
|
|
|
$sql .= " GROUP BY date_format(td.date,'%Y%m') ASC ";
|
|
}
|
|
|
|
|
|
if ($this->db->query($sql))
|
|
{
|
|
$num = $this->db->num_rows();
|
|
$i = 0;
|
|
|
|
while ($i < $num)
|
|
{
|
|
$row = $this->db->fetch_row();
|
|
|
|
$this->labels[$i] = substr($row[0],4,2) . '/'.substr($row[0],2,2);
|
|
$this->datas[$i] = $row[1];
|
|
|
|
$i++;
|
|
}
|
|
$this->db->free();
|
|
}
|
|
else
|
|
{
|
|
dolibarr_syslog("Error");
|
|
}
|
|
}
|
|
}
|
|
?>
|