Ajout d'un graphique

This commit is contained in:
Rodolphe Quiedeville 2005-02-18 13:02:50 +00:00
parent 8a90787eaf
commit b01c01ead6

View File

@ -36,6 +36,7 @@ require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/lignes/actives.class.php");
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/lignes/commandes.class.php");
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/lignes/commandes.week.class.php");
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/lignes/resiliation.week.class.php");
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/lignes/rejet.week.class.php");
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/clients/clients.week.class.php");
$error = 0;
@ -173,4 +174,14 @@ $file = $img_root . "lignes/resiliations.hebdomadaire.png";
$graph = new GraphLignesResiliationWeek($db, $file);
$graph->width = 400;
$graph->GraphMakeGraph();
/*****
*
*
*
*/
$file = $img_root . "lignes/rejets.hebdomadaire.png";
$graph = new GraphLignesRejetWeek($db, $file);
$graph->width = 400;
$graph->GraphMakeGraph();
?>