dolibarr 21.0.0-beta
index.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
3 * Copyright (C) 2018 Fidesio <contact@fidesio.com>
4 * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28// Load Dolibarr environment
29require '../../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
31require_once DOL_DOCUMENT_ROOT.'/salaries/class/salariesstats.class.php';
32
41// Load translation files required by the page
42$langs->loadLangs(array("salaries", "companies", "bills"));
43
46
47$userid = GETPOSTINT('userid');
48if ($userid < 0) {
49 $userid = 0;
50}
51$socid = GETPOSTINT('socid');
52if ($socid < 0) {
53 $socid = 0;
54}
55$id = GETPOSTINT('id');
56
57// Security check
58$socid = GETPOSTINT("socid");
59if ($user->socid) {
60 $socid = $user->socid;
61}
62$result = restrictedArea($user, 'salaries', '', '', '');
63
64$nowyear = (int) dol_print_date(dol_now('gmt'), "%Y", 'gmt');
65$year = GETPOSTINT('year') > 0 ? GETPOSTINT('year') : $nowyear;
66$startyear = $year - (!getDolGlobalString('MAIN_STATS_GRAPHS_SHOW_N_YEARS') ? 2 : max(1, min(10, getDolGlobalString('MAIN_STATS_GRAPHS_SHOW_N_YEARS'))));
67$endyear = $year;
68
69
70/*
71 * View
72 */
73
74$form = new Form($db);
75
76
77llxHeader();
78
79$title = $langs->trans("SalariesStatistics");
80$dir = $conf->salaries->dir_temp;
81
82print load_fiche_titre($title, '', 'salary');
83
84dol_mkdir($dir);
85
86$useridtofilter = $userid; // Filter from parameters
87
88if (!$user->hasRight('salaries', 'readall') && empty($useridtofilter)) {
89 $useridtofilter = $user->getAllChildIds(1);
90}
91
92$stats = new SalariesStats($db, $socid, $useridtofilter);
93
94
95// Build graphic number of object
96// $data = array(array('Lib',val1,val2,val3),...)
97//print "$endyear, $startyear";
98$data = $stats->getNbByMonthWithPrevYear($endyear, $startyear);
99//var_dump($data);
100
101$filenamenb = $dir."/salariesnbinyear-".$year.".png";
102$fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=salariesstats&amp;file=salariesnbinyear-'.$year.'.png';
103
104$px1 = new DolGraph();
105$mesg = $px1->isGraphKo();
106if (!$mesg) {
107 $px1->SetData($data);
108 $i = $startyear;
109 $legend = array();
110 while ($i <= $endyear) {
111 $legend[] = $i;
112 $i++;
113 }
114 $px1->SetLegend($legend);
115 $px1->SetMaxValue($px1->GetCeilMaxValue());
116 $px1->SetWidth($WIDTH);
117 $px1->SetHeight($HEIGHT);
118 $px1->SetYLabel($langs->trans("Number"));
119 $px1->SetShading(3);
120 $px1->SetHorizTickIncrement(1);
121 $px1->mode = 'depth';
122 $px1->SetTitle($langs->trans("NumberByMonth"));
123
124 $px1->draw($filenamenb, $fileurlnb);
125}
126
127// Build graphic amount of object
128$data = $stats->getAmountByMonthWithPrevYear($endyear, $startyear);
129//var_dump($data);
130// $data = array(array('Lib',val1,val2,val3),...)
131
132$filenameamount = $dir."/salariesamountinyear-".$year.".png";
133$fileurlamount = DOL_URL_ROOT.'/viewimage.php?modulepart=salariesstats&amp;file=salariesamountinyear-'.$year.'.png';
134
135$px2 = new DolGraph();
136$mesg = $px2->isGraphKo();
137if (!$mesg) {
138 $px2->SetData($data);
139 $i = $startyear;
140 $legend = array();
141 while ($i <= $endyear) {
142 $legend[] = $i;
143 $i++;
144 }
145 $px2->SetLegend($legend);
146 $px2->SetMaxValue($px2->GetCeilMaxValue());
147 $px2->SetMinValue(min(0, $px2->GetFloorMinValue()));
148 $px2->SetWidth($WIDTH);
149 $px2->SetHeight($HEIGHT);
150 $px2->SetYLabel($langs->trans("Amount"));
151 $px2->SetShading(3);
152 $px2->SetHorizTickIncrement(1);
153 $px2->mode = 'depth';
154 $px2->SetTitle($langs->trans("AmountTotal"));
155
156 $px2->draw($filenameamount, $fileurlamount);
157}
158
159
160$data = $stats->getAverageByMonthWithPrevYear($endyear, $startyear);
161
162$filename_avg = $dir."/salariesaverageinyear-".$year.".png";
163$fileurl_avg = DOL_URL_ROOT.'/viewimage.php?modulepart=salariesstats&file=salariesaverageinyear-'.$year.'.png';
164
165$px3 = new DolGraph();
166$mesg = $px3->isGraphKo();
167if (!$mesg) {
168 $px3->SetData($data);
169 $i = $startyear;
170 $legend = array();
171 while ($i <= $endyear) {
172 $legend[] = $i;
173 $i++;
174 }
175 $px3->SetLegend($legend);
176 $px3->SetYLabel($langs->trans("AmountAverage"));
177 $px3->SetMaxValue($px3->GetCeilMaxValue());
178 $px3->SetMinValue($px3->GetFloorMinValue());
179 $px3->SetWidth($WIDTH);
180 $px3->SetHeight($HEIGHT);
181 $px3->SetShading(3);
182 $px3->SetHorizTickIncrement(1);
183 $px3->mode = 'depth';
184 $px3->SetTitle($langs->trans("AmountAverage"));
185
186 $px3->draw($filename_avg, $fileurl_avg);
187}
188
189
190// Show array
191$data = $stats->getAllByYear();
192$arrayyears = array();
193foreach ($data as $val) {
194 $arrayyears[$val['year']] = $val['year'];
195}
196if (!count($arrayyears)) {
197 $arrayyears[$nowyear] = $nowyear;
198}
199
200
201$h = 0;
202$head = array();
203$head[$h][0] = DOL_URL_ROOT.'/salaries/stats/index.php';
204$head[$h][1] = $langs->trans("ByMonthYear");
205$head[$h][2] = 'byyear';
206$h++;
207
208complete_head_from_modules($conf, $langs, null, $head, $h, 'salaries_stats');
209
210print dol_get_fiche_head($head, 'byyear', '', -1);
211
212
213print '<div class="fichecenter"><div class="fichethirdleft">';
214
215
216// Show filter box
217print '<form name="stats" method="POST" action="'.$_SERVER["PHP_SELF"].'">';
218print '<input type="hidden" name="token" value="'.newToken().'">';
219
220print '<table class="noborder centpercent">';
221print '<tr class="liste_titre"><td class="liste_titre" colspan="2">'.$langs->trans("Filter").'</td></tr>';
222// User
223print '<tr><td>'.$langs->trans("Employee").'</td><td>';
224print img_picto('', 'user', 'class="pictofixedwidth"');
225print $form->select_dolusers(($userid ? $userid : -1), 'userid', 1, '', 0, !$user->hasRight('salaries', 'readall') ? 'hierarchyme' : '', '', 0, 0, 0, '', 0, '', 'widthcentpercentminusx maxwidth300');
226print '</td></tr>';
227// Year
228print '<tr><td>'.$langs->trans("Year").'</td><td>';
229if (!in_array($year, $arrayyears)) {
230 $arrayyears[$year] = $year;
231}
232arsort($arrayyears);
233print $form->selectarray('year', $arrayyears, $year, 0, 0, 0, '', 0, 0, 0, '', 'width75');
234print '</td></tr>';
235print '<tr><td align="center" colspan="2"><input type="submit" name="submit" class="button small" value="'.$langs->trans("Refresh").'"></td></tr>';
236print '</table>';
237print '</form>';
238print '<br><br>';
239
240print '<div class="div-table-responsive-no-min">';
241print '<table class="noborder centpercent">';
242print '<tr class="liste_titre" height="24">';
243print '<td class="center">'.$langs->trans("Year").'</td>';
244print '<td class="right">'.$langs->trans("Number").'</td>';
245print '<td class="right">'.$langs->trans("AmountTotal").'</td>';
246print '<td class="right">'.$langs->trans("AmountAverage").'</td>';
247print '</tr>';
248
249$oldyear = 0;
250foreach ($data as $val) {
251 $year = $val['year'];
252 while ($year && $oldyear > (int) $year + 1) {
253 // If we have empty year
254 $oldyear--;
255
256 print '<tr class="oddeven" height="24">';
257 print '<td align="center"><a href="'.$_SERVER["PHP_SELF"].'?year='.$oldyear.'">'.$oldyear.'</a></td>';
258 print '<td class="right">0</td>';
259 print '<td class="right"><span class="amount">0</span></td>';
260 print '<td class="right"><span class="amount">0</span></td>';
261 print '</tr>';
262 }
263
264 print '<tr class="oddeven" height="24">';
265 print '<td align="center"><a href="'.$_SERVER["PHP_SELF"].'?year='.$year.'">'.$year.'</a></td>';
266 print '<td class="right">'.$val['nb'].'</td>';
267 print '<td class="right"><span class="amount">'.price(price2num($val['total'], 'MT'), 1).'</span></td>';
268 print '<td class="right"><span class="amount">'.price(price2num($val['avg'], 'MT'), 1).'</span></td>';
269 print '</tr>';
270 $oldyear = $year;
271}
272
273print '</table>';
274print '</div>';
275
276
277print '</div><div class="fichetwothirdright">';
278
279
280// Show graphs
281print '<table class="border centpercent"><tr class="pair nohover"><td align="center">';
282if ($mesg) {
283 print $mesg;
284} else {
285 print $px1->show();
286 print "<br>\n";
287 print $px2->show();
288 print "<br>\n";
289 print $px3->show();
290}
291print '</td></tr></table>';
292
293
294print '</div></div>';
295print '<div class="clearboth"></div>';
296
297
298print dol_get_fiche_end();
299
300// End of page
301llxFooter();
302$db->close();
$id
Definition account.php:48
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.
Definition wrapper.php:71
Class to build graphs.
static getDefaultGraphSizeForStats($direction, $defaultsize='')
getDefaultGraphSizeForStats
Class to manage generation of HTML components Only common components must be here.
Class to manage salary statistics.
llxFooter()
Footer empty.
Definition document.php:107
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).
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)
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
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.