29require
'../../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereportstats.class.php';
34$langs->loadLangs(array(
'trips',
'companies'));
39$mode = GETPOSTISSET(
"mode") ?
GETPOST(
"mode",
'aZ09') :
'customer';
40$object_status =
GETPOST(
'object_status',
'intcomma');
50if ($user->socid > 0) {
52 $socid = $user->socid;
55 $socid = $user->socid;
73$title = $langs->trans(
"TripsAndExpensesStatistics");
74$dir = $conf->expensereport->dir_temp;
83if ($object_status !=
'' && $object_status >= -1) {
84 $stats->where .=
' AND e.fk_statut IN ('.$db->sanitize($db->escape($object_status)).
')';
90$data = $stats->getNbByMonthWithPrevYear($endyear, $startyear);
93$filenamenb = $dir.
"/tripsexpensesnbinyear-".$year.
".png";
94$fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=tripsexpensesstats&file=tripsexpensesnbinyear-'.$year.
'.png';
97$mesg = $px1->isGraphKo();
102 while ($i <= $endyear) {
106 $px1->SetLegend($legend);
107 $px1->SetMaxValue($px1->GetCeilMaxValue());
108 $px1->SetWidth($WIDTH);
109 $px1->SetHeight($HEIGHT);
110 $px1->SetYLabel($langs->trans(
"Number"));
112 $px1->SetHorizTickIncrement(1);
113 $px1->mode =
'depth';
114 $px1->SetTitle($langs->trans(
"NumberByMonth"));
116 $px1->draw($filenamenb, $fileurlnb);
120$data = $stats->getAmountByMonthWithPrevYear($endyear, $startyear);
124$filenameamount = $dir.
"/tripsexpensesamountinyear-".$year.
".png";
125$fileurlamount = DOL_URL_ROOT.
'/viewimage.php?modulepart=tripsexpensesstats&file=tripsexpensesamountinyear-'.$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(
"Amount"));
144 $px2->SetHorizTickIncrement(1);
145 $px2->mode =
'depth';
146 $px2->SetTitle($langs->trans(
"AmountTotal"));
148 $px2->draw($filenameamount, $fileurlamount);
152$data = $stats->getAverageByMonthWithPrevYear($endyear, $startyear);
154if (!$user->hasRight(
'societe',
'client',
'voir')) {
155 $filename_avg = $dir.
'/ordersaverage-'.$user->id.
'-'.$year.
'.png';
156 if ($mode ==
'customer') {
157 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstats&file=ordersaverage-'.$user->id.
'-'.$year.
'.png';
159 if ($mode ==
'supplier') {
160 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstatssupplier&file=ordersaverage-'.$user->id.
'-'.$year.
'.png';
163 $filename_avg = $dir.
'/ordersaverage-'.$year.
'.png';
164 if ($mode ==
'customer') {
165 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstats&file=ordersaverage-'.$year.
'.png';
167 if ($mode ==
'supplier') {
168 $fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=orderstatssupplier&file=ordersaverage-'.$year.
'.png';
173$mesg = $px3->isGraphKo();
175 $px3->SetData($data);
178 while ($i <= $endyear) {
182 $px3->SetLegend($legend);
183 $px3->SetYLabel($langs->trans(
"AmountAverage"));
184 $px3->SetMaxValue($px3->GetCeilMaxValue());
185 $px3->SetMinValue($px3->GetFloorMinValue());
186 $px3->SetWidth($WIDTH);
187 $px3->SetHeight($HEIGHT);
189 $px3->SetHorizTickIncrement(1);
190 $px3->mode =
'depth';
191 $px3->SetTitle($langs->trans(
"AmountAverage"));
193 $px3->draw($filename_avg, $fileurl_avg);
198$data = $stats->getAllByYear();
199$arrayyears = array();
200foreach ($data as $val) {
201 $arrayyears[$val[
'year']] = $val[
'year'];
203if (!count($arrayyears)) {
204 $arrayyears[$nowyear] = $nowyear;
210$head[$h][0] = DOL_URL_ROOT.
'/expensereport/stats/index.php';
211$head[$h][1] = $langs->trans(
"ByMonthYear");
212$head[$h][2] =
'byyear';
220print
'<div class="fichecenter"><div class="fichethirdleft">';
224print
'<form name="stats" method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
225print
'<input type="hidden" name="token" value="'.newToken().
'">';
226print
'<input type="hidden" name="mode" value="'.$mode.
'">';
228print
'<table class="noborder centpercent">';
229print
'<tr class="liste_titre"><td class="liste_titre" colspan="2">'.$langs->trans(
"Filter").
'</td></tr>';
237print
'<tr><td>'.$langs->trans(
"User").
'</td><td>';
239if (!$user->hasRight(
'expensereport',
'readall') && !$user->hasRight(
'expensereport',
'lire_tous')) {
240 $include =
'hierarchy';
242print
img_picto(
'',
'user',
'class="pictofixedwidth"');
243print $form->select_dolusers($userid,
'userid', 1,
'', 0, $include,
'', 0, 0, 0,
'', 0,
'',
'widthcentpercentminusx maxwidth300');
246print
'<tr><td class="left">'.$langs->trans(
"Status").
'</td><td class="left">';
247$liststatus = $tmpexpensereport->labelStatus;
248print $form->selectarray(
'object_status', $liststatus,
GETPOST(
'object_status',
'intcomma'), -4, 0, 0,
'', 1);
252print $form->textwithpicto($langs->trans(
"Year"), $langs->trans(
"DateValidation"));
254if (!in_array($year, $arrayyears)) {
255 $arrayyears[$year] = $year;
258print $form->selectarray(
'year', $arrayyears, $year, 0, 0, 0,
'', 0, 0, 0,
'',
'width75');
260print
'<tr><td class="center" colspan="2"><input type="submit" name="submit" class="button small" value="'.$langs->trans(
"Refresh").
'"></td></tr>';
265print
'<div class="div-table-responsive-no-min">';
266print
'<table class="noborder centpercent">';
267print
'<tr class="liste_titre" height="24">';
268print
'<td class="center">'.$langs->trans(
"Year").
'</td>';
269print
'<td class="right">'.$langs->trans(
"Number").
'</td>';
270print
'<td class="right">'.$langs->trans(
"AmountTotal").
'</td>';
271print
'<td class="right">'.$langs->trans(
"AmountAverage").
'</td>';
275foreach ($data as $val) {
276 $year = $val[
'year'];
277 while ($year && $oldyear > (
int) $year + 1) {
280 print
'<tr class="oddeven" height="24">';
281 print
'<td class="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$oldyear.
'&mode='.$mode.
'">'.$oldyear.
'</a></td>';
282 print
'<td class="right">0</td>';
283 print
'<td class="right amount nowraponall">0</td>';
284 print
'<td class="right amount nowraponall">0</td>';
289 print
'<tr class="oddeven" height="24">';
290 print
'<td class="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$year.
'&mode='.$mode.
'">'.$year.
'</a></td>';
291 print
'<td class="right">'.$val[
'nb'].
'</td>';
292 print
'<td class="right amount nowraponall">'.price(
price2num($val[
'total'],
'MT'), 1).
'</td>';
293 print
'<td class="right amount nowraponall">'.price(
price2num($val[
'avg'],
'MT'), 1).
'</td>';
301print
'</div><div class="fichetwothirdright">';
305print
'<table class="border centpercent"><tr class="pair nohover"><td class="center">';
315print
'</td></tr></table>';
319print
'<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.
static getDefaultGraphSizeForStats($direction, $defaultsize='')
getDefaultGraphSizeForStats
Class to manage Trips and Expenses.
Class to manage the statistics of the expensereports and expense notes.
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.
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).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
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.