From b01c01ead653ba9a4aa7b3111fbf6dea034f65a7 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Fri, 18 Feb 2005 13:02:50 +0000 Subject: [PATCH] Ajout d'un graphique --- htdocs/telephonie/script/graph-statistiques-week.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/htdocs/telephonie/script/graph-statistiques-week.php b/htdocs/telephonie/script/graph-statistiques-week.php index de04866d5d2..b3b6dd734a9 100644 --- a/htdocs/telephonie/script/graph-statistiques-week.php +++ b/htdocs/telephonie/script/graph-statistiques-week.php @@ -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(); ?>