";
+
+
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>
diff --git a/htdocs/telephonie/contrat/index.php b/htdocs/telephonie/contrat/index.php
new file mode 100644
index 00000000000..7c9b150f0e3
--- /dev/null
+++ b/htdocs/telephonie/contrat/index.php
@@ -0,0 +1,174 @@
+
+ *
+ * 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 - Contrats');
+
+/*
+ * Sécurité accés client
+ */
+if ($user->societe_id > 0)
+{
+ $action = '';
+ $socidp = $user->societe_id;
+}
+
+/*
+ * Mode Liste
+ *
+ *
+ *
+ */
+
+print '
';
+
+print '
';
+
+print '
';
+
+
+print '
';
+
+$sql = "SELECT c.ref, c.rowid, s.idp as socidp, sf.idp as sfidp, sf.nom as nom_facture,s.nom";
+$sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
+$sql .= " , ".MAIN_DB_PREFIX."telephonie_contrat as c";
+$sql .= " , ".MAIN_DB_PREFIX."societe as sf";
+
+$sql .= " WHERE c.fk_client_comm = s.idp";
+$sql .= " AND c.fk_soc = sf.idp";
+$sql .= " ORDER BY date_creat DESC LIMIT 10";
+
+$result = $db->query($sql);
+if ($result)
+{
+ $num = $db->num_rows();
+ $i = 0;
+
+ print"\n\n";
+ print '
';
+
+
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>
diff --git a/htdocs/telephonie/contrat/liste.php b/htdocs/telephonie/contrat/liste.php
new file mode 100644
index 00000000000..1b7fb227925
--- /dev/null
+++ b/htdocs/telephonie/contrat/liste.php
@@ -0,0 +1,176 @@
+
+ *
+ * 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"];
+$sortfield = $_GET["sortfield"];
+
+llxHeader('','Telephonie - Contrats - Liste');
+/*
+ * Sécurité accés client
+ */
+if ($user->societe_id > 0)
+{
+ $action = '';
+ $socidp = $user->societe_id;
+}
+
+if ($sortorder == "") {
+ $sortorder="ASC";
+}
+if ($sortfield == "") {
+ $sortfield="c.statut";
+}
+
+/*
+ * Recherche
+ *
+ *
+ */
+
+if ($page == -1) { $page = 0 ; }
+
+$offset = $conf->liste_limit * $page ;
+$pageprev = $page - 1;
+$pagenext = $page + 1;
+
+/*
+ * Mode Liste
+ *
+ *
+ *
+ */
+$sql = "SELECT c.rowid, c.ref, s.idp as socidp, sf.idp as sfidp, sf.nom as nom_facture,s.nom";
+$sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
+$sql .= " , ".MAIN_DB_PREFIX."telephonie_contrat as c";
+$sql .= " , ".MAIN_DB_PREFIX."societe as sf";
+
+$sql .= " WHERE c.fk_client_comm = s.idp";
+$sql .= " AND c.fk_soc = sf.idp";
+
+
+if ($_GET["search_ligne"])
+{
+ $sel =urldecode($_GET["search_ligne"]);
+ $sel = ereg_replace("\.","",$sel);
+ $sel = ereg_replace(" ","",$sel);
+ $sql .= " AND l.ligne LIKE '%".$sel."%'";
+}
+
+if ($_GET["search_client"])
+{
+ $sel =urldecode($_GET["search_client"]);
+ $sql .= " AND s.nom LIKE '%".$sel."%'";
+}
+
+if ($_GET["search_client_facture"])
+{
+ $sel =urldecode($_GET["search_client_facture"]);
+ $sql .= " AND sf.nom LIKE '%".$sel."%'";
+}
+
+if (strlen($_GET["statut"]))
+{
+ $sql .= " AND l.statut = ".$_GET["statut"];
+}
+
+$sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit+1, $offset);
+
+$result = $db->query($sql);
+if ($result)
+{
+ $num = $db->num_rows();
+ $i = 0;
+
+ $urladd= "&statut=".$_GET["statut"];
+
+ print_barre_liste("Contrats", $page, "liste.php", $urladd, $sortfield, $sortorder, '', $num);
+ print"\n\n";
+ print '
";
+ $db->free();
+}
+else
+{
+ print $db->error() . ' ' . $sql;
+}
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>
diff --git a/htdocs/telephonie/contrat/pre.inc.php b/htdocs/telephonie/contrat/pre.inc.php
new file mode 100644
index 00000000000..79534436af1
--- /dev/null
+++ b/htdocs/telephonie/contrat/pre.inc.php
@@ -0,0 +1,69 @@
+
+ *
+ * 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");
+require(DOL_DOCUMENT_ROOT."/telephonie/telephonie.contrat.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/simulation/fiche.php", "Simulation");
+
+ $menu->add(DOL_URL_ROOT."/telephonie/tarifs/", "Tarifs");
+
+ $menu->add(DOL_URL_ROOT."/telephonie/client/index.php", "Clients");
+
+ $menu->add(DOL_URL_ROOT."/telephonie/contrat/", "Contrats");
+
+ $menu->add_submenu(DOL_URL_ROOT."/telephonie/contrat/liste.php", "Liste");
+
+ if ($user->rights->telephonie->ligne->creer)
+ $menu->add_submenu(DOL_URL_ROOT."/telephonie/contrat/fiche.php?action=create", "Nouveau contrat");
+
+
+ $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/stats/", "Statistiques");
+
+ $menu->add(DOL_URL_ROOT."/telephonie/statca/", "Chiffre d'affaire");
+
+ left_menu($menu->liste);
+}
+
+?>