Nouveau fichier
This commit is contained in:
parent
d386fb6041
commit
ee632041f3
135
htdocs/telephonie/config/concurrents/liste.php
Normal file
135
htdocs/telephonie/config/concurrents/liste.php
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
<?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"];
|
||||||
|
$sortfield = $_GET["sortfield"];
|
||||||
|
|
||||||
|
llxHeader('','Telephonie - Ligne - Liste');
|
||||||
|
/*
|
||||||
|
* Sécurité accés client
|
||||||
|
*/
|
||||||
|
if ($user->societe_id > 0)
|
||||||
|
{
|
||||||
|
$action = '';
|
||||||
|
$socidp = $user->societe_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sortorder == "") {
|
||||||
|
$sortorder="ASC";
|
||||||
|
}
|
||||||
|
if ($sortfield == "") {
|
||||||
|
$sortfield="c.nom";
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Recherche
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ($page == -1) { $page = 0 ; }
|
||||||
|
|
||||||
|
$offset = $conf->liste_limit * $page ;
|
||||||
|
$pageprev = $page - 1;
|
||||||
|
$pagenext = $page + 1;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Mode Liste
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
$sql = "SELECT c.rowid, c.nom";
|
||||||
|
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_concurrents as c";
|
||||||
|
$sql .= " WHERE active = 1";
|
||||||
|
|
||||||
|
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 (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("Concurrents", $page, "liste.php", $urladd, $sortfield, $sortorder, '', $num);
|
||||||
|
|
||||||
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
print '<tr class="liste_titre"><td>Nom</td>';
|
||||||
|
|
||||||
|
|
||||||
|
print "</tr>\n";
|
||||||
|
|
||||||
|
|
||||||
|
$var=True;
|
||||||
|
|
||||||
|
$ligne = new LigneTel($db);
|
||||||
|
|
||||||
|
while ($i < min($num,$conf->liste_limit))
|
||||||
|
{
|
||||||
|
$obj = $db->fetch_object($i);
|
||||||
|
$var=!$var;
|
||||||
|
|
||||||
|
print "<tr $bc[$var]><td>";
|
||||||
|
|
||||||
|
print $obj->nom."</td>\n";
|
||||||
|
|
||||||
|
|
||||||
|
print "</tr>\n";
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
print "</table>";
|
||||||
|
$db->free();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print $db->error() . ' ' . $sql;
|
||||||
|
}
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
?>
|
||||||
58
htdocs/telephonie/config/concurrents/pre.inc.php
Normal file
58
htdocs/telephonie/config/concurrents/pre.inc.php
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<?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/simulation/fiche.php", "Simulation");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/tarifs/liste.php", "Tarifs");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/ligne/index.php", "Lignes");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/ligne/commande/", "Commande");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/facture/liste.php", "Factures");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/fournisseurs.php", "Fournisseurs");
|
||||||
|
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/config/", "Configuration");
|
||||||
|
|
||||||
|
$menu->add_submenu(DOL_URL_ROOT."/telephonie/config/concurrents/liste.php", "Concurrents");
|
||||||
|
|
||||||
|
left_menu($menu->liste);
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Reference in New Issue
Block a user