Ajout generation des stats

This commit is contained in:
Rodolphe Quiedeville 2007-07-11 14:10:49 +00:00
parent b05cbf694b
commit 9e92fe6810
2 changed files with 76 additions and 0 deletions

View File

@ -118,8 +118,15 @@ $nb = $obj->nbfac;
print "<tr $bc[1]>";
print '<td>Lignes de facture</td><td align="right"><a href="facture.php">'.$nb.'</a></td>';
print '<td align="center"><a href="emission.php">Emettre</a></td></tr>';
print '</table><br />';
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
print '<tr class="liste_titre"><td colspan="2">Statistiques</td></tr>';
print "<tr $bc[$var]>";
print '<td>Generation</td><td align="right"><a href="stats.php">Generer</a></td></tr>';
print '</table>';
print '</td><td valign="top" width="50%" rowspan="3">';
print '<form name="userfile" action="index.php" enctype="multipart/form-data" METHOD="POST">';

View File

@ -0,0 +1,69 @@
<?PHP
/* Copyright (C) 2007 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("./pre.inc.php");
if (!$user->rights->telephonie->facture->ecrire) accessforbidden();
llxHeader();
require_once (DOL_DOCUMENT_ROOT."/telephonie/stats/ProcessGraphLignes.class.php");
$obj = new ProcessGraphLignes($db);
$obj->GenerateAll();
/*
* Sécurité accés client
*/
print_barre_liste("Generation des statistiques", $page, "stats.php", "", $sortfield, $sortorder, '', $num);
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
print '<tr class="liste_titre">';
print '<td colspan="2">Messages</td>';
print "</tr>\n";
$var=True;
foreach ($obj->messages as $message)
{
$var=!$var;
print "<tr $bc[$var]>";
if (is_array($message))
{
$func = 'img_'.$message[0];
print '<td>'.$func().'</td>';
print '<td width="99%">'.$message[1].'</td></tr>';
}
else
{
print '<td>'.img_info().'</td>';
print '<td width="99%">'.$message.'</td></tr>';
}
}
print "</table>";
$db->close();
llxFooter("<em>Derni&egrave;re modification $Date$ r&eacute;vision $Revision$</em>");
?>