26require
'../../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/projet/class/projectstats.class.php';
35$search_opp_status =
GETPOST(
"search_opp_status",
'alpha');
37$userid =
GETPOST(
'userid',
'int');
38$socid =
GETPOST(
'socid',
'int');
40if ($user->socid > 0) {
42 $socid = $user->socid;
45$year =
GETPOST(
'year',
'int') > 0 ?
GETPOST(
'year',
'int') : $nowyear;
46$startyear = $year - (empty($conf->global->MAIN_STATS_GRAPHS_SHOW_N_YEARS) ? 2 : max(1, min(10, $conf->global->MAIN_STATS_GRAPHS_SHOW_N_YEARS)));
50$langs->loadLangs(array(
'companies',
'projects'));
53if (!$user->rights->projet->lire) {
65$includeuserlist = array();
70$title = $langs->trans(
"ProjectsStatistics");
71$dir = $conf->project->dir_output.
'/temp';
79if (!empty($userid) && $userid != -1) {
80 $stats_project->userid = $userid;
82if (!empty($socid) && $socid != -1) {
83 $stats_project->socid = $socid;
86 $stats_project->year = $year;
89if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
90 if ($search_opp_status) {
91 $stats_project->opp_status = $search_opp_status;
98$data = $stats_project->getNbByMonthWithPrevYear($endyear, $startyear);
101$filenamenb = $conf->project->dir_output.
"/stats/projectnbprevyear-".$year.
".png";
102$fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=projectstats&file=projectnbprevyear-'.$year.
'.png';
105$mesg = $px1->isGraphKo();
107 $px1->SetData($data);
108 $i = $startyear; $legend = array();
109 while ($i <= $endyear) {
113 $px1->SetLegend($legend);
114 $px1->SetMaxValue($px1->GetCeilMaxValue());
115 $px1->SetWidth($WIDTH);
116 $px1->SetHeight($HEIGHT);
117 $px1->SetYLabel($langs->trans(
"ProjectNbProject"));
119 $px1->SetHorizTickIncrement(1);
120 $px1->mode =
'depth';
121 $px1->SetTitle($langs->trans(
"ProjectNbProjectByMonth"));
123 $px1->draw($filenamenb, $fileurlnb);
127if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
129 $data = $stats_project->getAmountByMonthWithPrevYear($endyear, $startyear);
133 $filenamenb = $conf->project->dir_output.
"/stats/projectamountprevyear-".$year.
".png";
134 $fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=projectstats&file=projectamountprevyear-'.$year.
'.png';
137 $mesg = $px2->isGraphKo();
139 $i = $startyear; $legend = array();
140 while ($i <= $endyear) {
145 $px2->SetData($data);
146 $px2->SetLegend($legend);
147 $px2->SetMaxValue($px2->GetCeilMaxValue());
148 $px2->SetMinValue(min(0, $px2->GetFloorMinValue()));
149 $px2->SetWidth($WIDTH);
150 $px2->SetHeight($HEIGHT);
151 $px2->SetYLabel($langs->trans(
"ProjectOppAmountOfProjectsByMonth"));
153 $px2->SetHorizTickIncrement(1);
154 $px2->SetType(array(
'bars',
'bars'));
155 $px2->mode =
'depth';
156 $px2->SetTitle($langs->trans(
"ProjectOppAmountOfProjectsByMonth"));
158 $px2->draw($filenamenb, $fileurlnb);
162if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
164 $data = $stats_project->getWeightedAmountByMonthWithPrevYear($endyear, $startyear, 0, 0);
168 $filenamenb = $conf->project->dir_output.
"/stats/projecttransrateprevyear-".$year.
".png";
169 $fileurlnb = DOL_URL_ROOT.
'/viewimage.php?modulepart=projectstats&file=projecttransrateprevyear-'.$year.
'.png';
172 $mesg = $px3->isGraphKo();
174 $px3->SetData($data);
177 while ($i <= $endyear) {
181 $px3->SetLegend($legend);
182 $px3->SetMaxValue($px3->GetCeilMaxValue());
183 $px3->SetMinValue(min(0, $px3->GetFloorMinValue()));
184 $px3->SetWidth($WIDTH);
185 $px3->SetHeight($HEIGHT);
186 $px3->SetYLabel($langs->trans(
"ProjectWeightedOppAmountOfProjectsByMonth"));
188 $px3->SetHorizTickIncrement(1);
189 $px3->mode =
'depth';
190 $px3->SetTitle($langs->trans(
"ProjectWeightedOppAmountOfProjectsByMonth"));
192 $px3->draw($filenamenb, $fileurlnb);
198$stats_project->year = 0;
199$data_all_year = $stats_project->getAllByYear();
202 $stats_project->year = $year;
204$arrayyears = array();
205foreach ($data_all_year as $val) {
206 $arrayyears[$val[
'year']] = $val[
'year'];
208if (!count($arrayyears)) {
209 $arrayyears[$nowyear] = $nowyear;
215$head[$h][0] = DOL_URL_ROOT.
'/projet/stats/index.php';
216$head[$h][1] = $langs->trans(
"ByMonthYear");
217$head[$h][2] =
'byyear';
225print
'<div class="fichecenter"><div class="fichethirdleft">';
227print
'<form name="stats" method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
228print
'<input type="hidden" name="token" value="'.newToken().
'">';
230print
'<table class="noborder centpercent">';
231print
'<tr class="liste_titre"><td class="liste_titre" colspan="2">'.$langs->trans(
"Filter").
'</td></tr>';
233print
'<tr><td>'.$langs->trans(
"ThirdParty").
'</td><td>';
234print
img_picto(
'',
'company',
'class="pictofixedwidth"');
235print $form->select_company($socid,
'socid',
'', 1, 0, 0, array(), 0,
'widthcentpercentminusx maxwidth300',
'');
238if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
239 print
'<tr><td>'.$langs->trans(
"OpportunityStatusShort").
'</td><td>';
240 print $formproject->selectOpportunityStatus(
'search_opp_status', $search_opp_status, 1, 0, 1, 0,
'maxwidth300', 1, 1);
249print
'<tr><td>'.$langs->trans(
"Year").
' <span class="opacitymedium">('.$langs->trans(
"DateCreation").
')</span></td><td>';
250if (!in_array($year, $arrayyears)) {
251 $arrayyears[$year] = $year;
253if (!in_array($nowyear, $arrayyears)) {
254 $arrayyears[$nowyear] = $nowyear;
257print $form->selectarray(
'year', $arrayyears, $year, 0, 0, 0,
'', 0, 0, 0,
'',
'width75');
259print
'<tr><td class="center" colspan="2"><input type="submit" name="submit" class="button small" value="'.$langs->trans(
"Refresh").
'"></td></tr>';
266print
'<div class="div-table-responsive-no-min">';
267print
'<table class="noborder centpercent">';
268print
'<tr class="liste_titre" height="24">';
269print
'<td class="center">'.$langs->trans(
"Year").
'</td>';
270print
'<td class="right">'.$langs->trans(
"NbOfProjects").
'</td>';
271if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
272 print
'<td class="right">'.$langs->trans(
"OpportunityAmountShort").
'</td>';
273 print
'<td class="right">'.$langs->trans(
"OpportunityAmountAverageShort").
'</td>';
274 print
'<td class="right">'.$langs->trans(
"OpportunityAmountWeigthedShort").
'</td>';
279foreach ($data_all_year as $val) {
280 $year = $val[
'year'];
281 while ($year && $oldyear > $year + 1) {
284 print
'<tr class="oddeven" height="24">';
285 print
'<td class="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$oldyear.($socid > 0 ?
'&socid='.$socid :
'').($userid > 0 ?
'&userid='.$userid :
'').
'">'.$oldyear.
'</a></td>';
286 print
'<td class="right">0</td>';
287 if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
288 print
'<td class="right amount nowraponall">0</td>';
289 print
'<td class="right amount nowraponall">0</td>';
290 print
'<td class="right amount nowraponall">0</td>';
295 print
'<tr class="oddeven" height="24">';
296 print
'<td class="center"><a href="'.$_SERVER[
"PHP_SELF"].
'?year='.$year.($socid > 0 ?
'&socid='.$socid :
'').($userid > 0 ?
'&userid='.$userid :
'').
'">'.$year.
'</a></td>';
297 print
'<td class="right">'.$val[
'nb'].
'</td>';
298 if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
299 print
'<td class="right amount nowraponall">'.($val[
'total'] ?
price(
price2num($val[
'total'],
'MT'), 1) :
'0').
'</td>';
300 print
'<td class="right amount nowraponall">'.($val[
'avg'] ?
price(
price2num($val[
'avg'],
'MT'), 1) :
'0').
'</td>';
301 print
'<td class="right amount nowraponall">'.(isset($val[
'weighted']) ?
price(
price2num($val[
'weighted'],
'MT'), 1) :
'0').
'</td>';
310print
'</div><div class="fichetwothirdright">';
312$stringtoshow =
'<table class="border centpercent"><tr class="pair nohover"><td class="center">';
316 $stringtoshow .= $px1->show();
317 $stringtoshow .=
"<br>\n";
318 if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
321 $stringtoshow .= $px2->show();
322 $stringtoshow .=
"<br>\n";
323 $stringtoshow .= $px3->show();
326$stringtoshow .=
'</td></tr></table>';
332print
'<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 statistics on projects.
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.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
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).
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.