evaluation_list.php 30 KB

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