Nouveau fichier
This commit is contained in:
parent
e2530cc4da
commit
c1e810527a
@ -0,0 +1,84 @@
|
||||
<?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_once (DOL_DOCUMENT_ROOT."/telephonie/stats/graph/bar.class.php");
|
||||
|
||||
class GraphCommercialGain extends GraphBar {
|
||||
|
||||
Function GraphCommercialGain($DB, $file)
|
||||
{
|
||||
$this->db = $DB;
|
||||
$this->file = $file;
|
||||
|
||||
$this->client = 0;
|
||||
$this->titre = "Gain mensuel";
|
||||
|
||||
$this->barcolor = "pink";
|
||||
$this->showframe = true;
|
||||
}
|
||||
|
||||
Function GraphMakeGraph($commercial=0)
|
||||
{
|
||||
$num = 0;
|
||||
|
||||
$sql = "SELECT date_format(f.date,'%Y%m'), sum(f.gain)";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_facture as f";
|
||||
$sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne as l";
|
||||
$sql .= " WHERE l.rowid = f.fk_ligne";
|
||||
$sql .= " AND l.fk_commercial_sign = ".$commercial;
|
||||
$sql .= " GROUP BY date_format(f.date,'%Y%m') ASC";
|
||||
|
||||
$resql = $this->db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
$num = $this->db->num_rows($resql);
|
||||
$i = 0;
|
||||
$j = -1;
|
||||
$datas = array();
|
||||
$labels = array();
|
||||
|
||||
while ($i < $num)
|
||||
{
|
||||
$row = $this->db->fetch_row($resql);
|
||||
|
||||
$datas[$i] = $row[1];
|
||||
$labels[$i] = substr($row[0],-2)."/".substr($row[0],2,2);
|
||||
|
||||
$i++;
|
||||
}
|
||||
|
||||
$this->db->free($resql);
|
||||
}
|
||||
else
|
||||
{
|
||||
print $this->db->error() . ' ' . $sql;
|
||||
}
|
||||
|
||||
if (sizeof($datas))
|
||||
{
|
||||
$this->GraphDraw($this->file, $datas, $labels);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
105
htdocs/telephonie/stats/commerciaux/groupes/groupe.ca.class.php
Normal file
105
htdocs/telephonie/stats/commerciaux/groupes/groupe.ca.class.php
Normal file
@ -0,0 +1,105 @@
|
||||
<?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_once (DOL_DOCUMENT_ROOT."/telephonie/stats/graph/bar.class.php");
|
||||
|
||||
class GraphGroupeChiffreAffaire extends GraphBar {
|
||||
|
||||
Function GraphGroupeChiffreAffaire($DB, $file)
|
||||
{
|
||||
$this->db = $DB;
|
||||
$this->file = $file;
|
||||
|
||||
$this->client = 0;
|
||||
$this->titre = "";
|
||||
|
||||
$this->barcolor = "blue";
|
||||
$this->showframe = true;
|
||||
}
|
||||
|
||||
Function GraphMakeGraph($groupe=0)
|
||||
{
|
||||
$num = 0;
|
||||
|
||||
$sql = "SELECT nom";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."usergroup as u";
|
||||
$sql .= " WHERE u.rowid = ".$groupe;
|
||||
|
||||
$resql = $this->db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
$row = $this->db->fetch_row($resql);
|
||||
$nom = $row[0];
|
||||
$this->db->free($resql);
|
||||
}
|
||||
else
|
||||
{
|
||||
print $this->db->error() . ' ' . $sql;
|
||||
}
|
||||
|
||||
$this->titre = "Chiffre d'affaire mensuel : ".$nom;
|
||||
|
||||
$sql = "SELECT date_format(f.date,'%Y%m'), sum(f.cout_vente)";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_facture as f";
|
||||
$sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne as l";
|
||||
$sql .= " , ".MAIN_DB_PREFIX."usergroup_user as ug";
|
||||
$sql .= " WHERE l.rowid = f.fk_ligne";
|
||||
$sql .= " AND ug.fk_user = l.fk_commercial_sign";
|
||||
$sql .= " AND ug.fk_usergroup = ".$groupe;
|
||||
$sql .= " GROUP BY date_format(f.date,'%Y%m') ASC";
|
||||
|
||||
$resql = $this->db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
$num = $this->db->num_rows($resql);
|
||||
$i = 0;
|
||||
$j = -1;
|
||||
$datas = array();
|
||||
$labels = array();
|
||||
|
||||
while ($i < $num)
|
||||
{
|
||||
$row = $this->db->fetch_row($resql);
|
||||
|
||||
$datas[$i] = $row[1];
|
||||
$labels[$i] = substr($row[0],-2)."/".substr($row[0],2,2);
|
||||
|
||||
$i++;
|
||||
}
|
||||
|
||||
$this->db->free($resql);
|
||||
}
|
||||
else
|
||||
{
|
||||
print $this->db->error() . ' ' . $sql;
|
||||
}
|
||||
|
||||
if (sizeof($datas))
|
||||
{
|
||||
$this->GraphDraw($this->file, $datas, $labels);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
@ -0,0 +1,105 @@
|
||||
<?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_once (DOL_DOCUMENT_ROOT."/telephonie/stats/graph/bar.class.php");
|
||||
|
||||
class GraphGroupeGain extends GraphBar {
|
||||
|
||||
Function GraphGroupeGain($DB, $file)
|
||||
{
|
||||
$this->db = $DB;
|
||||
$this->file = $file;
|
||||
|
||||
$this->client = 0;
|
||||
$this->titre = "Gain mensuel du groupe";
|
||||
|
||||
$this->barcolor = "pink";
|
||||
$this->showframe = true;
|
||||
}
|
||||
|
||||
Function GraphMakeGraph($groupe=0)
|
||||
{
|
||||
$num = 0;
|
||||
|
||||
$sql = "SELECT nom";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."usergroup as u";
|
||||
$sql .= " WHERE u.rowid = ".$groupe;
|
||||
|
||||
$resql = $this->db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
$row = $this->db->fetch_row($resql);
|
||||
$nom = $row[0];
|
||||
$this->db->free($resql);
|
||||
}
|
||||
else
|
||||
{
|
||||
print $this->db->error() . ' ' . $sql;
|
||||
}
|
||||
|
||||
$this->titre = "Gain mensuel : ".$nom;
|
||||
|
||||
$sql = "SELECT date_format(f.date,'%Y%m'), sum(f.gain)";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_facture as f";
|
||||
$sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne as l";
|
||||
$sql .= " , ".MAIN_DB_PREFIX."usergroup_user as ug";
|
||||
$sql .= " WHERE l.rowid = f.fk_ligne";
|
||||
$sql .= " AND ug.fk_user = l.fk_commercial_sign";
|
||||
$sql .= " AND ug.fk_usergroup = ".$groupe;
|
||||
$sql .= " GROUP BY date_format(f.date,'%Y%m') ASC";
|
||||
|
||||
$resql = $this->db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
$num = $this->db->num_rows($resql);
|
||||
$i = 0;
|
||||
$j = -1;
|
||||
$datas = array();
|
||||
$labels = array();
|
||||
|
||||
while ($i < $num)
|
||||
{
|
||||
$row = $this->db->fetch_row($resql);
|
||||
|
||||
$datas[$i] = $row[1];
|
||||
$labels[$i] = substr($row[0],-2)."/".substr($row[0],2,2);
|
||||
|
||||
$i++;
|
||||
}
|
||||
|
||||
$this->db->free($resql);
|
||||
}
|
||||
else
|
||||
{
|
||||
print $this->db->error() . ' ' . $sql;
|
||||
}
|
||||
|
||||
if (sizeof($datas))
|
||||
{
|
||||
$this->GraphDraw($this->file, $datas, $labels);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
150
htdocs/telephonie/stats/commerciaux/groupes/groupe.php
Normal file
150
htdocs/telephonie/stats/commerciaux/groupes/groupe.php
Normal file
@ -0,0 +1,150 @@
|
||||
<?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");
|
||||
|
||||
if (!$user->rights->telephonie->lire) accessforbidden();
|
||||
|
||||
llxHeader('','Telephonie - Statistiques - Commerciaux');
|
||||
|
||||
/*
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
$h = 0;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/commerciaux/index.php';
|
||||
$head[$h][1] = "Global";
|
||||
$hselected = $h;
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/commerciaux/mensuel.php';
|
||||
$head[$h][1] = "Mensuel";
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/commerciaux/contrats.php';
|
||||
$head[$h][1] = "Contrats";
|
||||
$h++;
|
||||
|
||||
dolibarr_fiche_head($head, $hselected, "Commerciaux");
|
||||
|
||||
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 valign="top">Nom</td></tr>';
|
||||
|
||||
$sql = "SELECT rowid, nom";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."usergroup";
|
||||
$sql .= " ORDER BY nom ASC";
|
||||
|
||||
$resql = $db->query($sql);
|
||||
if ($resql)
|
||||
{
|
||||
$num = $db->num_rows();
|
||||
$i = 0;
|
||||
while ($i < $num)
|
||||
{
|
||||
$row = $db->fetch_row($resql);
|
||||
|
||||
$var=!$var;
|
||||
|
||||
print "<tr $bc[$var]>";
|
||||
|
||||
print '<td width="50%" valign="top">';
|
||||
print '<a href="groupe.php?id='.$row[0];
|
||||
print '">'.$row[2]." ". $row[1].'</a></td></tr>';
|
||||
|
||||
$i++;
|
||||
}
|
||||
$db->free();
|
||||
}
|
||||
else
|
||||
{
|
||||
print $db->error() . ' ' . $sql;
|
||||
}
|
||||
print '</table><br />';
|
||||
|
||||
/* */
|
||||
|
||||
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 .= " , ".MAIN_DB_PREFIX."usergroup_user as ug";
|
||||
$sql .= " WHERE c.rowid = l.fk_commercial_sign";
|
||||
$sql .= " AND ug.fk_usergroup = ".$_GET["id"];
|
||||
$sql .= " AND ug.fk_user = c.rowid";
|
||||
$sql .= " AND l.statut <> 7";
|
||||
$sql .= " GROUP BY c.name ORDER BY cc DESC";
|
||||
|
||||
$resql = $db->query($sql);
|
||||
if ($resql)
|
||||
{
|
||||
$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="../commercial.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><br />';
|
||||
|
||||
|
||||
|
||||
print '</td>';
|
||||
|
||||
print '</td><td valign="top" width="70%">';
|
||||
|
||||
print '<img src="'.DOL_URL_ROOT.'/viewimage.php?modulepart=telephoniegraph&file=commerciaux/groupes/'.$_GET["id"].'/gain.mensuel.png"><br /><br />'."\n";
|
||||
|
||||
|
||||
print '<img src="'.DOL_URL_ROOT.'/viewimage.php?modulepart=telephoniegraph&file=commerciaux/groupes/'.$_GET["id"].'/ca.mensuel.png"><br /><br />'."\n";
|
||||
|
||||
print '</td></tr>';
|
||||
print '</table>';
|
||||
|
||||
$db->close();
|
||||
|
||||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||
?>
|
||||
42
htdocs/telephonie/stats/commerciaux/groupes/pre.inc.php
Normal file
42
htdocs/telephonie/stats/commerciaux/groupes/pre.inc.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?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("../../../../main.inc.php");
|
||||
|
||||
$user->getrights('telephonie');
|
||||
|
||||
function llxHeader($head = "", $title="") {
|
||||
global $user, $conf;
|
||||
|
||||
/*
|
||||
*
|
||||
*
|
||||
*/
|
||||
top_menu($head, $title);
|
||||
|
||||
$menu = new Menu();
|
||||
|
||||
include "../../menus.php";
|
||||
|
||||
left_menu($menu->liste);
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Reference in New Issue
Block a user