Nouveau fichier
This commit is contained in:
parent
41374d2a19
commit
e9803e5d60
164
htdocs/telephonie/client/ca.php
Normal file
164
htdocs/telephonie/client/ca.php
Normal file
@ -0,0 +1,164 @@
|
||||
<?PHP
|
||||
/* Copyright (C) 2004-2005 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");
|
||||
|
||||
$mesg = '';
|
||||
|
||||
llxHeader("","Téléphonie - Client");
|
||||
|
||||
if ($cancel == $langs->trans("Cancel"))
|
||||
{
|
||||
$action = '';
|
||||
}
|
||||
/*
|
||||
* Affichage
|
||||
*
|
||||
*/
|
||||
|
||||
if ($_GET["id"])
|
||||
{
|
||||
$soc = new Societe($db);
|
||||
$result = $soc->fetch($_GET["id"]);
|
||||
|
||||
if ( $result == 1 )
|
||||
{
|
||||
if ($_GET["action"] <> 'edit' && $_GET["action"] <> 're-edit')
|
||||
{
|
||||
$h=0;
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/fiche.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Lignes");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/factures.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Factures");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/ca.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("CA");
|
||||
$hselected = $h;
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/tarifs.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Tarifs");
|
||||
$h++;
|
||||
|
||||
|
||||
dolibarr_fiche_head($head, $hselected, 'Client : '.$soc->nom);
|
||||
|
||||
print '<table class="border" cellpadding="3" cellspacing="0" width="100%">';
|
||||
print '<tr><td width="20%">'.$langs->trans('Name').'</td><td>'.$soc->nom.'</td><td>'.$langs->trans('Prefix').'</td><td>'.$soc->prefix_comm.'</td></tr>';
|
||||
|
||||
print "<tr><td valign=\"top\">".$langs->trans('Address')."</td><td colspan=\"3\">".nl2br($soc->adresse)."<br>".$soc->cp." ".$soc->ville." ".$soc->pays."</td></tr>";
|
||||
|
||||
print '<tr><td>'.$langs->trans('Phone').'</td><td>'.dolibarr_print_phone($soc->tel).'</td>';
|
||||
print '<td>'.$langs->trans('Fax').'</td><td>'.dolibarr_print_phone($soc->fax).'</td></tr>';
|
||||
|
||||
print '<tr><td><a href="'.DOL_URL_ROOT.'/societe/rib.php?socid='.$soc->id.'">'.img_edit() ."</a> ";
|
||||
print $langs->trans('RIB').'</td><td colspan="3">';
|
||||
print $soc->display_rib();
|
||||
print '</td></tr>';
|
||||
|
||||
print '</table><br />';
|
||||
|
||||
|
||||
print '<table class="border" cellpadding="3" cellspacing="0" width="100%">';
|
||||
print '<tr><td width="50%" align="center">Chiffre d\'affaire</td>';
|
||||
print '<td width="50%" align="center">Gain</td></tr>';
|
||||
|
||||
print '<tr><td width="50%" valign="top" align="center">';
|
||||
|
||||
$img_root = DOL_DATA_ROOT."/graph/telephonie/";
|
||||
$file = "client/".substr($soc->id,0,1)."/".$soc->id."/graphca.png";
|
||||
|
||||
if (file_exists($img_root . $file))
|
||||
{
|
||||
print '<img src="'.DOL_URL_ROOT.'/telephonie/showgraph.php?graph='.$file.'" alt="CA Mensuel">';
|
||||
}
|
||||
else
|
||||
{
|
||||
print 'Nous avons pas assez de données à ce jour pour générer ce graphique.';
|
||||
}
|
||||
|
||||
print '</td><td width="50%" valign="top" align="center">';
|
||||
|
||||
$file = "client/".substr($soc->id,0,1)."/".$soc->id."/graphgain.png";
|
||||
if (file_exists($img_root . $file))
|
||||
{
|
||||
print '<img src="'.DOL_URL_ROOT.'/telephonie/showgraph.php?graph='.$file.'" alt="CA Mensuel">';
|
||||
}
|
||||
else
|
||||
{
|
||||
print 'Nous avons pas assez de données à ce jour pour générer ce graphique.';
|
||||
}
|
||||
|
||||
print '</td></tr>';
|
||||
|
||||
|
||||
print '<tr><td width="50%" align="center">Appels</td>';
|
||||
print '<td width="50%" align="center">-</td></tr>';
|
||||
|
||||
print '<tr><td width="50%" valign="top" align="center">';
|
||||
|
||||
$file = "client/".substr($soc->id,0,1)."/".$soc->id."/graphappelsdureemoyenne.png";
|
||||
if (file_exists($img_root . $file))
|
||||
{
|
||||
print '<img src="'.DOL_URL_ROOT.'/telephonie/showgraph.php?graph='.$file.'" alt="CA Mensuel">';
|
||||
}
|
||||
else
|
||||
{
|
||||
print 'Nous avons pas assez de données à ce jour pour générer ce graphique.';
|
||||
}
|
||||
|
||||
print '</td><td width="50%" valign="top" align="center">';
|
||||
|
||||
$file = "client/".substr($soc->id,0,1)."/".$soc->id."/nb-comm-mensuel.png";
|
||||
if (file_exists($img_root . $file))
|
||||
{
|
||||
print '<img src="'.DOL_URL_ROOT.'/telephonie/showgraph.php?graph='.$file.'" alt="CA Mensuel">';
|
||||
}
|
||||
else
|
||||
{
|
||||
print 'Nous avons pas assez de données à ce jour pour générer ce graphique.';
|
||||
}
|
||||
|
||||
print '</td></tr></table>';
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print "Error";
|
||||
}
|
||||
|
||||
print '</div>';
|
||||
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* Barre d'action */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
$db->close();
|
||||
|
||||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||
?>
|
||||
Loading…
Reference in New Issue
Block a user