29require
'../../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/salaries/class/salariesstats.class.php';
42$langs->loadLangs(array(
"salaries",
"companies",
"bills"));
60 $socid = $user->socid;
79$title = $langs->trans(
"SalariesStatistics");
80$dir = $conf->salaries->dir_temp;
86$useridtofilter = $userid;
88if (!$user->hasRight(
'salaries',
'readchild') && empty($useridtofilter)) {
89 $useridtofilter = $user->id;
91if (!$user->hasRight(
'salaries',
'readall') && empty($useridtofilter)) {
92 $useridtofilter = $user->getAllChildIds(1);
101$data = $stats->getNbByMonthWithPrevYear($endyear, $startyear);
104$filenamenb = $dir.
"/salariesnbinyear-".$year.
".png";
105$fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=salariesstats&file=salariesnbinyear-'.$year.
'.png';
108$mesg = $px1->isGraphKo();
110 $px1->SetData($data);
113 while ($i <= $endyear) {
117 $px1->SetLegend($legend);
118 $px1->SetMaxValue($px1->GetCeilMaxValue());
119 $px1->SetWidth($WIDTH);
120 $px1->SetHeight($HEIGHT);
121 $px1->SetYLabel($langs->trans(
"Number"));
123 $px1->SetHorizTickIncrement(1);
124 $px1->mode =
'depth';
125 $px1->SetTitle($langs->trans(
"NumberByMonth"));
127 $px1->draw($filenamenb, $fileurlnb);
131$data = $stats->getAmountByMonthWithPrevYear($endyear, $startyear);
135$filenameamount = $dir.
"/salariesamountinyear-".$year.
".png";
136$fileurlamount = DOL_URL_ROOT.
'/viewimage.php?modulepart=salariesstats&file=salariesamountinyear-'.$year.
'.png';
139$mesg = $px2->isGraphKo();
141 $px2->SetData($data);
144 while ($i <= $endyear) {
148 $px2->SetLegend($legend);
149 $px2->SetMaxValue($px2->GetCeilMaxValue());
150 $px2->SetMinValue(min(0, $px2->GetFloorMinValue()));
151 $px2->SetWidth($WIDTH);
152 $px2->SetHeight($HEIGHT);
153 $px2->SetYLabel($langs->trans(
"Amount"));
155 $px2->SetHorizTickIncrement(1);
156 $px2->mode =
'depth';
157 $px2->SetTitle($langs->trans(
"AmountTotal"));
159 $px2->draw($filenameamount, $fileurlamount);
163$data = $stats->getAverageByMonthWithPrevYear($endyear, $startyear);
165$filename_avg = $dir.
"/salariesaverageinyear-".$year.
".png";
166$fileurl_avg = DOL_URL_ROOT.
'/viewimage.php?modulepart=salariesstats&file=salariesaverageinyear-'.$year.
'.png';
169$mesg = $px3->isGraphKo();
171 $px3->SetData($data);
174 while ($i <= $endyear) {
178 $px3->SetLegend($legend);
179 $px3->SetYLabel($langs->trans(
"AmountAverage"));
180 $px3->SetMaxValue($px3->GetCeilMaxValue());
181 $px3->SetMinValue((
int) $px3->GetFloorMinValue());
182 $px3->SetWidth($WIDTH);
183 $px3->SetHeight($HEIGHT);
185 $px3->SetHorizTickIncrement(1);
186 $px3->mode =
'depth';
187 $px3->SetTitle($langs->trans(
"AmountAverage"));
189 $px3->draw($filename_avg, $fileurl_avg);
194$data = $stats->getAllByYear();
195$arrayyears = array();
196foreach ($data as $val) {
197 $arrayyears[$val[
'year']] = $val[
'year'];
199if (!count($arrayyears)) {
200 $arrayyears[$nowyear] = $nowyear;
206$head[$h][0] = DOL_URL_ROOT.
'/salaries/stats/index.php';
207$head[$h][1] = $langs->trans(
"ByMonthYear");
208$head[$h][2] =
'byyear';
216print
'<div class="fichecenter"><div class="fichethirdleft">';
220print
'<form name="stats" method="POST" action="'.dolBuildUrl($_SERVER[
"PHP_SELF"]).
'">';
221print
'<input type="hidden" name="token" value="'.newToken().
'">';
222print
'<table class="noborder centpercent">';
223print
'<tr class="liste_titre"><td class="liste_titre" colspan="2">'.$langs->trans(
"Filter").
'</td></tr>';
226print
'<tr><td>'.$langs->trans(
"Employee").
'</td><td>';
227if (!$user->hasRight(
'salaries',
'readchild') && empty($useridtofilter)) {
228 print
img_picto(
'',
'user',
'class="pictofixedwidth"');
229 print $form->select_dolusers(($userid ? $userid : -1),
'userid', 1, null, 0, !$user->hasRight(
'salaries',
'readall') ?
'hierarchyme' :
'',
'',
'0', 0, 0,
'', 0,
'',
'widthcentpercentminusx maxwidth300');
231 print $user->getNomUrl(1);
236print
'<tr><td>'.$langs->trans(
"Year").
'</td><td>';
237if (!in_array($year, $arrayyears)) {
238 $arrayyears[$year] = $year;
241print
img_picto(
'',
'calendar',
'class="pictofixedwidth"');
242print $form->selectarray(
'year', $arrayyears, $year, 0, 0, 0,
'', 0, 0, 0,
'',
'width75');
244print
'<tr><td align="center" colspan="2"><input type="submit" name="submit" class="button small" value="'.$langs->trans(
"Refresh").
'"></td></tr>';
248print
'<div class="div-table-responsive-no-min">';
249print
'<table class="noborder centpercent">';
250print
'<tr class="liste_titre" height="24">';
251print
'<td class="center">'.$langs->trans(
"Year").
'</td>';
252print
'<td class="right">'.$langs->trans(
"Number").
'</td>';
253print
'<td class="right">'.$langs->trans(
"AmountTotal").
'</td>';
254print
'<td class="right">'.$langs->trans(
"AmountAverage").
'</td>';
258foreach ($data as $val) {
259 $year = $val[
'year'];
260 while ($year && $oldyear > (
int) $year + 1) {
264 print
'<tr class="oddeven" height="24">';
265 print
'<td align="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$oldyear.
'">'.$oldyear.
'</a></td>';
266 print
'<td class="right">0</td>';
267 print
'<td class="right"><span class="amount">0</span></td>';
268 print
'<td class="right"><span class="amount">0</span></td>';
272 print
'<tr class="oddeven" height="24">';
273 print
'<td align="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$year.
'">'.$year.
'</a></td>';
274 print
'<td class="right">'.$val[
'nb'].
'</td>';
275 print
'<td class="right"><span class="amount">'.price(
price2num($val[
'total'],
'MT'), 1).
'</span></td>';
276 print
'<td class="right"><span class="amount">'.price(
price2num($val[
'avg'],
'MT'), 1).
'</span></td>';
285print
'</div><div class="fichetwothirdright">';
289print
'<table class="border centpercent"><tr class="pair nohover"><td align="center">';
299print
'</td></tr></table>';
303print
'<div class="clearboth"></div>';
$id
Support class for third parties, contacts, members, users or resources.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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 salary statistics.
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
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, $morecssdiv='')
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=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
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.