Nouveau fichier
This commit is contained in:
parent
40fbe4b4dd
commit
a187c2a08b
109
htdocs/telephonie/stats/commerciaux/index.php
Normal file
109
htdocs/telephonie/stats/commerciaux/index.php
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<?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("./pre.inc.php");
|
||||||
|
|
||||||
|
$page = $_GET["page"];
|
||||||
|
$sortorder = $_GET["sortorder"];
|
||||||
|
|
||||||
|
if (!$user->rights->telephonie->lire)
|
||||||
|
accessforbidden();
|
||||||
|
|
||||||
|
llxHeader('','Telephonie - Statistiques - Commerciaux');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Sécurité accés client
|
||||||
|
*/
|
||||||
|
if ($user->societe_id > 0)
|
||||||
|
{
|
||||||
|
$action = '';
|
||||||
|
$socidp = $user->societe_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Mode Liste
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
|
||||||
|
print '<tr><td width="30%" valign="top">';
|
||||||
|
|
||||||
|
print '<table class="border" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
|
||||||
|
print '<tr class="liste_titre"><td width="50%" valign="top">Nom</td><td align="center">Nb Lignes</td></tr>';
|
||||||
|
|
||||||
|
$sql = "SELECT count(*) as cc , c.name, c.firstname, c.rowid";
|
||||||
|
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_societe_ligne as l";
|
||||||
|
$sql .= " , ".MAIN_DB_PREFIX."user as c";
|
||||||
|
$sql .= " WHERE c.rowid = l.fk_commercial GROUP BY c.name ORDER BY cc DESC";
|
||||||
|
|
||||||
|
$result = $db->query($sql);
|
||||||
|
if ($result)
|
||||||
|
{
|
||||||
|
$num = $db->num_rows();
|
||||||
|
$i = 0;
|
||||||
|
$datas = array();
|
||||||
|
$legends = array();
|
||||||
|
|
||||||
|
while ($i < $num)
|
||||||
|
{
|
||||||
|
$row = $db->fetch_row($i);
|
||||||
|
|
||||||
|
$var=!$var;
|
||||||
|
|
||||||
|
print "<tr $bc[$var]>";
|
||||||
|
|
||||||
|
print '<td width="50%" valign="top">';
|
||||||
|
print '<a href="index.php?commid='.$row[3];
|
||||||
|
print '">'.$row[2]." ". $row[1].'</a></td><td align="center">'.$row[0].'</td></tr>';
|
||||||
|
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
$db->free();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print $db->error() . ' ' . $sql;
|
||||||
|
}
|
||||||
|
|
||||||
|
print '</table>';
|
||||||
|
|
||||||
|
print '</td>';
|
||||||
|
|
||||||
|
print '</td><td valign="top" width="70%">';
|
||||||
|
|
||||||
|
print '<img src="./graphcommandeweek.php?commid='.$_GET["commid"].'"><br /><br />';
|
||||||
|
print '<img src="./graphcommandemonth.php?commid='.$_GET["commid"].'"><br /><br />';
|
||||||
|
|
||||||
|
print '</td></tr>';
|
||||||
|
|
||||||
|
|
||||||
|
print '</table>';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
?>
|
||||||
64
htdocs/telephonie/stats/commerciaux/pre.inc.php
Normal file
64
htdocs/telephonie/stats/commerciaux/pre.inc.php
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<?PHP
|
||||||
|
/* Copyright (C) 2004 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("../../../main.inc.php");
|
||||||
|
require(DOL_DOCUMENT_ROOT."/telephonie/lignetel.class.php");
|
||||||
|
|
||||||
|
$user->getrights('telephonie');
|
||||||
|
|
||||||
|
function llxHeader($head = "", $title="") {
|
||||||
|
global $user, $conf;
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
top_menu($head, $title);
|
||||||
|
|
||||||
|
$menu = new Menu();
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/index.php", "Telephonie");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/tarifs/", "Tarifs");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/client/index.php", "Clients");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/ligne/index.php", "Lignes");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/ligne/commande/", "Commandes");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/facture/", "Factures");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/fournisseurs.php", "Fournisseurs");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/stats/", "Stats");
|
||||||
|
$menu->add_submenu(DOL_URL_ROOT."/telephonie/stats/clients/", "Clients");
|
||||||
|
$menu->add_submenu(DOL_URL_ROOT."/telephonie/stats/commerciaux/", "Commerciaux");
|
||||||
|
$menu->add_submenu(DOL_URL_ROOT."/telephonie/stats/lignes/", "Lignes");
|
||||||
|
$menu->add_submenu(DOL_URL_ROOT."/telephonie/stats/communications/", "Communications");
|
||||||
|
$menu->add_submenu(DOL_URL_ROOT."/telephonie/stats/factures/", "Factures");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/statca/", "Chiffre d'affaire");
|
||||||
|
|
||||||
|
left_menu($menu->liste);
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
112
htdocs/telephonie/stats/communications/lastmonth.php
Normal file
112
htdocs/telephonie/stats/communications/lastmonth.php
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
<?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("./pre.inc.php");
|
||||||
|
|
||||||
|
$page = $_GET["page"];
|
||||||
|
$sortorder = $_GET["sortorder"];
|
||||||
|
|
||||||
|
if (!$user->rights->telephonie->lire)
|
||||||
|
accessforbidden();
|
||||||
|
|
||||||
|
llxHeader('','Telephonie - Statistiques');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Sécurité accés client
|
||||||
|
*/
|
||||||
|
if ($user->societe_id > 0)
|
||||||
|
{
|
||||||
|
$action = '';
|
||||||
|
$socidp = $user->societe_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
$h = 0;
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/index.php';
|
||||||
|
$head[$h][1] = "Global";
|
||||||
|
$h++;
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/lastmonth.php';
|
||||||
|
$head[$h][1] = "Durée";
|
||||||
|
$hselected = $h;
|
||||||
|
$h++;
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/destmonth.php';
|
||||||
|
$head[$h][1] = "Destinations";
|
||||||
|
$h++;
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/rentabilite.php';
|
||||||
|
$head[$h][1] = "Rentabilite";
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/analyse.php';
|
||||||
|
$head[$h][1] = "Analyse";
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
dolibarr_fiche_head($head, $hselected, "Communications");
|
||||||
|
|
||||||
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
|
||||||
|
print '<tr><td valign="top">';
|
||||||
|
|
||||||
|
$now = time();
|
||||||
|
$year = strftime("%Y", $now);
|
||||||
|
$month = strftime("%m", $now);
|
||||||
|
|
||||||
|
for ($i = 1 ; $i < 4 ; $i++)
|
||||||
|
{
|
||||||
|
$month = $month - 1;
|
||||||
|
|
||||||
|
if ($month == 0)
|
||||||
|
{
|
||||||
|
$year = $year - 1;
|
||||||
|
$month = 12;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print '<img src="./duree_repart-'.$year.substr("00".$month, -2).'.png"><br /><br />';
|
||||||
|
|
||||||
|
}
|
||||||
|
print '</td><td valign="top">';
|
||||||
|
|
||||||
|
$year = strftime("%Y", $now);
|
||||||
|
$month = strftime("%m", $now);
|
||||||
|
|
||||||
|
for ($i = 1 ; $i < 4 ; $i++)
|
||||||
|
{
|
||||||
|
$month = $month - 1;
|
||||||
|
|
||||||
|
if ($month == 0)
|
||||||
|
{
|
||||||
|
$year = $year - 1;
|
||||||
|
$month = 12;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print '<img src="./dureelong_repart-'.$year.substr("00".$month, -2).'.png"><br /><br />';
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
print '</td></tr>';
|
||||||
|
|
||||||
|
print '</table>';
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
?>
|
||||||
118
htdocs/telephonie/stats/communications/rentabilite.php
Normal file
118
htdocs/telephonie/stats/communications/rentabilite.php
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
<?PHP
|
||||||
|
/* Copyright (C) 2004 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");
|
||||||
|
|
||||||
|
$page = $_GET["page"];
|
||||||
|
$sortorder = $_GET["sortorder"];
|
||||||
|
|
||||||
|
if (!$user->rights->telephonie->lire)
|
||||||
|
accessforbidden();
|
||||||
|
|
||||||
|
llxHeader('','Telephonie - Statistiques');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Sécurité accés client
|
||||||
|
*/
|
||||||
|
if ($user->societe_id > 0)
|
||||||
|
{
|
||||||
|
$action = '';
|
||||||
|
$socidp = $user->societe_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
$h = 0;
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/index.php';
|
||||||
|
$head[$h][1] = "Global";
|
||||||
|
$h++;
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/lastmonth.php';
|
||||||
|
$head[$h][1] = "Durée";
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/destmonth.php';
|
||||||
|
$head[$h][1] = "Destinations";
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/rentabilite.php';
|
||||||
|
$head[$h][1] = "Rentabilite";
|
||||||
|
$hselected = $h;
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/communications/analyse.php';
|
||||||
|
$head[$h][1] = "Analyse";
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
dolibarr_fiche_head($head, $hselected, "Communications");
|
||||||
|
|
||||||
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
|
||||||
|
print '<tr><td valign="top">';
|
||||||
|
|
||||||
|
$sql = "SELECT date_format(date, '%Y%m'), avg(cout_vente)";
|
||||||
|
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_communications_details";
|
||||||
|
$sql .= " GROUP BY date_format(date, '%Y%m') DESC";
|
||||||
|
|
||||||
|
if ($db->query($sql))
|
||||||
|
{
|
||||||
|
$num = $db->num_rows();
|
||||||
|
$i = 0;
|
||||||
|
$ligne = new LigneTel($db);
|
||||||
|
|
||||||
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
print '<tr class="liste_titre"><td>Mois</td><td align="right">Marge</td>';
|
||||||
|
print "</tr>\n";
|
||||||
|
$var=True;
|
||||||
|
|
||||||
|
while ($i < $num)
|
||||||
|
{
|
||||||
|
$row = $db->fetch_row();
|
||||||
|
|
||||||
|
$var=!$var;
|
||||||
|
|
||||||
|
print "<tr $bc[$var]>";
|
||||||
|
print '<td>'.$row[0].'</td>'."\n";
|
||||||
|
print '<td align="right">'.round($row[1],4)."</td>\n";
|
||||||
|
|
||||||
|
|
||||||
|
print "</tr>\n";
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
print "</table>";
|
||||||
|
$db->free();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print $db->error() . ' ' . $sql;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print '</td><td valign="top">';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
print '</td></tr>';
|
||||||
|
|
||||||
|
print '</table>';
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
?>
|
||||||
Loading…
Reference in New Issue
Block a user