28require
'../../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/compta/deplacement/class/deplacementstats.class.php';
33$langs->loadLangs(array(
'trips',
'companies'));
49if ($user->socid > 0) {
51 $socid = $user->socid;
54 $socid = $user->socid;
59$childids = $user->getAllChildIds();
60$childids[] = $user->id;
62 if (!$user->hasRight(
'deplacement',
'readall') && !$user->hasRight(
'deplacement',
'lire_tous') && !in_array($userid, $childids)) {
85$title = $langs->trans(
"TripsAndExpensesStatistics");
86$dir = $conf->deplacement->dir_temp;
92$useridtofilter = $userid;
93if (empty($useridtofilter)) {
94 $useridtofilter = $childids;
95 if ($user->hasRight(
'deplacement',
'readall') || $user->hasRight(
'deplacement',
'lire_tous')) {
106$data = $stats->getNbByMonthWithPrevYear($endyear, $startyear);
109$filenamenb = $dir.
"/tripsexpensesnbinyear-".$year.
".png";
110$fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=tripsexpensesstats&file=tripsexpensesnbinyear-'.$year.
'.png';
113$mesg = $px1->isGraphKo();
115 $px1->SetData($data);
118 while ($i <= $endyear) {
122 $px1->SetLegend($legend);
123 $px1->SetMaxValue($px1->GetCeilMaxValue());
124 $px1->SetWidth($WIDTH);
125 $px1->SetHeight($HEIGHT);
126 $px1->SetYLabel($langs->trans(
"Number"));
128 $px1->SetHorizTickIncrement(1);
129 $px1->mode =
'depth';
130 $px1->SetTitle($langs->trans(
"NumberByMonth"));
132 $px1->draw($filenamenb, $fileurlnb);
136$data = $stats->getAmountByMonthWithPrevYear($endyear, $startyear);
140$filenameamount = $dir.
"/tripsexpensesamountinyear-".$year.
".png";
141$fileurlamount = DOL_URL_ROOT.
'/viewimage.php?modulepart=tripsexpensesstats&file=tripsexpensesamountinyear-'.$year.
'.png';
144$mesg = $px2->isGraphKo();
146 $px2->SetData($data);
149 while ($i <= $endyear) {
153 $px2->SetLegend($legend);
154 $px2->SetMaxValue($px2->GetCeilMaxValue());
155 $px2->SetMinValue(min(0, $px2->GetFloorMinValue()));
156 $px2->SetWidth($WIDTH);
157 $px2->SetHeight($HEIGHT);
158 $px2->SetYLabel($langs->trans(
"Amount"));
160 $px2->SetHorizTickIncrement(1);
161 $px2->mode =
'depth';
162 $px2->SetTitle($langs->trans(
"AmountTotal"));
164 $px2->draw($filenameamount, $fileurlamount);
168$data = $stats->getAverageByMonthWithPrevYear($endyear, $startyear);
171if (!$user->hasRight(
'societe',
'client',
'voir')) {
172 $filename_avg = $dir.
'/ordersaverage-'.$user->id.
'-'.$year.
'.png';
173 if ($mode ==
'customer') {
174 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstats&file=ordersaverage-'.$user->id.
'-'.$year.
'.png';
176 if ($mode ==
'supplier') {
177 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstatssupplier&file=ordersaverage-'.$user->id.
'-'.$year.
'.png';
180 $filename_avg = $dir.
'/ordersaverage-'.$year.
'.png';
181 if ($mode ==
'customer') {
182 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstats&file=ordersaverage-'.$year.
'.png';
184 if ($mode ==
'supplier') {
185 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstatssupplier&file=ordersaverage-'.$year.
'.png';
190$mesg = $px3->isGraphKo();
192 $px3->SetData($data);
195 while ($i <= $endyear) {
199 $px3->SetLegend($legend);
200 $px3->SetYLabel($langs->trans(
"AmountAverage"));
201 $px3->SetMaxValue($px3->GetCeilMaxValue());
202 $px3->SetMinValue($px3->GetFloorMinValue());
203 $px3->SetWidth($WIDTH);
204 $px3->SetHeight($HEIGHT);
206 $px3->SetHorizTickIncrement(1);
207 $px3->mode =
'depth';
208 $px3->SetTitle($langs->trans(
"AmountAverage"));
210 $px3->draw($filename_avg, $fileurl_avg);
215$data = $stats->getAllByYear();
216$arrayyears = array();
217foreach ($data as $val) {
218 $arrayyears[$val[
'year']] = $val[
'year'];
220if (!count($arrayyears)) {
221 $arrayyears[$nowyear] = $nowyear;
227$head[$h][0] = DOL_URL_ROOT.
'/compta/deplacement/stats/index.php';
228$head[$h][1] = $langs->trans(
"ByMonthYear");
229$head[$h][2] =
'byyear';
237print
'<div class="fichecenter"><div class="fichethirdleft">';
241print
'<form name="stats" method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
242print
'<input type="hidden" name="token" value="'.newToken().
'">';
243print
'<input type="hidden" name="mode" value="'.$mode.
'">';
245print
'<table class="border centpercent">';
246print
'<tr class="liste_titre"><td class="liste_titre" colspan="2">'.$langs->trans(
"Filter").
'</td></tr>';
248print
'<tr><td>'.$langs->trans(
"ThirdParty").
'</td><td>';
249print
img_picto(
'',
'company',
'class="pictofixedwidth"');
250print $form->select_company($socid,
'socid',
'', 1, 1, 0, array(), 0,
'widthcentpercentminusx maxwidth300',
'');
253print
'<tr><td>'.$langs->trans(
"User").
'</td><td>';
255if (!$user->hasRight(
'deplacement',
'readall') && !$user->hasRight(
'deplacement',
'lire_tous')) {
256 $include =
'hierarchy';
258print
img_picto(
'',
'user',
'class="pictofixedwidth"');
259print $form->select_dolusers($userid,
'userid', 1,
'', 0, $include,
'', 0, 0, 0,
'', 0,
'',
'widthcentpercentminusx maxwidth300');
262print
'<tr><td>'.$langs->trans(
"Year").
'</td><td>';
263if (!in_array($year, $arrayyears)) {
264 $arrayyears[$year] = $year;
267print $form->selectarray(
'year', $arrayyears, $year, 0, 0, 0,
'', 0, 0, 0,
'',
'width75');
269print
'<tr><td align="center" colspan="2"><input type="submit" name="submit" class="button small" value="'.$langs->trans(
"Refresh").
'"></td></tr>';
274print
'<div class="div-table-responsive-no-min">';
275print
'<table class="border centpercent">';
277print
'<td class="center">'.$langs->trans(
"Year").
'</td>';
278print
'<td class="center">'.$langs->trans(
"Number").
'</td>';
279print
'<td class="center">'.$langs->trans(
"AmountTotal").
'</td>';
280print
'<td class="center">'.$langs->trans(
"AmountAverage").
'</td>';
284foreach ($data as $val) {
285 $year = $val[
'year'];
286 while ($year && $oldyear > (
int) $year + 1) {
289 print
'<td align="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$oldyear.
'&mode='.$mode.
'">'.$oldyear.
'</a></td>';
290 print
'<td class="right">0</td>';
291 print
'<td class="right">0</td>';
292 print
'<td class="right">0</td>';
298 print
'<td align="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$year.
'&mode='.$mode.
'">'.$year.
'</a></td>';
299 print
'<td class="right">'.$val[
'nb'].
'</td>';
300 print
'<td class="right">'.price(
price2num($val[
'total'],
'MT'), 1).
'</td>';
301 print
'<td class="right">'.price(
price2num($val[
'avg'],
'MT'), 1).
'</td>';
309print
'</div><div class="fichetwothirdright">';
313print
'<table class="border centpercent"><tr class="pair nohover"><td align="center">';
323print
'</td></tr></table>';
327print
'<div class="clearboth"></div>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage the statistics of travel and expense notes.
static getDefaultGraphSizeForStats($direction, $defaultsize='')
getDefaultGraphSizeForStats
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
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).
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.