dolibarr 20.0.0
index.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2015 Charlene Benke <charlene@patas-monkey.com>
6 * Copyright (C) 2019 Nicolas ZABOURI <info@inovea-conseil.com>
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/html.formfile.class.php';
31require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
32require_once DOL_DOCUMENT_ROOT.'/fichinter/class/fichinter.class.php';
33
34if (!$user->hasRight('ficheinter', 'lire')) {
36}
37
38$hookmanager = new HookManager($db);
39
40// Initialize technical object to manage hooks. Note that conf->hooks_modules contains array
41$hookmanager->initHooks(array('interventionindex'));
42
43// Load translation files required by the page
44$langs->load("interventions");
45
46// Security check
47$socid = GETPOSTINT('socid');
48if ($user->socid > 0) {
49 $action = '';
50 $socid = $user->socid;
51}
52
53$max = getDolGlobalInt('MAIN_SIZE_SHORTLIST_LIMIT', 5);
54
55
56/*
57 * View
58 */
59
60$fichinterstatic = new Fichinter($db);
61$form = new Form($db);
62$formfile = new FormFile($db);
63
64$help_url = "EN:ModuleFichinters|FR:Module_Fiche_Interventions|ES:Módulo_FichaInterventiones";
65
66llxHeader("", $langs->trans("Interventions"), $help_url);
67
68print load_fiche_titre($langs->trans("InterventionsArea"), '', 'intervention');
69
70print '<div class="fichecenter"><div class="fichethirdleft">';
71
72// Statistics
73
74$sql = "SELECT count(f.rowid), f.fk_statut";
75$sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
76$sql .= ", ".MAIN_DB_PREFIX."fichinter as f";
77if (!$user->hasRight('societe', 'client', 'voir')) {
78 $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
79}
80$sql .= " WHERE f.entity IN (".getEntity('intervention').")";
81$sql .= " AND f.fk_soc = s.rowid";
82if ($user->socid) {
83 $sql .= ' AND f.fk_soc = '.((int) $user->socid);
84}
85if (!$user->hasRight('societe', 'client', 'voir')) {
86 $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
87}
88$sql .= " GROUP BY f.fk_statut";
89$resql = $db->query($sql);
90if ($resql) {
91 $num = $db->num_rows($resql);
92
93 $total = 0;
94 $totalinprocess = 0;
95 $dataseries = array();
96 $colorseries = array();
97 $vals = array();
98 $bool = false;
99 // -1=Canceled, 0=Draft, 1=Validated, 2=Accepted/On process, 3=Closed (Sent/Received, billed or not)
100 if ($num > 0) {
101 while ($row = $db->fetch_row($resql)) {
102 if (!isset($vals[$row[1]])) {
103 $vals[$row[1]] = 0;
104 }
105 $vals[$row[1]] += $row[0];
106 $totalinprocess += $row[0];
107
108 $total += $row[0];
109 }
110 }
111 $db->free($resql);
112 include DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php';
113
114 print '<div class="div-table-responsive-no-min">';
115 print '<table class="noborder nohover centpercent">';
116 print '<tr class="liste_titre"><th colspan="2">'.$langs->trans("Statistics").' - '.$langs->trans("Interventions").'</th></tr>'."\n";
118 if (getDolGlobalString('FICHINTER_CLASSIFY_BILLED')) {
119 $listofstatus[] = Fichinter::STATUS_BILLED;
120 }
121
122 foreach ($listofstatus as $status) {
123 $dataseries[] = array($fichinterstatic->LibStatut($status, 1), (isset($vals[$status]) ? (int) $vals[$status] : 0));
124
125 if ($status == Fichinter::STATUS_DRAFT) {
126 $colorseries[$status] = '-'.$badgeStatus0;
127 }
128 if ($status == Fichinter::STATUS_VALIDATED) {
129 $colorseries[$status] = $badgeStatus1;
130 }
131 if ($status == Fichinter::STATUS_BILLED) {
132 $colorseries[$status] = $badgeStatus4;
133 }
134 }
135
136 if ($conf->use_javascript_ajax) {
137 print '<tr class="impair"><td class="center" colspan="2">';
138
139 include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
140 $dolgraph = new DolGraph();
141 $dolgraph->SetData($dataseries);
142 $dolgraph->SetDataColor(array_values($colorseries));
143 $dolgraph->setShowLegend(2);
144 $dolgraph->setShowPercent(1);
145 $dolgraph->SetType(array('pie'));
146 $dolgraph->setHeight('200');
147 $dolgraph->draw('idgraphstatus');
148 print $dolgraph->show($total ? 0 : 1);
149
150 print '</td></tr>';
151 }
152 foreach ($listofstatus as $status) {
153 if (!$conf->use_javascript_ajax) {
154 print '<tr class="oddeven">';
155 print '<td>'.$fichinterstatic->LibStatut($status, 0).'</td>';
156 print '<td class="right"><a href="list.php?search_status='.$status.'">'.(isset($vals[$status]) ? $vals[$status] : 0).' ';
157 print $fichinterstatic->LibStatut($status, 3);
158 print '</a>';
159 print '</td>';
160 print "</tr>\n";
161 }
162 }
163 //if ($totalinprocess != $total)
164 //print '<tr class="liste_total"><td>'.$langs->trans("Total").' ('.$langs->trans("CustomersOrdersRunning").')</td><td class="right">'.$totalinprocess.'</td></tr>';
165 print '<tr class="liste_total"><td>'.$langs->trans("Total").'</td><td class="right">'.$total.'</td></tr>';
166 print "</table></div><br>";
167} else {
168 dol_print_error($db);
169}
170
171
172/*
173 * Draft orders
174 */
175if (isModEnabled('intervention')) {
176 $sql = "SELECT f.rowid, f.ref, s.nom as name, s.rowid as socid";
177 $sql .= " FROM ".MAIN_DB_PREFIX."fichinter as f";
178 $sql .= ", ".MAIN_DB_PREFIX."societe as s";
179 if (!$user->hasRight('societe', 'client', 'voir')) {
180 $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
181 }
182 $sql .= " WHERE f.entity IN (".getEntity('intervention').")";
183 $sql .= " AND f.fk_soc = s.rowid";
184 $sql .= " AND f.fk_statut = 0";
185 if ($socid) {
186 $sql .= " AND f.fk_soc = ".((int) $socid);
187 }
188 if (!$user->hasRight('societe', 'client', 'voir')) {
189 $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
190 }
191
192 $resql = $db->query($sql);
193 if ($resql) {
194 print '<div class="div-table-responsive-no-min">';
195 print '<table class="noborder centpercent">';
196 print '<tr class="liste_titre">';
197 print '<th colspan="2">'.$langs->trans("DraftFichinter").'</th></tr>';
198 $langs->load("fichinter");
199 $num = $db->num_rows($resql);
200 if ($num) {
201 $i = 0;
202 while ($i < $num) {
203 $obj = $db->fetch_object($resql);
204 print '<tr class="oddeven">';
205 print '<td class="nowrap">';
206 print "<a href=\"card.php?id=".$obj->rowid."\">".img_object($langs->trans("ShowFichinter"), "intervention").' '.$obj->ref."</a></td>";
207 print '<td><a href="'.DOL_URL_ROOT.'/comm/card.php?socid='.$obj->socid.'">'.img_object($langs->trans("ShowCompany"), "company").' '.dol_trunc($obj->name, 24).'</a></td></tr>';
208 $i++;
209 }
210 }
211 print "</table></div><br>";
212 }
213}
214
215
216print '</div><div class="fichetwothirdright">';
217
218
219/*
220 * Last modified interventions
221 */
222
223$sql = "SELECT f.rowid, f.ref, f.fk_statut, f.date_valid as datec, f.tms as datem,";
224$sql .= " s.nom as name, s.rowid as socid";
225$sql .= " FROM ".MAIN_DB_PREFIX."fichinter as f,";
226$sql .= " ".MAIN_DB_PREFIX."societe as s";
227if (!$user->hasRight('societe', 'client', 'voir')) {
228 $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
229}
230$sql .= " WHERE f.entity IN (".getEntity('intervention').")";
231$sql .= " AND f.fk_soc = s.rowid";
232//$sql.= " AND c.fk_statut > 2";
233if ($socid) {
234 $sql .= " AND f.fk_soc = ".((int) $socid);
235}
236if (!$user->hasRight('societe', 'client', 'voir')) {
237 $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
238}
239$sql .= " ORDER BY f.tms DESC";
240$sql .= $db->plimit($max, 0);
241
242$resql = $db->query($sql);
243if ($resql) {
244 print '<div class="div-table-responsive-no-min">';
245 print '<table class="noborder centpercent">';
246 print '<tr class="liste_titre">';
247 print '<th colspan="4">'.$langs->trans("LastModifiedInterventions", $max).'</th></tr>';
248
249 $num = $db->num_rows($resql);
250 if ($num) {
251 $i = 0;
252 while ($i < $num) {
253 $obj = $db->fetch_object($resql);
254
255 print '<tr class="oddeven">';
256 print '<td width="20%" class="nowrap">';
257
258 $fichinterstatic->id = $obj->rowid;
259 $fichinterstatic->ref = $obj->ref;
260
261 print '<table class="nobordernopadding"><tr class="nocellnopadd">';
262 print '<td width="96" class="nobordernopadding nowrap">';
263 print $fichinterstatic->getNomUrl(1);
264 print '</td>';
265
266 print '<td width="16" class="nobordernopadding nowrap">';
267 print '&nbsp;';
268 print '</td>';
269
270 print '<td width="16" class="right nobordernopadding hideonsmartphone">';
271 $filename = dol_sanitizeFileName($obj->ref);
272 $filedir = $conf->ficheinter->dir_output.'/'.dol_sanitizeFileName($obj->ref);
273 $urlsource = $_SERVER['PHP_SELF'].'?id='.$obj->rowid;
274 print $formfile->getDocumentsLink($fichinterstatic->element, $filename, $filedir);
275 print '</td></tr></table>';
276
277 print '</td>';
278
279 print '<td><a href="'.DOL_URL_ROOT.'/comm/card.php?socid='.$obj->socid.'">'.img_object($langs->trans("ShowCompany"), "company").' '.$obj->name.'</a></td>';
280 print '<td>'.dol_print_date($db->jdate($obj->datem), 'day').'</td>';
281 print '<td class="right">'.$fichinterstatic->LibStatut($obj->fk_statut, 5).'</td>';
282 print '</tr>';
283 $i++;
284 }
285 }
286 print "</table></div><br>";
287} else {
288 dol_print_error($db);
289}
290
291
292/*
293 * interventions to process
294 */
295
296if (isModEnabled('intervention')) {
297 $sql = "SELECT f.rowid, f.ref, f.fk_statut, s.nom as name, s.rowid as socid";
298 $sql .= " FROM ".MAIN_DB_PREFIX."fichinter as f";
299 $sql .= ", ".MAIN_DB_PREFIX."societe as s";
300 if (!$user->hasRight('societe', 'client', 'voir')) {
301 $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
302 }
303 $sql .= " WHERE f.entity IN (".getEntity('intervention').")";
304 $sql .= " AND f.fk_soc = s.rowid";
305 $sql .= " AND f.fk_statut = 1";
306 if ($socid) {
307 $sql .= " AND f.fk_soc = ".((int) $socid);
308 }
309 if (!$user->hasRight('societe', 'client', 'voir')) {
310 $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
311 }
312 $sql .= " ORDER BY f.rowid DESC";
313
314 $resql = $db->query($sql);
315 if ($resql) {
316 $num = $db->num_rows($resql);
317
318 print '<div class="div-table-responsive-no-min">';
319 print '<table class="noborder centpercent">';
320 print '<tr class="liste_titre">';
321 print '<th colspan="3">'.$langs->trans("FichinterToProcess").' <a href="'.DOL_URL_ROOT.'/fichinter/list.php?search_status=1"><span class="badge">'.$num.'</span></a></th></tr>';
322
323 if ($num) {
324 $i = 0;
325 while ($i < $num) {
326 $obj = $db->fetch_object($resql);
327 print '<tr class="oddeven">';
328 print '<td class="nowrap" width="20%">';
329
330 $fichinterstatic->id = $obj->rowid;
331 $fichinterstatic->ref = $obj->ref;
332
333 print '<table class="nobordernopadding"><tr class="nocellnopadd">';
334 print '<td width="96" class="nobordernopadding nowrap">';
335 print $fichinterstatic->getNomUrl(1);
336 print '</td>';
337
338 print '<td width="16" class="nobordernopadding nowrap">';
339 print '&nbsp;';
340 print '</td>';
341
342 print '<td width="16" class="right nobordernopadding hideonsmartphone">';
343 $filename = dol_sanitizeFileName($obj->ref);
344 $filedir = $conf->ficheinter->dir_output.'/'.dol_sanitizeFileName($obj->ref);
345 $urlsource = $_SERVER['PHP_SELF'].'?id='.$obj->rowid;
346 print $formfile->getDocumentsLink($fichinterstatic->element, $filename, $filedir);
347 print '</td></tr></table>';
348
349 print '</td>';
350
351 print '<td><a href="'.DOL_URL_ROOT.'/comm/card.php?socid='.$obj->socid.'">'.img_object($langs->trans("ShowCompany"), "company").' '.dol_trunc($obj->name, 24).'</a></td>';
352
353 print '<td class="right">'.$fichinterstatic->LibStatut($obj->fk_statut, 5).'</td>';
354
355 print '</tr>';
356 $i++;
357 }
358 }
359
360 print "</table></div><br>";
361 } else {
362 dol_print_error($db);
363 }
364}
365
366print '</div></div>';
367
368$parameters = array('user' => $user);
369$reshook = $hookmanager->executeHooks('dashboardInterventions', $parameters, $object); // Note that $action and $object may have been modified by hook
370
371llxFooter();
372
373$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to build graphs.
Class to manage interventions.
const STATUS_BILLED
Billed.
const STATUS_DRAFT
Draft status.
const STATUS_VALIDATED
Validated status.
Class to offer components to list and upload files.
Class to manage generation of HTML components Only common components must be here.
Class to manage hooks.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.