25require
'../../main.inc.php';
26require_once DOL_DOCUMENT_ROOT.
'/fichinter/class/fichinter.class.php';
27require_once DOL_DOCUMENT_ROOT.
'/fichinter/class/fichinterstats.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
34if (!$user->hasRight(
'ficheinter',
'lire')) {
38$userid =
GETPOST(
'userid',
'int');
39$socid =
GETPOST(
'socid',
'int');
41if ($user->socid > 0) {
43 $socid = $user->socid;
51$object_status =
GETPOST(
'object_status',
'intcomma');
54$langs->loadLangs(array(
'interventions',
'companies',
'other',
'suppliers'));
64$title = $langs->trans(
"InterventionStatistics");
65$dir = $conf->ficheinter->dir_temp;
73$stats =
new FichinterStats($db, $socid, $mode, ($userid > 0 ? $userid : 0));
74if ($object_status !=
'' && $object_status > -1) {
75 $stats->where .=
' AND c.fk_statut IN ('.$db->sanitize($db->escape($object_status)).
')';
79$data = $stats->getNbByMonthWithPrevYear($endyear, $startyear);
83if (!$user->hasRight(
'societe',
'client',
'voir') || $user->socid) {
84 $filenamenb = $dir.
'/interventionsnbinyear-'.$user->id.
'-'.$year.
'.png';
85 $fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=interventionstats&file=interventionsnbinyear-'.$user->id.
'-'.$year.
'.png';
87 $filenamenb = $dir.
'/interventionsnbinyear-'.$year.
'.png';
88 $fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=interventionstats&file=interventionsnbinyear-'.$year.
'.png';
92$mesg = $px1->isGraphKo();
97 while ($i <= $endyear) {
101 $px1->SetLegend($legend);
102 $px1->SetMaxValue($px1->GetCeilMaxValue());
103 $px1->SetMinValue(min(0, $px1->GetFloorMinValue()));
104 $px1->SetWidth($WIDTH);
105 $px1->SetHeight($HEIGHT);
106 $px1->SetYLabel($langs->trans(
"NbOfIntervention"));
108 $px1->SetHorizTickIncrement(1);
109 $px1->mode =
'depth';
110 $px1->SetTitle($langs->trans(
"NumberOfInterventionsByMonth"));
112 $px1->draw($filenamenb, $fileurlnb);
116$data = $stats->getAmountByMonthWithPrevYear($endyear, $startyear);
119if (!$user->hasRight(
'societe',
'client',
'voir') || $user->socid) {
120 $filenameamount = $dir.
'/interventionsamountinyear-'.$user->id.
'-'.$year.
'.png';
121 $fileurlamount = DOL_URL_ROOT.
'/viewimage.php?modulepart=interventionstats&file=interventionsamountinyear-'.$user->id.
'-'.$year.
'.png';
123 $filenameamount = $dir.
'/interventionsamountinyear-'.$year.
'.png';
124 $fileurlamount = DOL_URL_ROOT.
'/viewimage.php?modulepart=interventionstats&file=interventionsamountinyear-'.$year.
'.png';
128$mesg = $px2->isGraphKo();
130 $px2->SetData($data);
133 while ($i <= $endyear) {
137 $px2->SetLegend($legend);
138 $px2->SetMaxValue($px2->GetCeilMaxValue());
139 $px2->SetMinValue(min(0, $px2->GetFloorMinValue()));
140 $px2->SetWidth($WIDTH);
141 $px2->SetHeight($HEIGHT);
142 $px2->SetYLabel($langs->trans(
"AmountOfinterventions"));
144 $px2->SetHorizTickIncrement(1);
145 $px2->mode =
'depth';
146 $px2->SetTitle($langs->trans(
"AmountOfinterventionsByMonthHT"));
148 $px2->draw($filenameamount, $fileurlamount);
152$data = $stats->getAverageByMonthWithPrevYear($endyear, $startyear);
154if (!$user->hasRight(
'societe',
'client',
'voir') || $user->socid) {
155 $filename_avg = $dir.
'/interventionsaverage-'.$user->id.
'-'.$year.
'.png';
156 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=interventionstats&file=interventionsaverage-'.$user->id.
'-'.$year.
'.png';
158 $filename_avg = $dir.
'/interventionsaverage-'.$year.
'.png';
159 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=interventionstats&file=interventionsaverage-'.$year.
'.png';
163$mesg = $px3->isGraphKo();
165 $px3->SetData($data);
168 while ($i <= $endyear) {
172 $px3->SetLegend($legend);
173 $px3->SetYLabel($langs->trans(
"AmountAverage"));
174 $px3->SetMaxValue($px3->GetCeilMaxValue());
175 $px3->SetMinValue($px3->GetFloorMinValue());
176 $px3->SetWidth($WIDTH);
177 $px3->SetHeight($HEIGHT);
179 $px3->SetHorizTickIncrement(1);
180 $px3->mode =
'depth';
181 $px3->SetTitle($langs->trans(
"AmountAverage"));
183 $px3->draw($filename_avg, $fileurl_avg);
189$data = $stats->getAllByYear();
190$arrayyears = array();
191foreach ($data as $val) {
192 if (!empty($val[
'year'])) {
193 $arrayyears[$val[
'year']] = $val[
'year'];
196if (!count($arrayyears)) {
197 $arrayyears[$nowyear] = $nowyear;
202$head[$h][0] = DOL_URL_ROOT.
'/fichinter/stats/index.php';
203$head[$h][1] = $langs->trans(
"ByMonthYear");
204$head[$h][2] =
'byyear';
207$type =
'fichinter_stats';
214print
'<div class="fichecenter"><div class="fichethirdleft">';
218print
'<form name="stats" method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
219print
'<input type="hidden" name="token" value="'.newToken().
'">';
220print
'<input type="hidden" name="mode" value="'.$mode.
'">';
222print
'<table class="noborder centpercent">';
223print
'<tr class="liste_titre"><td class="liste_titre" colspan="2">'.$langs->trans(
"Filter").
'</td></tr>';
225print
'<tr><td class="left">'.$langs->trans(
"ThirdParty").
'</td><td class="left">';
226$filter =
'(s.client:IN:1,2,3)';
227print
img_picto(
'',
'company',
'class="pictofixedwidth"');
228print $form->select_company($socid,
'socid', $filter, 1, 0, 0, array(), 0,
'widthcentpercentminusx maxwidth300',
'');
231print
'<tr><td class="left">'.$langs->trans(
"CreatedBy").
'</td><td class="left">';
232print
img_picto(
'',
'user',
'class="pictofixedwidth"');
233print $form->select_dolusers($userid,
'userid', 1,
'', 0,
'',
'', 0, 0, 0,
'', 0,
'',
'widthcentpercentminusx maxwidth300');
235print
'<tr><td class="left">'.$langs->trans(
"Status").
'</td><td class="left">';
236$tmp = $objectstatic->LibStatut(0);
237$liststatus = $objectstatic->labelStatus;
239 unset($liststatus[$objectstatic::STATUS_BILLED]);
241print $form->selectarray(
'object_status', $liststatus, $object_status, 1, 0, 0,
'', 1);
244print
'<tr><td class="left">'.$langs->trans(
"Year").
'</td><td class="left">';
245if (!in_array($year, $arrayyears)) {
246 $arrayyears[$year] = $year;
248if (!in_array($nowyear, $arrayyears)) {
249 $arrayyears[$nowyear] = $nowyear;
252print $form->selectarray(
'year', $arrayyears, $year, 0, 0, 0,
'', 0, 0, 0,
'',
'width75');
254print
'<tr><td class="center" colspan="2"><input type="submit" name="submit" class="button small" value="'.$langs->trans(
"Refresh").
'"></td></tr>';
259print
'<div class="div-table-responsive-no-min">';
260print
'<table class="noborder centpercent">';
261print
'<tr class="liste_titre" height="24">';
262print
'<td class="center">'.$langs->trans(
"Year").
'</td>';
263print
'<td class="right">'.$langs->trans(
"NbOfinterventions").
'</td>';
264print
'<td class="right">%</td>';
265print
'<td class="right">'.$langs->trans(
"AmountTotal").
'</td>';
266print
'<td class="right">%</td>';
267print
'<td class="right">'.$langs->trans(
"AmountAverage").
'</td>';
268print
'<td class="right">%</td>';
272foreach ($data as $val) {
273 $year = $val[
'year'];
274 while (!empty($year) && $oldyear > $year + 1) {
278 print
'<tr class="oddeven" height="24">';
279 print
'<td class="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$oldyear.
'&mode='.$mode.($socid > 0 ?
'&socid='.$socid :
'').($userid > 0 ?
'&userid='.$userid :
'').
'">'.$oldyear.
'</a></td>';
281 print
'<td class="right">0</td>';
282 print
'<td class="right"></td>';
283 print
'<td class="right">0</td>';
284 print
'<td class="right"></td>';
285 print
'<td class="right">0</td>';
286 print
'<td class="right"></td>';
291 print
'<tr class="oddeven" height="24">';
292 print
'<td class="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$year.
'&mode='.$mode.($socid > 0 ?
'&socid='.$socid :
'').($userid > 0 ?
'&userid='.$userid :
'').
'">'.$year.
'</a></td>';
293 print
'<td class="right">'.$val[
'nb'].
'</td>';
294 print
'<td class="right opacitylow" style="'.((!isset($val[
'nb_diff']) || $val[
'nb_diff'] >= 0) ?
'color: green;' :
'color: red;').
'">'.(isset($val[
'nb_diff']) ? round($val[
'nb_diff']) :
"0").
'%</td>';
295 print
'<td class="right">'.price(
price2num($val[
'total'],
'MT'), 1).
'</td>';
296 print
'<td class="right opacitylow" style="'.((!isset($val[
'total_diff']) || $val[
'total_diff'] >= 0) ?
'color: green;' :
'color: red;').
'">'.(isset($val[
'total_diff']) ? round($val[
'total_diff']) :
"0").
'%</td>';
297 print
'<td class="right">'.price(
price2num($val[
'avg'],
'MT'), 1).
'</td>';
298 print
'<td class="right opacitylow" style="'.((!isset($val[
'avg_diff']) || $val[
'avg_diff'] >= 0) ?
'color: green;' :
'color: red;').
'">'.(isset($val[
'avg_diff']) ? round($val[
'avg_diff']) :
"0").
'%</td>';
307print
'</div><div class="fichetwothirdright">';
311print
'<table class="border centpercent"><tr class="pair nohover"><td class="center">';
321print
'</td></tr></table>';
325print
'<div class="clearboth"></div>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
static getDefaultGraphSizeForStats($direction, $defaultsize='')
getDefaultGraphSizeForStats
Class to manage interventions.
Class to manage intervention statistics.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode='add', $filterorigmodule='')
Complete or removed entries into a head array (used to build tabs).
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.