Modif permissions
This commit is contained in:
parent
764882c554
commit
af2353df55
@ -108,7 +108,7 @@ if ($_GET["id"])
|
|||||||
print '</td><td width="50%" valign="top" align="center">';
|
print '</td><td width="50%" valign="top" align="center">';
|
||||||
|
|
||||||
$file = $img_root.$soc->id."/graphgain.png";
|
$file = $img_root.$soc->id."/graphgain.png";
|
||||||
if (file_exists($file))
|
if (file_exists($file) && $user->rights->telephonie->ligne->gain)
|
||||||
{
|
{
|
||||||
print '<img src="'.DOL_URL_ROOT.'/telephonie/showgraph.php?graph='.$file.'" alt="CA Mensuel">';
|
print '<img src="'.DOL_URL_ROOT.'/telephonie/showgraph.php?graph='.$file.'" alt="CA Mensuel">';
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -65,12 +65,17 @@ $pagenext = $page + 1;
|
|||||||
|
|
||||||
|
|
||||||
$sql = "SELECT s.idp as socidp, s.nom, count(l.ligne) as ligne, cs.ca";
|
$sql = "SELECT s.idp as socidp, s.nom, count(l.ligne) as ligne, cs.ca";
|
||||||
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."telephonie_societe_ligne as l";
|
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
|
||||||
|
$sql .= ",".MAIN_DB_PREFIX."telephonie_societe_ligne as l";
|
||||||
|
$sql .= ",".MAIN_DB_PREFIX."societe_perms as sp";
|
||||||
|
|
||||||
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."telephonie_client_stats as cs ON s.idp=cs.fk_client_comm";
|
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."telephonie_client_stats as cs ON s.idp=cs.fk_client_comm";
|
||||||
|
|
||||||
$sql .= " WHERE l.fk_client_comm = s.idp ";
|
$sql .= " WHERE l.fk_client_comm = s.idp ";
|
||||||
|
|
||||||
|
$sql .= " AND s.idp = sp.fk_soc";
|
||||||
|
$sql .= " AND sp.fk_user = ".$user->id." AND sp.pread = 1";
|
||||||
|
|
||||||
if ($_GET["search_client"])
|
if ($_GET["search_client"])
|
||||||
{
|
{
|
||||||
$sel = urldecode($_GET["search_client"]);
|
$sel = urldecode($_GET["search_client"]);
|
||||||
|
|||||||
@ -53,7 +53,8 @@ function llxHeader($head = "", $title="") {
|
|||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/telephonie/ligne/index.php", "Lignes");
|
$menu->add(DOL_URL_ROOT."/telephonie/ligne/index.php", "Lignes");
|
||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/telephonie/ligne/commande/", "Commandes");
|
if ($user->rights->telephonie->ligne_commander)
|
||||||
|
$menu->add(DOL_URL_ROOT."/telephonie/ligne/commande/", "Commandes");
|
||||||
|
|
||||||
if ($user->rights->telephonie->stats->lire)
|
if ($user->rights->telephonie->stats->lire)
|
||||||
$menu->add(DOL_URL_ROOT."/telephonie/stats/", "Statistiques");
|
$menu->add(DOL_URL_ROOT."/telephonie/stats/", "Statistiques");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user