diff --git a/htdocs/telephonie/stats/commerciaux/ca.php b/htdocs/telephonie/stats/commerciaux/ca.php new file mode 100644 index 00000000000..0e6040a6e6d --- /dev/null +++ b/htdocs/telephonie/stats/commerciaux/ca.php @@ -0,0 +1,122 @@ + + * + * 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"; +$h++; + +$head[$h][0] = DOL_URL_ROOT.'/telephonie/stats/commerciaux/ca.php'; +$head[$h][1] = "CA"; +$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 ''; +print ''; + +print ''; + + +print '
'; + +$sql = "SELECT date_format(f.date,'%Y%m'), sum(f.cout_vente)"; +$sql .= ", c.name, c.firstname"; +$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_facture as f"; +$sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne as l"; +$sql .= " , ".MAIN_DB_PREFIX."user as c"; + +$sql .= " WHERE l.rowid = f.fk_ligne"; +$sql .= " AND l.fk_commercial_sign = c.rowid"; +$sql .= " GROUP BY c.rowid, date_format(f.date,'%Y%m') ASC"; + +print ''; + +print ''; + +$resql = $db->query($sql); +if ($resql) +{ + $num = $db->num_rows(); + $i = 0; + $datas = array(); + $legends = array(); + $total = 0; + while ($i < $num) + { + $row = $db->fetch_row($i); + + $var=!$var; + + print ""; + + print ''; + print ''; + $total += $row[1]; + $i++; + } + $db->free(); +} +else +{ + print $db->error() . ' ' . $sql; +} +$var=!$var; + +print '
NomNb Lignes 
'; + print ''.$row[3]." ". $row[2].''.$row[0].''.price($row[1]).'

'; + + + +print '
'; + + +print '
'; + + + +$db->close(); + +llxFooter("Dernière modification $Date$ révision $Revision$"); +?>