diff --git a/htdocs/expensereport/index.html b/htdocs/expensereport/index.html
deleted file mode 100644
index e69de29bb2d..00000000000
diff --git a/htdocs/fichinter/index.html b/htdocs/fichinter/index.html
deleted file mode 100644
index e69de29bb2d..00000000000
diff --git a/htdocs/fichinter/index.php b/htdocs/fichinter/index.php
index 6bde087fa61..8929da904f3 100644
--- a/htdocs/fichinter/index.php
+++ b/htdocs/fichinter/index.php
@@ -122,16 +122,24 @@ if ($resql)
$i++;
}
$db->free($resql);
+
+ include_once DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php';
+
print '
';
print '
';
print '| '.$langs->trans("Statistics").' - '.$langs->trans("Interventions").' |
'."\n";
- $listofstatus = array(0, 1, 2);
+ $listofstatus = array(0, 1, 3);
$bool = false;
foreach ($listofstatus as $status)
{
$dataseries[] = array($fichinterstatic->LibStatut($status, $bool, 1), (isset($vals[$status.$bool]) ? (int) $vals[$status.$bool] : 0));
if ($status == 3 && !$bool) $bool = true;
else $bool = false;
+
+ if ($status == Fichinter::STATUS_DRAFT) $colorseries[$status] = '-'.$badgeStatus0;
+ if ($status == Fichinter::STATUS_VALIDATED) $colorseries[$status] = $badgeStatus1;
+ if ($status == Fichinter::STATUS_BILLED) $colorseries[$status] = $badgeStatus4;
+ if ($status == Fichinter::STATUS_CLOSED) $colorseries[$status] = $badgeStatus6;
}
if ($conf->use_javascript_ajax)
{
@@ -140,13 +148,13 @@ if ($resql)
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
$dolgraph = new DolGraph();
$dolgraph->SetData($dataseries);
+ $dolgraph->SetDataColor(array_values($colorseries));
$dolgraph->setShowLegend(2);
$dolgraph->setShowPercent(1);
$dolgraph->SetType(array('pie'));
$dolgraph->setHeight('200');
$dolgraph->draw('idgraphstatus');
print $dolgraph->show($total ? 0 : 1);
- $data = array('series'=>$dataseries);
print '';
}