diff --git a/htdocs/telephonie/stats/commerciaux/mensuel.php b/htdocs/telephonie/stats/commerciaux/mensuel.php
new file mode 100644
index 00000000000..565f0d4b360
--- /dev/null
+++ b/htdocs/telephonie/stats/commerciaux/mensuel.php
@@ -0,0 +1,128 @@
+
+ *
+ * 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/mensuel.php';
+$head[$h][1] = "Mensuel";
+$hselected = $h;
+$h++;
+
+dolibarr_fiche_head($head, $hselected, "Commerciaux");
+
+if (strlen($_GET["month"]) == 0)
+{
+ $month = '022005';
+}
+else
+{
+ $month = $_GET["month"];
+}
+
+$month_prev = strftime("%m%Y", mktime(12,12,12,substr($month,0,2), 1, substr($month,-4)) - (20*3600*24));
+$month_next = strftime("%m%Y", mktime(12,12,12,substr($month,0,2), 25, substr($month,-4)) + (10*3600*24));
+
+print "Mois de : ".strftime("%B %Y", mktime(12,12,12,substr($month,0,2), 1, substr($month,-4)));
+print ' ('.strftime("%B %Y", mktime(12,12,12,substr($month_prev,0,2), 1, substr($month_prev,-4)));
+print ' - '.strftime("%B %Y", mktime(12,12,12,substr($month_next,0,2), 1, substr($month_next,-4))).")";
+print "
";
+
+print '
';
+
+print '';
+
+print '';
+
+print '| Nom | Nb Lignes | ';
+
+
+$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";
+$sql .= " AND date_format(date_commande, '%m%Y') = '$month'";
+$sql .= " 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 "";
+
+ print '| ';
+ print ''.$row[2]." ". $row[1].' | '.$row[0].' | ';
+
+ $i++;
+ }
+ $db->free();
+}
+else
+{
+ print $db->error() . ' ' . $sql;
+}
+
+print ' ';
+
+print ' | ';
+
+print '';
+
+
+
+print ' |
';
+
+
+print '
';
+
+
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>