Skip to content
Snippets Groups Projects
Commit 10ff9572 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

New: First add of js graph

parent 79ec8ccb
No related branches found
No related tags found
No related merge requests found
......@@ -100,26 +100,44 @@ else dol_print_error($db);
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("Statistics").'</td></tr>';
if ($conf->societe->enabled)
if ($conf->use_javascript_ajax && $conf->societe->enabled && $conf->fournisseur->enabled
&& empty($conf->global->SOCIETE_DISABLE_PROSPECTS) && empty($conf->global->SOCIETE_DISABLE_CUSTOMERS))
{
if (empty($conf->global->SOCIETE_DISABLE_PROSPECTS))
{
$statstring = "<tr $bc[0]>";
$statstring.= '<td><a href="'.DOL_URL_ROOT.'/comm/prospect/prospects.php">'.$langs->trans("Prospects").'</a></td><td align="right">'.round($third['prospect']).'</td>';
$statstring.= "</tr>";
}
$statstring.= "<tr $bc[1]>";
$statstring.= '<td><a href="'.DOL_URL_ROOT.'/comm/clients.php">'.$langs->trans("Customers").'</a></td><td align="right">'.round($third['customer']).'</td>';
$statstring.= "</tr>";
print '<tr><td align="center">';
$data=array(
array('label'=>$langs->trans("Prospects"),'values'=>array(round($third['prospect']))),
array('label'=>$langs->trans("Customers"),'values'=>array(round($third['customer']))),
array('label'=>$langs->trans("Suppliers"),'values'=>array(round($third['supplier'])))
);
dol_print_graph('stats',300,180,$data,0,'pie');
print '</td></tr>';
}
if ($conf->fournisseur->enabled)
else
{
$statstring2 = "<tr $bc[0]>";
$statstring2.= '<td><a href="'.DOL_URL_ROOT.'/fourn/liste.php">'.$langs->trans("Suppliers").'</a></td><td align="right">'.round($third['supplier']).'</td>';
$statstring2.= "</tr>";
if ($conf->societe->enabled)
{
if (empty($conf->global->SOCIETE_DISABLE_PROSPECTS))
{
$statstring = "<tr $bc[0]>";
$statstring.= '<td><a href="'.DOL_URL_ROOT.'/comm/prospect/prospects.php">'.$langs->trans("Prospects").'</a></td><td align="right">'.round($third['prospect']).'</td>';
$statstring.= "</tr>";
}
if (empty($conf->global->SOCIETE_DISABLE_CUSTOMERS))
{
$statstring.= "<tr $bc[1]>";
$statstring.= '<td><a href="'.DOL_URL_ROOT.'/comm/clients.php">'.$langs->trans("Customers").'</a></td><td align="right">'.round($third['customer']).'</td>';
$statstring.= "</tr>";
}
}
if ($conf->fournisseur->enabled)
{
$statstring2 = "<tr $bc[0]>";
$statstring2.= '<td><a href="'.DOL_URL_ROOT.'/fourn/liste.php">'.$langs->trans("Suppliers").'</a></td><td align="right">'.round($third['supplier']).'</td>';
$statstring2.= "</tr>";
}
print $statstring;
print $statstring2;
}
print $statstring;
print $statstring2;
print '<tr class="liste_total"><td>'.$langs->trans("UniqueThirdParties").'</td><td align="right">';
print $total;
print '</td></tr>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment