dolibarr  16.0.5
evaluation_list.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
4  * Copyright (C) 2021 Greg Rastklan <greg.rastklan@atm-consulting.fr>
5  * Copyright (C) 2021 Jean-Pascal BOUDET <jean-pascal.boudet@atm-consulting.fr>
6  * Copyright (C) 2021 Grégory BLEMAND <gregory.blemand@atm-consulting.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 
29 // Load Dolibarr environment
30 require '../main.inc.php';
31 
32 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
33 require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
34 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
35 
36 // load hrm libraries
37 require_once __DIR__.'/class/evaluation.class.php';
38 
39 // for other modules
40 //dol_include_once('/othermodule/class/otherobject.class.php');
41 
42 // Load translation files required by the page
43 $langs->loadLangs(array("hrm", "other"));
44 
45 $action = GETPOST('action', 'aZ09') ?GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ...
46 $massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
47 $show_files = GETPOST('show_files', 'int'); // Show files area generated by bulk actions ?
48 $confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
49 $cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
50 $toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
51 $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'evaluationlist'; // To manage different context of search
52 $backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
53 $optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
54 
55 $id = GETPOST('id', 'int');
56 
57 // Load variable for pagination
58 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
59 $sortfield = GETPOST('sortfield', 'aZ09comma');
60 $sortorder = GETPOST('sortorder', 'aZ09comma');
61 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
62 if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
63  // If $page is not defined, or '' or -1 or if we click on clear filters
64  $page = 0;
65 }
66 $offset = $limit * $page;
67 $pageprev = $page - 1;
68 $pagenext = $page + 1;
69 
70 // Initialize technical objects
71 $object = new Evaluation($db);
72 $extrafields = new ExtraFields($db);
73 $diroutputmassaction = $conf->hrm->dir_output.'/temp/massgeneration/'.$user->id;
74 $hookmanager->initHooks(array('evaluationlist')); // Note that conf->hooks_modules contains array
75 
76 // Fetch optionals attributes and labels
77 $extrafields->fetch_name_optionals_label($object->table_element);
78 //$extrafields->fetch_name_optionals_label($object->table_element_line);
79 
80 $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
81 
82 // Default sort order (if not yet defined by previous GETPOST)
83 if (!$sortfield) {
84  reset($object->fields); // Reset is required to avoid key() to return null.
85  $sortfield = "t.".key($object->fields); // Set here default search field. By default 1st field in definition.
86 }
87 if (!$sortorder) {
88  $sortorder = "ASC";
89 }
90 
91 // Initialize array of search criterias
92 $search_all = GETPOST('search_all', 'alphanohtml') ? GETPOST('search_all', 'alphanohtml') : GETPOST('sall', 'alphanohtml');
93 $search = array();
94 foreach ($object->fields as $key => $val) {
95  if (GETPOST('search_'.$key, 'alpha') !== '') {
96  $search[$key] = GETPOST('search_'.$key, 'alpha');
97  }
98  if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
99  $search[$key.'_dtstart'] = dol_mktime(0, 0, 0, GETPOST('search_'.$key.'_dtstartmonth', 'int'), GETPOST('search_'.$key.'_dtstartday', 'int'), GETPOST('search_'.$key.'_dtstartyear', 'int'));
100  $search[$key.'_dtend'] = dol_mktime(23, 59, 59, GETPOST('search_'.$key.'_dtendmonth', 'int'), GETPOST('search_'.$key.'_dtendday', 'int'), GETPOST('search_'.$key.'_dtendyear', 'int'));
101  }
102 }
103 
104 // List of fields to search into when doing a "search in all"
105 $fieldstosearchall = array();
106 foreach ($object->fields as $key => $val) {
107  if (!empty($val['searchall'])) {
108  $fieldstosearchall['t.'.$key] = $val['label'];
109  }
110 }
111 
112 // Definition of array of fields for columns
113 $arrayfields = array();
114 foreach ($object->fields as $key => $val) {
115  // If $val['visible']==0, then we never show the field
116  if (!empty($val['visible'])) {
117  $visible = (int) dol_eval($val['visible'], 1, 1, '1');
118  $arrayfields['t.'.$key] = array(
119  'label'=>$val['label'],
120  'checked'=>(($visible < 0) ? 0 : 1),
121  'enabled'=>($visible != 3 && dol_eval($val['enabled'], 1, 1, '1')),
122  'position'=>$val['position'],
123  'help'=> isset($val['help']) ? $val['help'] : ''
124  );
125  }
126 }
127 // Extra fields
128 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
129 
130 $object->fields = dol_sort_array($object->fields, 'position');
131 $arrayfields = dol_sort_array($arrayfields, 'position');
132 
133 $permissiontoread = $user->rights->hrm->evaluation->read;
134 $permissiontoadd = $user->rights->hrm->evaluation->write;
135 $permissiontodelete = $user->rights->hrm->evaluation->delete;
136 
137 // Security check
138 if (empty($conf->hrm->enabled)) {
139  accessforbidden('Module not enabled');
140 }
141 
142 // Security check (enable the most restrictive one)
143 if ($user->socid > 0) accessforbidden();
144 //if ($user->socid > 0) accessforbidden();
145 //$socid = 0; if ($user->socid > 0) $socid = $user->socid;
146 //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
147 //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
148 //if (empty($conf->hrm->enabled)) accessforbidden();
149 //if (!$permissiontoread) accessforbidden();
150 
151 
152 
153 /*
154  * Actions
155  */
156 
157 if (GETPOST('cancel', 'alpha')) {
158  $action = 'list';
159  $massaction = '';
160 }
161 if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
162  $massaction = '';
163 }
164 
165 $parameters = array();
166 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
167 if ($reshook < 0) {
168  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
169 }
170 
171 if (empty($reshook)) {
172  // Selection of new fields
173  include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
174 
175  // Purge search criteria
176  if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
177  foreach ($object->fields as $key => $val) {
178  $search[$key] = '';
179  if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
180  $search[$key.'_dtstart'] = '';
181  $search[$key.'_dtend'] = '';
182  }
183  }
184  $toselect = array();
185  $search_array_options = array();
186  }
187  if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')
188  || GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) {
189  $massaction = ''; // Protection to avoid mass action if we force a new search during a mass action confirmation
190  }
191 
192  // Mass actions
193  $objectclass = 'Evaluation';
194  $objectlabel = 'Evaluation';
195  $uploaddir = $conf->hrm->dir_output;
196  include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
197 }
198 
199 
200 
201 /*
202  * View
203  */
204 
205 $form = new Form($db);
206 
207 $now = dol_now();
208 
209 //$help_url="EN:Module_Evaluation|FR:Module_Evaluation_FR|ES:Módulo_Evaluation";
210 $help_url = '';
211 $title = $langs->trans('Evaluations');
212 $morejs = array();
213 $morecss = array();
214 
215 
216 // Build and execute select
217 // --------------------------------------------------------------------
218 $sql = 'SELECT ';
219 $sql .= $object->getFieldList('t');
220 // Add fields from extrafields
221 if (!empty($extrafields->attributes[$object->table_element]['label'])) {
222  foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
223  $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key." as options_".$key : '');
224  }
225 }
226 // Add fields from hooks
227 $parameters = array();
228 $reshook = $hookmanager->executeHooks('printFieldListSelect', $parameters, $object); // Note that $action and $object may have been modified by hook
229 $sql .= preg_replace('/^,/', '', $hookmanager->resPrint);
230 $sql = preg_replace('/,\s*$/', '', $sql);
231 $sql .= " FROM ".MAIN_DB_PREFIX.$object->table_element." as t";
232 if (isset($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label']) && count($extrafields->attributes[$object->table_element]['label'])) {
233  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element."_extrafields as ef on (t.rowid = ef.fk_object)";
234 }
235 // Add table from hooks
236 $parameters = array();
237 $reshook = $hookmanager->executeHooks('printFieldListFrom', $parameters, $object); // Note that $action and $object may have been modified by hook
238 $sql .= $hookmanager->resPrint;
239 if ($object->ismultientitymanaged == 1) {
240  $sql .= " WHERE t.entity IN (".getEntity($object->element).")";
241 } else {
242  $sql .= " WHERE 1 = 1";
243 }
244 foreach ($search as $key => $val) {
245  if (array_key_exists($key, $object->fields)) {
246  if ($key == 'status' && $search[$key] == -1) {
247  continue;
248  }
249  $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
250  if ((strpos($object->fields[$key]['type'], 'integer:') === 0) || (strpos($object->fields[$key]['type'], 'sellist:') === 0) || !empty($object->fields[$key]['arrayofkeyval'])) {
251  if ($search[$key] == '-1' || ($search[$key] === '0' && (empty($object->fields[$key]['arrayofkeyval']) || !array_key_exists('0', $object->fields[$key]['arrayofkeyval'])))) {
252  $search[$key] = '';
253  }
254  $mode_search = 2;
255  }
256  if ($search[$key] != '') {
257  $sql .= natural_search($key, $search[$key], (($key == 'status') ? 2 : $mode_search));
258  }
259  } else {
260  if (preg_match('/(_dtstart|_dtend)$/', $key) && $search[$key] != '') {
261  $columnName=preg_replace('/(_dtstart|_dtend)$/', '', $key);
262  if (preg_match('/^(date|timestamp|datetime)/', $object->fields[$columnName]['type'])) {
263  if (preg_match('/_dtstart$/', $key)) {
264  $sql .= " AND t." . $columnName . " >= '" . $db->idate($search[$key]) . "'";
265  }
266  if (preg_match('/_dtend$/', $key)) {
267  $sql .= " AND t." . $columnName . " <= '" . $db->idate($search[$key]) . "'";
268  }
269  }
270  }
271  }
272 }
273 if ($search_all) {
274  $sql .= natural_search(array_keys($fieldstosearchall), $search_all);
275 }
276 //$sql.= dolSqlDateFilter("t.field", $search_xxxday, $search_xxxmonth, $search_xxxyear);
277 // Add where from extra fields
278 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
279 // Add where from hooks
280 $parameters = array();
281 $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $object); // Note that $action and $object may have been modified by hook
282 $sql .= $hookmanager->resPrint;
283 
284 /* If a group by is required
285 $sql .= " GROUP BY ";
286 foreach($object->fields as $key => $val) {
287  $sql .= "t.".$key.", ";
288 }
289 // Add fields from extrafields
290 if (!empty($extrafields->attributes[$object->table_element]['label'])) {
291  foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
292  $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? "ef.".$key.', ' : '');
293  }
294 }
295 // Add where from hooks
296 $parameters = array();
297 $reshook = $hookmanager->executeHooks('printFieldListGroupBy', $parameters, $object); // Note that $action and $object may have been modified by hook
298 $sql .= $hookmanager->resPrint;
299 $sql = preg_replace('/,\s*$/', '', $sql);
300 */
301 
302 $sql .= $db->order($sortfield, $sortorder);
303 
304 // Count total nb of records
305 $nbtotalofrecords = '';
306 if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
307  $resql = $db->query($sql);
308  $nbtotalofrecords = $db->num_rows($resql);
309  if (($page * $limit) > $nbtotalofrecords) { // if total of record found is smaller than page * limit, goto and load page 0
310  $page = 0;
311  $offset = 0;
312  }
313 }
314 // if total of record found is smaller than limit, no need to do paging and to restart another select with limits set.
315 if (is_numeric($nbtotalofrecords) && ($limit > $nbtotalofrecords || empty($limit))) {
316  $num = $nbtotalofrecords;
317 } else {
318  if ($limit) {
319  $sql .= $db->plimit($limit + 1, $offset);
320  }
321 
322  $resql = $db->query($sql);
323  if (!$resql) {
324  dol_print_error($db);
325  exit;
326  }
327 
328  $num = $db->num_rows($resql);
329 }
330 
331 // Direct jump if only one record found
332 if ($num == 1 && !empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && $search_all && !$page) {
333  $obj = $db->fetch_object($resql);
334  $id = $obj->rowid;
335  header("Location: ".dol_buildpath('/hrm/evaluation_card.php', 1).'?id='.$id);
336  exit;
337 }
338 
339 
340 // Output page
341 // --------------------------------------------------------------------
342 
343 llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', '');
344 
345 // Example : Adding jquery code
346 // print '<script type="text/javascript" language="javascript">
347 // jQuery(document).ready(function() {
348 // function init_myfunc()
349 // {
350 // jQuery("#myid").removeAttr(\'disabled\');
351 // jQuery("#myid").attr(\'disabled\',\'disabled\');
352 // }
353 // init_myfunc();
354 // jQuery("#mybutton").click(function() {
355 // init_myfunc();
356 // });
357 // });
358 // </script>';
359 
360 $arrayofselected = is_array($toselect) ? $toselect : array();
361 
362 $param = '';
363 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
364  $param .= '&contextpage='.urlencode($contextpage);
365 }
366 if ($limit > 0 && $limit != $conf->liste_limit) {
367  $param .= '&limit='.urlencode($limit);
368 }
369 foreach ($search as $key => $val) {
370  if (is_array($search[$key]) && count($search[$key])) {
371  foreach ($search[$key] as $skey) {
372  $param .= '&search_'.$key.'[]='.urlencode($skey);
373  }
374  } else {
375  $param .= '&search_'.$key.'='.urlencode($search[$key]);
376  }
377 }
378 if ($optioncss != '') {
379  $param .= '&optioncss='.urlencode($optioncss);
380 }
381 // Add $param from extra fields
382 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
383 // Add $param from hooks
384 $parameters = array();
385 $reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object); // Note that $action and $object may have been modified by hook
386 $param .= $hookmanager->resPrint;
387 
388 // List of mass actions available
389 $arrayofmassactions = array(
390  //'validate'=>img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("Validate"),
391  //'generate_doc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("ReGeneratePDF"),
392  //'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
393  //'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
394 );
395 if ($permissiontodelete) {
396  $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
397 }
398 if (GETPOST('nomassaction', 'int') || in_array($massaction, array('presend', 'predelete'))) {
399  $arrayofmassactions = array();
400 }
401 $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
402 
403 print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
404 if ($optioncss != '') {
405  print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
406 }
407 print '<input type="hidden" name="token" value="'.newToken().'">';
408 print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
409 print '<input type="hidden" name="action" value="list">';
410 print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
411 print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
412 print '<input type="hidden" name="page" value="'.$page.'">';
413 print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
414 
415 $newcardbutton = dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', dol_buildpath('/hrm/evaluation_card.php', 1).'?action=create', '', $permissiontoadd);
416 
417 print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'object_'.$object->picto, 0, $newcardbutton, '', $limit, 0, 0, 1);
418 
419 // Add code for pre mass action (confirmation or email presend form)
420 $topicmail = "SendEvaluationRef";
421 $modelmail = "evaluation";
422 $objecttmp = new Evaluation($db);
423 $trackid = 'xxxx'.$object->id;
424 include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
425 
426 if ($search_all) {
427  foreach ($fieldstosearchall as $key => $val) {
428  $fieldstosearchall[$key] = $langs->trans($val);
429  }
430  print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $search_all).join(', ', $fieldstosearchall).'</div>';
431 }
432 
433 $moreforfilter = '';
434 /*$moreforfilter.='<div class="divsearchfield">';
435 $moreforfilter.= $langs->trans('MyFilter') . ': <input type="text" name="search_myfield" value="'.dol_escape_htmltag($search_myfield).'">';
436 $moreforfilter.= '</div>';*/
437 
438 $parameters = array();
439 $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
440 if (empty($reshook)) {
441  $moreforfilter .= $hookmanager->resPrint;
442 } else {
443  $moreforfilter = $hookmanager->resPrint;
444 }
445 
446 if (!empty($moreforfilter)) {
447  print '<div class="liste_titre liste_titre_bydiv centpercent">';
448  print $moreforfilter;
449  print '</div>';
450 }
451 
452 $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
453 $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
454 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
455 
456 print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
457 print '<table class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
458 
459 
460 // Fields title search
461 // --------------------------------------------------------------------
462 print '<tr class="liste_titre">';
463 foreach ($object->fields as $key => $val) {
464  $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
465  if ($key == 'status') {
466  $cssforfield .= ($cssforfield ? ' ' : '').'center';
467  } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
468  $cssforfield .= ($cssforfield ? ' ' : '').'center';
469  } elseif (in_array($val['type'], array('timestamp'))) {
470  $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
471  } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
472  $cssforfield .= ($cssforfield ? ' ' : '').'right';
473  }
474  if (!empty($arrayfields['t.'.$key]['checked'])) {
475  print '<td class="liste_titre'.($cssforfield ? ' '.$cssforfield : '').'">';
476  if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
477  print $form->selectarray('search_'.$key, $val['arrayofkeyval'], (isset($search[$key]) ? $search[$key] : ''), $val['notnull'], 0, 0, '', 1, 0, 0, '', 'maxwidth100', 1);
478  } elseif ((strpos($val['type'], 'integer:') === 0) || (strpos($val['type'], 'sellist:') === 0)) {
479  print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] : ''), '', '', 'search_', 'maxwidth125', 1);
480  } elseif (!preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
481  print '<input type="text" class="flat maxwidth75" name="search_'.$key.'" value="'.dol_escape_htmltag(isset($search[$key]) ? $search[$key] : '').'">';
482  } elseif (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
483  print '<div class="nowrap">';
484  print $form->selectDate($search[$key.'_dtstart'] ? $search[$key.'_dtstart'] : '', "search_".$key."_dtstart", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
485  print '</div>';
486  print '<div class="nowrap">';
487  print $form->selectDate($search[$key.'_dtend'] ? $search[$key.'_dtend'] : '', "search_".$key."_dtend", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
488  print '</div>';
489  }
490  print '</td>';
491  }
492 }
493 // Extra fields
494 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
495 
496 // Fields from hook
497 $parameters = array('arrayfields'=>$arrayfields);
498 $reshook = $hookmanager->executeHooks('printFieldListOption', $parameters, $object); // Note that $action and $object may have been modified by hook
499 print $hookmanager->resPrint;
500 // Action column
501 print '<td class="liste_titre maxwidthsearch">';
502 $searchpicto = $form->showFilterButtons();
503 print $searchpicto;
504 print '</td>';
505 print '</tr>'."\n";
506 
507 
508 // Fields title label
509 // --------------------------------------------------------------------
510 print '<tr class="liste_titre">';
511 foreach ($object->fields as $key => $val) {
512  $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
513  if ($key == 'status') {
514  $cssforfield .= ($cssforfield ? ' ' : '').'center';
515  } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
516  $cssforfield .= ($cssforfield ? ' ' : '').'center';
517  } elseif (in_array($val['type'], array('timestamp'))) {
518  $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
519  } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
520  $cssforfield .= ($cssforfield ? ' ' : '').'right';
521  }
522  if (!empty($arrayfields['t.'.$key]['checked'])) {
523  print getTitleFieldOfList($arrayfields['t.'.$key]['label'], 0, $_SERVER['PHP_SELF'], 't.'.$key, '', $param, ($cssforfield ? 'class="'.$cssforfield.'"' : ''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.' ' : ''))."\n";
524  }
525 }
526 // Extra fields
527 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
528 // Hook fields
529 $parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder);
530 $reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
531 print $hookmanager->resPrint;
532 // Action column
533 print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
534 print '</tr>'."\n";
535 
536 
537 // Detect if we need a fetch on each output line
538 $needToFetchEachLine = 0;
539 if (isset($extrafields->attributes[$object->table_element]['computed']) && is_array($extrafields->attributes[$object->table_element]['computed']) && count($extrafields->attributes[$object->table_element]['computed']) > 0) {
540  foreach ($extrafields->attributes[$object->table_element]['computed'] as $key => $val) {
541  if (preg_match('/\$object/', $val)) {
542  $needToFetchEachLine++; // There is at least one compute field that use $object
543  }
544  }
545 }
546 
547 
548 // Loop on record
549 // --------------------------------------------------------------------
550 $i = 0;
551 $totalarray = array();
552 $totalarray['nbfield'] = 0;
553 while ($i < ($limit ? min($num, $limit) : $num)) {
554  $obj = $db->fetch_object($resql);
555  if (empty($obj)) {
556  break; // Should not happen
557  }
558 
559  // Store properties in $object
560  $object->setVarsFromFetchObj($obj);
561 
562  // Show here line of result
563  print '<tr class="oddeven">';
564  foreach ($object->fields as $key => $val) {
565  $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
566  if (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
567  $cssforfield .= ($cssforfield ? ' ' : '').'center';
568  } elseif ($key == 'status') {
569  $cssforfield .= ($cssforfield ? ' ' : '').'center';
570  }
571 
572  if (in_array($val['type'], array('timestamp'))) {
573  $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
574  } elseif ($key == 'ref') {
575  $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
576  }
577 
578  if (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('rowid', 'status')) && empty($val['arrayofkeyval'])) {
579  $cssforfield .= ($cssforfield ? ' ' : '').'right';
580  }
581  //if (in_array($key, array('fk_soc', 'fk_user', 'fk_warehouse'))) $cssforfield = 'tdoverflowmax100';
582 
583  if (!empty($arrayfields['t.'.$key]['checked'])) {
584  print '<td'.($cssforfield ? ' class="'.$cssforfield.'"' : '').'>';
585  if ($key == 'status') {
586  print $object->getLibStatut(5);
587  } elseif ($key == 'rowid') {
588  print $object->showOutputField($val, $key, $object->id, '');
589  } else {
590  print $object->showOutputField($val, $key, $object->$key, '');
591  }
592  print '</td>';
593  if (!$i) {
594  $totalarray['nbfield']++;
595  }
596  if (!empty($val['isameasure']) && $val['isameasure'] == 1) {
597  if (!$i) {
598  $totalarray['pos'][$totalarray['nbfield']] = 't.'.$key;
599  }
600  if (!isset($totalarray['val'])) {
601  $totalarray['val'] = array();
602  }
603  if (!isset($totalarray['val']['t.'.$key])) {
604  $totalarray['val']['t.'.$key] = 0;
605  }
606  $totalarray['val']['t.'.$key] += $object->$key;
607  }
608  }
609  }
610  // Extra fields
611  include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
612  // Fields from hook
613  $parameters = array('arrayfields'=>$arrayfields, 'object'=>$object, 'obj'=>$obj, 'i'=>$i, 'totalarray'=>&$totalarray);
614  $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters, $object); // Note that $action and $object may have been modified by hook
615  print $hookmanager->resPrint;
616  // Action column
617  print '<td class="nowrap center">';
618  if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
619  $selected = 0;
620  if (in_array($object->id, $arrayofselected)) {
621  $selected = 1;
622  }
623  print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
624  }
625  print '</td>';
626  if (!$i) {
627  $totalarray['nbfield']++;
628  }
629 
630  print '</tr>'."\n";
631 
632  $i++;
633 }
634 
635 // Show total line
636 include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
637 
638 // If no record found
639 if ($num == 0) {
640  $colspan = 1;
641  foreach ($arrayfields as $key => $val) {
642  if (!empty($val['checked'])) {
643  $colspan++;
644  }
645  }
646  print '<tr><td colspan="'.$colspan.'" class="opacitymedium">'.$langs->trans("NoRecordFound").'</td></tr>';
647 }
648 
649 
650 $db->free($resql);
651 
652 $parameters = array('arrayfields'=>$arrayfields, 'sql'=>$sql);
653 $reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters, $object); // Note that $action and $object may have been modified by hook
654 print $hookmanager->resPrint;
655 
656 print '</table>'."\n";
657 print '</div>'."\n";
658 
659 print '</form>'."\n";
660 
661 if (in_array('builddoc', $arrayofmassactions) && ($nbtotalofrecords === '' || $nbtotalofrecords)) {
662  $hidegeneratedfilelistifempty = 1;
663  if ($massaction == 'builddoc' || $action == 'remove_file' || $show_files) {
664  $hidegeneratedfilelistifempty = 0;
665  }
666 
667  require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
668  $formfile = new FormFile($db);
669 
670  // Show list of available documents
671  $urlsource = $_SERVER['PHP_SELF'].'?sortfield='.$sortfield.'&sortorder='.$sortorder;
672  $urlsource .= str_replace('&amp;', '&', $param);
673 
674  $filedir = $diroutputmassaction;
675  $genallowed = $permissiontoread;
676  $delallowed = $permissiontoadd;
677 
678  print $formfile->showdocuments('massfilesarea_hrm', '', $filedir, $urlsource, 0, $delallowed, '', 1, 1, 0, 48, 1, $param, $title, '', '', '', null, $hidegeneratedfilelistifempty);
679 }
680 
681 // End of page
682 llxFooter();
683 $db->close();
dol_escape_htmltag
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
Definition: functions.lib.php:1468
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
getTitleFieldOfList
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
Definition: functions.lib.php:5049
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4844
dol_sort_array
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...
Definition: functions.lib.php:8385
dol_buildpath
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
Definition: functions.lib.php:1062
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
$help_url
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:116
img_picto
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
Definition: functions.lib.php:3880
FormFile
Class to offer components to list and upload files.
Definition: html.formfile.class.php:36
dolGetButtonTitle
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
Definition: functions.lib.php:10605
print_barre_liste
print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
Definition: functions.lib.php:5257
Evaluation
Class for Evaluation.
Definition: evaluation.class.php:37
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:386
natural_search
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
Definition: functions.lib.php:9420
dol_eval
dol_eval($s, $returnvalue=0, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
Definition: functions.lib.php:8611
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
dol_now
dol_now($mode='auto')
Return date for now.
Definition: functions.lib.php:2845
$resql
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice') && $user->rights->supplier_invoice->lire)) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:742
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933
dol_mktime
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
Definition: functions.lib.php:2757
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59