Ajout graph

This commit is contained in:
Rodolphe Quiedeville 2005-11-23 22:54:36 +00:00
parent cd2a1e221d
commit 4735fc7456

View File

@ -42,6 +42,18 @@ $error = 0;
$img_root = DOL_DATA_ROOT."/graph/telephonie/"; $img_root = DOL_DATA_ROOT."/graph/telephonie/";
/*****
*
*
*
*/
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/commerciaux/commerciaux.po.class.php");
$file = $img_root . "commerciaux/po.mensuel.png";
$graph = new GraphCommerciauxPO($db, $file);
$graph->width = 400;
$graph->GraphMakeGraph();
/***********************************************************************/ /***********************************************************************/
/* /*
/* Contrats /* Contrats
@ -163,10 +175,8 @@ if ($db->query($sql))
/* Prise ordre des distributeur /* Prise ordre des distributeur
/* /*
/***********************************************************************/ /***********************************************************************/
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/contrats/modereglement.class.php"); require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/contrats/modereglement.class.php");
$sql = "SELECT distinct p.fk_distributeur, d.nom"; $sql = "SELECT distinct p.fk_distributeur, d.nom";
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_contrat_priseordre as p"; $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_contrat_priseordre as p";
$sql .= " , ".MAIN_DB_PREFIX."telephonie_distributeur as d"; $sql .= " , ".MAIN_DB_PREFIX."telephonie_distributeur as d";
@ -194,9 +204,9 @@ if ($resql)
/* /*
* *
*/ */
$sql = "SELECT rowid"; $sql = "SELECT rowid";
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_distributeur"; $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_distributeur";
@ -209,8 +219,6 @@ if ($resql)
while ($i < $num) while ($i < $num)
{ {
$row = $db->fetch_row($resql); $row = $db->fetch_row($resql);
$file = $img_root . "distributeurs/".$row[0]."/clients.hebdomadaire.png"; $file = $img_root . "distributeurs/".$row[0]."/clients.hebdomadaire.png";
if ($verbose) print "Graph : Lignes commandes$file\n"; if ($verbose) print "Graph : Lignes commandes$file\n";
$graph = new GraphClientsWeek($db, $file); $graph = new GraphClientsWeek($db, $file);
@ -221,7 +229,6 @@ if ($resql)
} }
} }
/***** /*****
* *
* *
@ -242,4 +249,5 @@ $file = $img_root . "lignes/rejets.hebdomadaire.png";
$graph = new GraphLignesRejetWeek($db, $file); $graph = new GraphLignesRejetWeek($db, $file);
$graph->width = 400; $graph->width = 400;
$graph->GraphMakeGraph(); $graph->GraphMakeGraph();
?> ?>