dolibarr 21.0.0-alpha
job_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 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
30// Load Dolibarr environment
31require '../main.inc.php';
32
33require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
36
37// load hrm libraries
38require_once __DIR__.'/class/job.class.php';
39
40// for other modules
41//dol_include_once('/othermodule/class/otherobject.class.php');
42
43// Load translation files required by the page
44$langs->loadLangs(array('hrm', 'other'));
45
46// Get Parameters
47$action = GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ...
48$massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
49$show_files = GETPOSTINT('show_files'); // Show files area generated by bulk actions ?
50$confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
51$cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
52$toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
53$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'joblist'; // To manage different context of search
54$backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
55$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
56$mode = GETPOST('mode', 'alpha'); // for view result with other mode
57
58$id = GETPOSTINT('id');
59
60// Load variable for pagination
61$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
62$sortfield = GETPOST('sortfield', 'aZ09comma');
63$sortorder = GETPOST('sortorder', 'aZ09comma');
64$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
65if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
66 // If $page is not defined, or '' or -1 or if we click on clear filters
67 $page = 0;
68}
69$offset = $limit * $page;
70$pageprev = $page - 1;
71$pagenext = $page + 1;
72
73// Initialize a technical objects
74$object = new Job($db);
75$extrafields = new ExtraFields($db);
76$diroutputmassaction = $conf->hrm->dir_output.'/temp/massgeneration/'.$user->id;
77$hookmanager->initHooks(array('joblist')); // Note that conf->hooks_modules contains array
78
79// Fetch optionals attributes and labels
80$extrafields->fetch_name_optionals_label($object->table_element);
81//$extrafields->fetch_name_optionals_label($object->table_element_line);
82
83$search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
84
85// Default sort order (if not yet defined by previous GETPOST)
86if (!$sortfield) {
87 reset($object->fields); // Reset is required to avoid key() to return null.
88 $sortfield = "t.".key($object->fields); // Set here default search field. By default 1st field in definition.
89}
90if (!$sortorder) {
91 $sortorder = "ASC";
92}
93
94// Initialize array of search criteria
95$search_all = GETPOST('search_all', 'alphanohtml') ? GETPOST('search_all', 'alphanohtml') : GETPOST('sall', 'alphanohtml');
96$search = array();
97foreach ($object->fields as $key => $val) {
98 if (GETPOST('search_'.$key, 'alpha') !== '') {
99 $search[$key] = GETPOST('search_'.$key, 'alpha');
100 }
101 if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
102 $search[$key.'_dtstart'] = dol_mktime(0, 0, 0, GETPOSTINT('search_'.$key.'_dtstartmonth'), GETPOSTINT('search_'.$key.'_dtstartday'), GETPOSTINT('search_'.$key.'_dtstartyear'));
103 $search[$key.'_dtend'] = dol_mktime(23, 59, 59, GETPOSTINT('search_'.$key.'_dtendmonth'), GETPOSTINT('search_'.$key.'_dtendday'), GETPOSTINT('search_'.$key.'_dtendyear'));
104 }
105}
106
107// List of fields to search into when doing a "search in all"
108$fieldstosearchall = array();
109foreach ($object->fields as $key => $val) {
110 if (!empty($val['searchall'])) {
111 $fieldstosearchall['t.'.$key] = $val['label'];
112 }
113}
114
115// Definition of array of fields for columns
116$arrayfields = array();
117foreach ($object->fields as $key => $val) {
118 // If $val['visible']==0, then we never show the field
119 if (!empty($val['visible'])) {
120 $visible = (int) dol_eval((string) $val['visible'], 1);
121 $arrayfields['t.'.$key] = array(
122 'label' => $val['label'],
123 'checked' => (($visible < 0) ? 0 : 1),
124 'enabled' => (abs($visible) != 3 && (bool) dol_eval($val['enabled'], 1)),
125 'position' => $val['position'],
126 'help' => isset($val['help']) ? $val['help'] : ''
127 );
128 }
129}
130// Extra fields
131include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
132
133$object->fields = dol_sort_array($object->fields, 'position');
134$arrayfields = dol_sort_array($arrayfields, 'position');
135
136// Permissions
137$permissiontoread = $user->hasRight('hrm', 'all', 'read');
138$permissiontoadd = $user->hasRight('hrm', 'all', 'write');
139$permissiontodelete = $user->hasRight('hrm', 'all', 'delete');
140
141// Security check (enable the most restrictive one)
142if ($user->socid > 0) {
144}
145//if ($user->socid > 0) accessforbidden();
146//$socid = 0; if ($user->socid > 0) $socid = $user->socid;
147//$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
148//restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
149if (!isModEnabled('hrm')) {
150 accessforbidden('Module hrm not enabled');
151}
152if (!$permissiontoread) {
154}
155
156
157
158/*
159 * Actions
160 */
161
162if (GETPOST('cancel', 'alpha')) {
163 $action = 'list';
164 $massaction = '';
165}
166if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
167 $massaction = '';
168}
169
170$parameters = array();
171$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
172if ($reshook < 0) {
173 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
174}
175
176if (empty($reshook)) {
177 // Selection of new fields
178 include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
179
180 // Purge search criteria
181 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
182 foreach ($object->fields as $key => $val) {
183 $search[$key] = '';
184 if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
185 $search[$key.'_dtstart'] = '';
186 $search[$key.'_dtend'] = '';
187 }
188 }
189 $toselect = array();
190 $search_array_options = array();
191 }
192 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')
193 || GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) {
194 $massaction = ''; // Protection to avoid mass action if we force a new search during a mass action confirmation
195 }
196
197 // Mass actions
198 $objectclass = 'Job';
199 $objectlabel = 'Job';
200 $uploaddir = $conf->hrm->dir_output;
201 include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
202}
203
204
205
206/*
207 * View
208 */
209
210$form = new Form($db);
211
212$now = dol_now();
213
214//$help_url="EN:Module_Job|FR:Module_Job_FR|ES:Módulo_Job";
215$help_url = '';
216$title = $langs->trans("JobsProfiles");
217$morejs = array();
218$morecss = array();
219
220
221// Build and execute select
222// --------------------------------------------------------------------
223$sql = 'SELECT ';
224$sql .= $object->getFieldList('t');
225// Add fields from extrafields
226if (!empty($extrafields->attributes[$object->table_element]['label'])) {
227 foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
228 $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key." as options_".$key : '');
229 }
230}
231// Add fields from hooks
232$parameters = array();
233$reshook = $hookmanager->executeHooks('printFieldListSelect', $parameters, $object); // Note that $action and $object may have been modified by hook
234$sql .= $hookmanager->resPrint;
235$sql = preg_replace('/,\s*$/', '', $sql);
236$sql .= " FROM ".MAIN_DB_PREFIX.$object->table_element." as t";
237if (isset($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label']) && count($extrafields->attributes[$object->table_element]['label'])) {
238 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element."_extrafields as ef on (t.rowid = ef.fk_object)";
239}
240// Add table from hooks
241$parameters = array();
242$reshook = $hookmanager->executeHooks('printFieldListFrom', $parameters, $object); // Note that $action and $object may have been modified by hook
243$sql .= $hookmanager->resPrint;
244if ($object->ismultientitymanaged == 1) {
245 $sql .= " WHERE t.entity IN (".getEntity($object->element).")";
246} else {
247 $sql .= " WHERE 1 = 1";
248}
249foreach ($search as $key => $val) {
250 if (array_key_exists($key, $object->fields)) {
251 if ($key == 'status' && $search[$key] == -1) {
252 continue;
253 }
254 $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
255 if ((strpos($object->fields[$key]['type'], 'integer:') === 0) || (strpos($object->fields[$key]['type'], 'sellist:') === 0) || !empty($object->fields[$key]['arrayofkeyval'])) {
256 if ($search[$key] == '-1' || ($search[$key] === '0' && (empty($object->fields[$key]['arrayofkeyval']) || !array_key_exists('0', $object->fields[$key]['arrayofkeyval'])))) {
257 $search[$key] = '';
258 }
259 $mode_search = 2;
260 }
261 if ($search[$key] != '') {
262 $sql .= natural_search("t.".$db->escape($key), $search[$key], (($key == 'status') ? 2 : $mode_search));
263 }
264 } else {
265 if (preg_match('/(_dtstart|_dtend)$/', $key) && $search[$key] != '') {
266 $columnName=preg_replace('/(_dtstart|_dtend)$/', '', $key);
267 if (preg_match('/^(date|timestamp|datetime)/', $object->fields[$columnName]['type'])) {
268 if (preg_match('/_dtstart$/', $key)) {
269 $sql .= " AND t.".$db->escape($columnName)." >= '".$db->idate($search[$key])."'";
270 }
271 if (preg_match('/_dtend$/', $key)) {
272 $sql .= " AND t.".$db->escape($columnName)." <= '".$db->idate($search[$key])."'";
273 }
274 }
275 }
276 }
277}
278if ($search_all) {
279 $sql .= natural_search(array_keys($fieldstosearchall), $search_all);
280}
281//$sql.= dolSqlDateFilter("t.field", $search_xxxday, $search_xxxmonth, $search_xxxyear);
282// Add where from extra fields
283include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
284// Add where from hooks
285$parameters = array();
286$reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $object); // Note that $action and $object may have been modified by hook
287$sql .= $hookmanager->resPrint;
288
289/* If a group by is required
290$sql .= " GROUP BY ";
291foreach($object->fields as $key => $val) {
292 $sql .= "t.".$db->escape($key).", ";
293}
294// Add fields from extrafields
295if (!empty($extrafields->attributes[$object->table_element]['label'])) {
296 foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
297 $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? "ef.".$key.', ' : '');
298 }
299}
300// Add where from hooks
301$parameters = array();
302$reshook = $hookmanager->executeHooks('printFieldListGroupBy', $parameters, $object); // Note that $action and $object may have been modified by hook
303$sql .= $hookmanager->resPrint;
304$sql = preg_replace('/,\s*$/', '', $sql);
305*/
306
307// Count total nb of records
308$nbtotalofrecords = '';
309if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
310 $resql = $db->query($sql);
311 $nbtotalofrecords = $db->num_rows($resql);
312 if (($page * $limit) > $nbtotalofrecords) { // if total of record found is smaller than page * limit, goto and load page 0
313 $page = 0;
314 $offset = 0;
315 }
316 $db->free($resql);
317}
318
319// Complete request and execute it with limit
320$sql .= $db->order($sortfield, $sortorder);
321if ($limit) {
322 $sql .= $db->plimit($limit + 1, $offset);
323}
324
325$resql = $db->query($sql);
326if (!$resql) {
327 dol_print_error($db);
328 exit;
329}
330
331$num = $db->num_rows($resql);
332
333
334// Direct jump if only one record found
335if ($num == 1 && getDolGlobalString('MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
336 $obj = $db->fetch_object($resql);
337 $id = $obj->rowid;
338 header("Location: ".dol_buildpath('/hrm/job_card.php', 1).'?id='.$id);
339 exit;
340}
341
342
343// Output page
344// --------------------------------------------------------------------
345
346llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', 'bodyforlist');
347
348// Example : Adding jquery code
349// print '<script type="text/javascript" language="javascript">
350// jQuery(document).ready(function() {
351// function init_myfunc()
352// {
353// jQuery("#myid").removeAttr(\'disabled\');
354// jQuery("#myid").attr(\'disabled\',\'disabled\');
355// }
356// init_myfunc();
357// jQuery("#mybutton").click(function() {
358// init_myfunc();
359// });
360// });
361// </script>';
362
363$arrayofselected = is_array($toselect) ? $toselect : array();
364
365$param = '';
366if (!empty($mode)) {
367 $param .= '&mode='.urlencode($mode);
368}
369if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
370 $param .= '&contextpage='.urlencode($contextpage);
371}
372if ($limit > 0 && $limit != $conf->liste_limit) {
373 $param .= '&limit='.((int) $limit);
374}
375foreach ($search as $key => $val) {
376 if (is_array($search[$key])) {
377 foreach ($search[$key] as $skey) {
378 if ($skey != '') {
379 $param .= '&search_'.$key.'[]='.urlencode($skey);
380 }
381 }
382 } elseif (preg_match('/(_dtstart|_dtend)$/', $key) && !empty($val)) {
383 $param .= '&search_'.$key.'month='.(GETPOSTINT('search_'.$key.'month'));
384 $param .= '&search_'.$key.'day='.(GETPOSTINT('search_'.$key.'day'));
385 $param .= '&search_'.$key.'year='.(GETPOSTINT('search_'.$key.'year'));
386 } elseif ($search[$key] != '') {
387 $param .= '&search_'.$key.'='.urlencode($search[$key]);
388 }
389}
390if ($optioncss != '') {
391 $param .= '&optioncss='.urlencode($optioncss);
392}
393// Add $param from extra fields
394include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
395// Add $param from hooks
396$parameters = array('param' => &$param);
397$reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object); // Note that $action and $object may have been modified by hook
398$param .= $hookmanager->resPrint;
399
400// List of mass actions available
401$arrayofmassactions = array(
402 //'validate'=>img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("Validate"),
403 //'generate_doc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("ReGeneratePDF"),
404 //'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
405 //'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
406);
407if (!empty($permissiontodelete)) {
408 $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
409}
410if (GETPOSTINT('nomassaction') || in_array($massaction, array('presend', 'predelete'))) {
411 $arrayofmassactions = array();
412}
413$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
414
415print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
416if ($optioncss != '') {
417 print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
418}
419print '<input type="hidden" name="token" value="'.newToken().'">';
420print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
421print '<input type="hidden" name="action" value="list">';
422print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
423print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
424print '<input type="hidden" name="page" value="'.$page.'">';
425print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
426print '<input type="hidden" name="mode" value="'.$mode.'">';
427
428
429$newcardbutton = '';
430$newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss'=>'reposition'));
431$newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss'=>'reposition'));
432$newcardbutton .= dolGetButtonTitleSeparator();
433$newcardbutton .= dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', dol_buildpath('/hrm/job_card.php', 1).'?action=create', '', $permissiontoadd);
434
435print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'object_'.$object->picto, 0, $newcardbutton, '', $limit, 0, 0, 1);
436
437// Add code for pre mass action (confirmation or email presend form)
438$topicmail = "SendJobRef";
439$modelmail = "job";
440$objecttmp = new Job($db);
441$trackid = 'xxxx'.$object->id;
442include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
443
444if ($search_all) {
445 $setupstring = '';
446 foreach ($fieldstosearchall as $key => $val) {
447 $fieldstosearchall[$key] = $langs->trans($val);
448 $setupstring .= $key."=".$val.";";
449 }
450 print '<!-- Search done like if JOBPOSITION_QUICKSEARCH_ON_FIELDS = '.$setupstring.' -->'."\n";
451 print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $search_all).implode(', ', $fieldstosearchall).'</div>';
452}
453
454$moreforfilter = '';
455/*$moreforfilter.='<div class="divsearchfield">';
456$moreforfilter.= $langs->trans('MyFilter') . ': <input type="text" name="search_myfield" value="'.dol_escape_htmltag($search_myfield).'">';
457$moreforfilter.= '</div>';*/
458
459$parameters = array();
460$reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
461if (empty($reshook)) {
462 $moreforfilter .= $hookmanager->resPrint;
463} else {
464 $moreforfilter = $hookmanager->resPrint;
465}
466
467if (!empty($moreforfilter)) {
468 print '<div class="liste_titre liste_titre_bydiv centpercent">';
469 print $moreforfilter;
470 print '</div>';
471}
472
473$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
474$selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')); // This also change content of $arrayfields
475$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
476
477print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
478print '<table class="tagtable nobottomiftotal noborder liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
479
480
481// Fields title search
482// --------------------------------------------------------------------
483print '<tr class="liste_titre">';
484// Action column
485if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
486 print '<td class="liste_titre maxwidthsearch">';
487 $searchpicto = $form->showFilterButtons('left');
488 print $searchpicto;
489 print '</td>';
490}
491foreach ($object->fields as $key => $val) {
492 $searchkey = empty($search[$key]) ? '' : $search[$key];
493 $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
494 if ($key == 'status') {
495 $cssforfield .= ($cssforfield ? ' ' : '').'center';
496 } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
497 $cssforfield .= ($cssforfield ? ' ' : '').'center';
498 } elseif (in_array($val['type'], array('timestamp'))) {
499 $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
500 } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('id', 'rowid', 'ref', 'status')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
501 $cssforfield .= ($cssforfield ? ' ' : '').'right';
502 }
503 if (!empty($arrayfields['t.'.$key]['checked'])) {
504 print '<td class="liste_titre'.($cssforfield ? ' '.$cssforfield : '').'">';
505 if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
506 print $form->selectarray('search_'.$key, $val['arrayofkeyval'], (isset($search[$key]) ? $search[$key] : ''), $val['notnull'], 0, 0, '', 1, 0, 0, '', 'maxwidth100', 1);
507 } elseif ((strpos($val['type'], 'integer:') === 0) || (strpos($val['type'], 'sellist:') === 0)) {
508 print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] : ''), '', '', 'search_', $cssforfield.' maxwidth125', 1);
509 } elseif (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
510 print '<div class="nowrap">';
511 print $form->selectDate($search[$key.'_dtstart'] ? $search[$key.'_dtstart'] : '', "search_".$key."_dtstart", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
512 print '</div>';
513 print '<div class="nowrap">';
514 print $form->selectDate($search[$key.'_dtend'] ? $search[$key.'_dtend'] : '', "search_".$key."_dtend", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
515 print '</div>';
516 } elseif ($key == 'lang') {
517 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
518 $formadmin = new FormAdmin($db);
519 print $formadmin->select_language($search[$key], 'search_lang', 0, null, 1, 0, 0, 'minwidth100imp maxwidth125', 2);
520 } else {
521 print '<input type="text" class="flat maxwidth'.($val['type'] == 'integer' ? '50' : '75').'" name="search_'.$key.'" value="'.dol_escape_htmltag(isset($search[$key]) ? $search[$key] : '').'">';
522 }
523 print '</td>';
524 }
525}
526// Extra fields
527include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
528
529// Fields from hook
530$parameters = array('arrayfields'=>$arrayfields);
531$reshook = $hookmanager->executeHooks('printFieldListOption', $parameters, $object); // Note that $action and $object may have been modified by hook
532print $hookmanager->resPrint;
533// Action column
534if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
535 print '<td class="liste_titre maxwidthsearch">';
536 $searchpicto = $form->showFilterButtons();
537 print $searchpicto;
538 print '</td>';
539}
540print '</tr>'."\n";
541
542$totalarray = array();
543$totalarray['nbfield'] = 0;
544
545// Fields title label
546// --------------------------------------------------------------------
547print '<tr class="liste_titre">';
548if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
549 print getTitleFieldOfList(($mode != 'kanban' ? $selectedfields : ''), 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
550}
551foreach ($object->fields as $key => $val) {
552 $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
553 if ($key == 'status') {
554 $cssforfield .= ($cssforfield ? ' ' : '').'center';
555 } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
556 $cssforfield .= ($cssforfield ? ' ' : '').'center';
557 } elseif (in_array($val['type'], array('timestamp'))) {
558 $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
559 } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('id', 'rowid', 'ref', 'status')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
560 $cssforfield .= ($cssforfield ? ' ' : '').'right';
561 }
562 $cssforfield = preg_replace('/small\s*/', '', $cssforfield); // the 'small' css must not be used for the title label
563 if (!empty($arrayfields['t.'.$key]['checked'])) {
564 print getTitleFieldOfList($arrayfields['t.'.$key]['label'], 0, $_SERVER['PHP_SELF'], 't.'.$key, '', $param, ($cssforfield ? 'class="'.$cssforfield.'"' : ''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.' ' : ''))."\n";
565 $totalarray['nbfield']++;
566 }
567}
568// Extra fields
569include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
570// Hook fields
571$parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder, 'totalarray'=>&$totalarray);
572$reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
573print $hookmanager->resPrint;
574// Action column
575if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
576 print getTitleFieldOfList(($mode != 'kanban' ? $selectedfields : ''), 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
577}
578$totalarray['nbfield']++;
579print '</tr>'."\n";
580
581
582// Detect if we need a fetch on each output line
583$needToFetchEachLine = 0;
584if (isset($extrafields->attributes[$object->table_element]['computed']) && is_array($extrafields->attributes[$object->table_element]['computed']) && count($extrafields->attributes[$object->table_element]['computed']) > 0) {
585 foreach ($extrafields->attributes[$object->table_element]['computed'] as $key => $val) {
586 if (!is_null($val) && preg_match('/\$object/', $val)) {
587 $needToFetchEachLine++; // There is at least one compute field that use $object
588 }
589 }
590}
591
592
593// Loop on record
594// --------------------------------------------------------------------
595$i = 0;
596$savnbfield = $totalarray['nbfield'];
597$totalarray = array();
598$totalarray['nbfield'] = 0;
599$imaxinloop = ($limit ? min($num, $limit) : $num);
600while ($i < $imaxinloop) {
601 $obj = $db->fetch_object($resql);
602 if (empty($obj)) {
603 break; // Should not happen
604 }
605
606 // Store properties in $object
607 $object->setVarsFromFetchObj($obj);
608
609 if ($mode == 'kanban') {
610 $object->deplacement = $obj->deplacement;
611 $object->description = $obj->description;
612
613 if ($i == 0) {
614 print '<tr class="trkanban"><td colspan="'.$savnbfield.'">';
615 print '<div class="box-flex-container kanban">';
616 }
617 // Output Kanban
618 $selected = -1;
619 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
620 $selected = 0;
621 if (in_array($object->id, $arrayofselected)) {
622 $selected = 1;
623 }
624 }
625 print $object->getKanbanView('', array('selected' => $selected));
626 if ($i == ($imaxinloop - 1)) {
627 print '</div>';
628 print '</td></tr>';
629 }
630 } else {
631 // Show here line of result
632 $j = 0;
633 print '<tr data-rowid="'.$object->id.'" class="oddeven">';
634 // Action column
635 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
636 print '<td class="nowrap center">';
637 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
638 $selected = 0;
639 if (in_array($object->id, $arrayofselected)) {
640 $selected = 1;
641 }
642 print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
643 }
644 print '</td>';
645 }
646 foreach ($object->fields as $key => $val) {
647 $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
648 if (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
649 $cssforfield .= ($cssforfield ? ' ' : '').'center';
650 } elseif ($key == 'status') {
651 $cssforfield .= ($cssforfield ? ' ' : '').'center';
652 }
653
654 if (in_array($val['type'], array('timestamp'))) {
655 $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
656 } elseif ($key == 'ref') {
657 $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
658 }
659
660 if (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('rowid', 'status')) && empty($val['arrayofkeyval'])) {
661 $cssforfield .= ($cssforfield ? ' ' : '').'right';
662 }
663 //if (in_array($key, array('fk_soc', 'fk_user', 'fk_warehouse'))) $cssforfield = 'tdoverflowmax100';
664
665 if (!empty($arrayfields['t.'.$key]['checked'])) {
666 print '<td'.($cssforfield ? ' class="'.$cssforfield.(preg_match('/tdoverflow/', $cssforfield) ? ' classfortooltip' : '').'"' : '');
667 if (preg_match('/tdoverflow/', $cssforfield) && !is_numeric($object->$key)) {
668 print ' title="'.dol_escape_htmltag($object->$key).'"';
669 }
670 print '>';
671 if ($key == 'status') {
672 print $object->getLibStatut(5);
673 } elseif ($key == 'rowid') {
674 print $object->showOutputField($val, $key, $object->id, '');
675 } elseif ($key == 'label') {
676 print $object->getNomUrl(1);
677 } else {
678 print $object->showOutputField($val, $key, $object->$key, '');
679 }
680 print '</td>';
681 if (!$i) {
682 $totalarray['nbfield']++;
683 }
684 if (!empty($val['isameasure']) && $val['isameasure'] == 1) {
685 if (!$i) {
686 $totalarray['pos'][$totalarray['nbfield']] = 't.'.$key;
687 }
688 if (!isset($totalarray['val'])) {
689 $totalarray['val'] = array();
690 }
691 if (!isset($totalarray['val']['t.'.$key])) {
692 $totalarray['val']['t.'.$key] = 0;
693 }
694 $totalarray['val']['t.'.$key] += $object->$key;
695 }
696 }
697 }
698 // Extra fields
699 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
700 // Fields from hook
701 $parameters = array('arrayfields'=>$arrayfields, 'object'=>$object, 'obj'=>$obj, 'i'=>$i, 'totalarray'=>&$totalarray);
702 $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters, $object); // Note that $action and $object may have been modified by hook
703 print $hookmanager->resPrint;
704 // Action column
705 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
706 print '<td class="nowrap center">';
707 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
708 $selected = 0;
709 if (in_array($object->id, $arrayofselected)) {
710 $selected = 1;
711 }
712 print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
713 }
714 print '</td>';
715 }
716 if (!$i) {
717 $totalarray['nbfield']++;
718 }
719
720 print '</tr>'."\n";
721 }
722
723 $i++;
724}
725
726// Show total line
727include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
728
729// If no record found
730if ($num == 0) {
731 $colspan = 1;
732 foreach ($arrayfields as $key => $val) {
733 if (!empty($val['checked'])) {
734 $colspan++;
735 }
736 }
737 print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
738}
739
740
741$db->free($resql);
742
743$parameters = array('arrayfields'=>$arrayfields, 'sql'=>$sql);
744$reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
745print $hookmanager->resPrint;
746
747print '</table>'."\n";
748print '</div>'."\n";
749
750print '</form>'."\n";
751
752if (in_array('builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords === '' || $nbtotalofrecords)) {
753 $hidegeneratedfilelistifempty = 1;
754 if ($massaction == 'builddoc' || $action == 'remove_file' || $show_files) {
755 $hidegeneratedfilelistifempty = 0;
756 }
757
758 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
759 $formfile = new FormFile($db);
760
761 // Show list of available documents
762 $urlsource = $_SERVER['PHP_SELF'].'?sortfield='.$sortfield.'&sortorder='.$sortorder;
763 $urlsource .= str_replace('&amp;', '&', $param);
764
765 $filedir = $diroutputmassaction;
766 $genallowed = $permissiontoread;
767 $delallowed = $permissiontoadd;
768
769 print $formfile->showdocuments('massfilesarea_hrm', '', $filedir, $urlsource, 0, $delallowed, '', 1, 1, 0, 48, 1, $param, $title, '', '', '', null, $hidegeneratedfilelistifempty);
770}
771
772// End of page
773llxFooter();
774$db->close();
$id
Definition account.php:39
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
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:70
Class to manage standard extra fields.
Class to generate html code for admin pages.
Class to offer components to list and upload files.
Class to manage generation of HTML components Only common components must be here.
Class for Job.
Definition job.class.php:38
llxFooter()
Footer empty.
Definition document.php:107
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
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.
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.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
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...
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.