job_list.php 30 KB

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