list.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684
  1. <?php
  2. /* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. /**
  19. * \file htdocs/asset/model/list.php
  20. * \ingroup asset
  21. * \brief List page for asset model
  22. */
  23. // Load Dolibarr environment
  24. require '../../main.inc.php';
  25. require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
  26. require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
  27. require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
  28. require_once DOL_DOCUMENT_ROOT.'/asset/class/assetmodel.class.php';
  29. // Load translation files required by the page
  30. $langs->loadLangs(array("assets", "other"));
  31. $action = GETPOST('action', 'aZ09') ?GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ...
  32. $massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
  33. $show_files = GETPOST('show_files', 'int'); // Show files area generated by bulk actions ?
  34. $confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
  35. $cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
  36. $toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
  37. $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'assetmodellist'; // To manage different context of search
  38. $backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
  39. $optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
  40. $id = GETPOST('id', 'int');
  41. // Load variable for pagination
  42. $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
  43. $sortfield = GETPOST('sortfield', 'aZ09comma');
  44. $sortorder = GETPOST('sortorder', 'aZ09comma');
  45. $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
  46. if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha') || (empty($toselect) && $massaction === '0')) {
  47. $page = 0;
  48. } // If $page is not defined, or '' or -1 or if we click on clear filters or if we select empty mass action
  49. $offset = $limit * $page;
  50. $pageprev = $page - 1;
  51. $pagenext = $page + 1;
  52. // Initialize technical objects
  53. $object = new AssetModel($db);
  54. $extrafields = new ExtraFields($db);
  55. $diroutputmassaction = $conf->asset->dir_output.'/temp/massgeneration/'.$user->id;
  56. $hookmanager->initHooks(array('assetmodellist')); // Note that conf->hooks_modules contains array
  57. // Fetch optionals attributes and labels
  58. $extrafields->fetch_name_optionals_label($object->table_element);
  59. //$extrafields->fetch_name_optionals_label($object->table_element_line);
  60. $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
  61. // Default sort order (if not yet defined by previous GETPOST)
  62. if (!$sortfield) {
  63. reset($object->fields); // Reset is required to avoid key() to return null.
  64. $sortfield = "t.".key($object->fields); // Set here default search field. By default 1st field in definition.
  65. }
  66. if (!$sortorder) {
  67. $sortorder = "ASC";
  68. }
  69. // Initialize array of search criterias
  70. $search_all = GETPOST('search_all', 'alphanohtml');
  71. $search = array();
  72. foreach ($object->fields as $key => $val) {
  73. if ($key == 'fk_pays' && !GETPOSTISSET('search_'.$key)) {
  74. $search[$key] = $mysoc->country_id;
  75. } elseif (GETPOST('search_'.$key, 'alpha') !== '') {
  76. $search[$key] = GETPOST('search_'.$key, 'alpha');
  77. }
  78. if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
  79. $search[$key.'_dtstart'] = dol_mktime(0, 0, 0, GETPOST('search_'.$key.'_dtstartmonth', 'int'), GETPOST('search_'.$key.'_dtstartday', 'int'), GETPOST('search_'.$key.'_dtstartyear', 'int'));
  80. $search[$key.'_dtend'] = dol_mktime(23, 59, 59, GETPOST('search_'.$key.'_dtendmonth', 'int'), GETPOST('search_'.$key.'_dtendday', 'int'), GETPOST('search_'.$key.'_dtendyear', 'int'));
  81. }
  82. }
  83. // List of fields to search into when doing a "search in all"
  84. $fieldstosearchall = array();
  85. foreach ($object->fields as $key => $val) {
  86. if (!empty($val['searchall'])) {
  87. $fieldstosearchall['t.'.$key] = $val['label'];
  88. }
  89. }
  90. // Definition of array of fields for columns
  91. $arrayfields = array();
  92. foreach ($object->fields as $key => $val) {
  93. // If $val['visible']==0, then we never show the field
  94. if (!empty($val['visible'])) {
  95. $visible = (int) dol_eval($val['visible'], 1);
  96. $arrayfields['t.'.$key] = array(
  97. 'label'=>$val['label'],
  98. 'checked'=>(($visible < 0) ? 0 : 1),
  99. 'enabled'=>($visible != 3 && dol_eval($val['enabled'], 1)),
  100. 'position'=>$val['position'],
  101. 'help'=> isset($val['help']) ? $val['help'] : ''
  102. );
  103. }
  104. }
  105. // Extra fields
  106. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
  107. $object->fields = dol_sort_array($object->fields, 'position');
  108. $arrayfields = dol_sort_array($arrayfields, 'position');
  109. $permissiontoread = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->rights->asset->read) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->asset->model_advance->read)));
  110. $permissiontoadd = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->rights->asset->write) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->asset->model_advance->write)));
  111. $permissiontodelete = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->rights->asset->delete) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->asset->model_advance->delete)));
  112. // Security check
  113. if (empty($conf->asset->enabled)) {
  114. accessforbidden('Module not enabled');
  115. }
  116. // Security check (enable the most restrictive one)
  117. if ($user->socid > 0) {
  118. accessforbidden();
  119. }
  120. $socid = 0;
  121. if ($user->socid > 0) {
  122. $socid = $user->socid;
  123. }
  124. $isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
  125. restrictedArea($user, 'asset', $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
  126. if (empty($conf->asset->enabled)) accessforbidden();
  127. if (!$permissiontoread) accessforbidden();
  128. /*
  129. * Actions
  130. */
  131. if (GETPOST('cancel', 'alpha')) {
  132. $action = 'list';
  133. $massaction = '';
  134. }
  135. if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
  136. $massaction = '';
  137. }
  138. $parameters = array();
  139. $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
  140. if ($reshook < 0) {
  141. setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
  142. }
  143. if (empty($reshook)) {
  144. // Selection of new fields
  145. include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
  146. // Purge search criteria
  147. 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
  148. foreach ($object->fields as $key => $val) {
  149. $search[$key] = '';
  150. if ($key == 'fk_pays') $search[$key] = $mysoc->country_id;
  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 = 'AssetModel';
  165. $objectlabel = 'AssetModel';
  166. $uploaddir = $conf->asset->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 = '';
  175. $title = $langs->trans('ListOf', $langs->transnoentitiesnoconv("AssetModels"));
  176. $morejs = array();
  177. $morecss = array();
  178. // Build and execute select
  179. // --------------------------------------------------------------------
  180. $sql = 'SELECT ';
  181. $sql .= $object->getFieldList('t');
  182. // Add fields from extrafields
  183. if (!empty($extrafields->attributes[$object->table_element]['label'])) {
  184. foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
  185. $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key." as options_".$key : '');
  186. }
  187. }
  188. // Add fields from hooks
  189. $parameters = array();
  190. $reshook = $hookmanager->executeHooks('printFieldListSelect', $parameters, $object); // Note that $action and $object may have been modified by hook
  191. $sql .= preg_replace('/^,/', '', $hookmanager->resPrint);
  192. $sql = preg_replace('/,\s*$/', '', $sql);
  193. $sql .= " FROM ".MAIN_DB_PREFIX.$object->table_element." as t";
  194. if (isset($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label']) && count($extrafields->attributes[$object->table_element]['label'])) {
  195. $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element."_extrafields as ef on (t.rowid = ef.fk_object)";
  196. }
  197. // Add table from hooks
  198. $parameters = array();
  199. $reshook = $hookmanager->executeHooks('printFieldListFrom', $parameters, $object); // Note that $action and $object may have been modified by hook
  200. $sql .= $hookmanager->resPrint;
  201. if ($object->ismultientitymanaged == 1) {
  202. $sql .= " WHERE t.entity IN (".getEntity($object->element).")";
  203. } else {
  204. $sql .= " WHERE 1 = 1";
  205. }
  206. foreach ($search as $key => $val) {
  207. if (array_key_exists($key, $object->fields)) {
  208. if ($key == 'status' && $search[$key] == -1) {
  209. continue;
  210. }
  211. $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
  212. if ((strpos($object->fields[$key]['type'], 'integer:') === 0) || (strpos($object->fields[$key]['type'], 'sellist:') === 0) || !empty($object->fields[$key]['arrayofkeyval'])) {
  213. if ($search[$key] == '-1' || ($search[$key] === '0' && (empty($object->fields[$key]['arrayofkeyval']) || !array_key_exists('0', $object->fields[$key]['arrayofkeyval'])))) {
  214. $search[$key] = '';
  215. }
  216. $mode_search = 2;
  217. }
  218. if ($search[$key] != '') {
  219. $sql .= natural_search($key, $search[$key], (($key == 'status') ? 2 : $mode_search));
  220. }
  221. } else {
  222. if (preg_match('/(_dtstart|_dtend)$/', $key) && $search[$key] != '') {
  223. $columnName = preg_replace('/(_dtstart|_dtend)$/', '', $key);
  224. if (preg_match('/^(date|timestamp|datetime)/', $object->fields[$columnName]['type'])) {
  225. if (preg_match('/_dtstart$/', $key)) {
  226. $sql .= " AND t.".$columnName." >= '".$db->idate($search[$key])."'";
  227. }
  228. if (preg_match('/_dtend$/', $key)) {
  229. $sql .= " AND t." . $columnName . " <= '" . $db->idate($search[$key]) . "'";
  230. }
  231. }
  232. }
  233. }
  234. }
  235. if ($search_all) {
  236. $sql .= natural_search(array_keys($fieldstosearchall), $search_all);
  237. }
  238. //$sql.= dolSqlDateFilter("t.field", $search_xxxday, $search_xxxmonth, $search_xxxyear);
  239. // Add where from extra fields
  240. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
  241. // Add where from hooks
  242. $parameters = array();
  243. $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $object); // Note that $action and $object may have been modified by hook
  244. $sql .= $hookmanager->resPrint;
  245. /* If a group by is required
  246. $sql .= " GROUP BY ";
  247. foreach($object->fields as $key => $val) {
  248. $sql .= "t.".$key.", ";
  249. }
  250. // Add fields from extrafields
  251. if (!empty($extrafields->attributes[$object->table_element]['label'])) {
  252. foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
  253. $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? "ef.".$key.', ' : '');
  254. }
  255. }
  256. // Add where from hooks
  257. $parameters = array();
  258. $reshook = $hookmanager->executeHooks('printFieldListGroupBy', $parameters, $object); // Note that $action and $object may have been modified by hook
  259. $sql .= $hookmanager->resPrint;
  260. $sql = preg_replace('/,\s*$/', '', $sql);
  261. */
  262. // Add HAVING from hooks
  263. /*
  264. $parameters = array();
  265. $reshook = $hookmanager->executeHooks('printFieldListHaving', $parameters, $object); // Note that $action and $object may have been modified by hook
  266. $sql .= !empty($hookmanager->resPrint) ? (" HAVING 1=1 " . $hookmanager->resPrint) : "";
  267. */
  268. // Count total nb of records
  269. $nbtotalofrecords = '';
  270. if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
  271. /* This old and fast method to get and count full list returns all record so use a high amount of memory.
  272. $resql = $db->query($sql);
  273. $nbtotalofrecords = $db->num_rows($resql);
  274. */
  275. /* The slow method does not consume memory on mysql (not tested on pgsql) */
  276. /*$resql = $db->query($sql, 0, 'auto', 1);
  277. while ($db->fetch_object($resql)) {
  278. $nbtotalofrecords++;
  279. }*/
  280. /* The fast and low memory method to get and count full list converts the sql into a sql count */
  281. $sqlforcount = preg_replace('/^SELECT[a-z0-9\._\s\(\),]+FROM/i', 'SELECT COUNT(*) as nbtotalofrecords FROM', $sql);
  282. $resql = $db->query($sqlforcount);
  283. $objforcount = $db->fetch_object($resql);
  284. $nbtotalofrecords = $objforcount->nbtotalofrecords;
  285. if (($page * $limit) > $nbtotalofrecords) { // if total of record found is smaller than page * limit, goto and load page 0
  286. $page = 0;
  287. $offset = 0;
  288. }
  289. $db->free($resql);
  290. }
  291. // Complete request and execute it with limit
  292. $sql .= $db->order($sortfield, $sortorder);
  293. if ($limit) {
  294. $sql .= $db->plimit($limit + 1, $offset);
  295. }
  296. $resql = $db->query($sql);
  297. if (!$resql) {
  298. dol_print_error($db);
  299. exit;
  300. }
  301. $num = $db->num_rows($resql);
  302. // Direct jump if only one record found
  303. if ($num == 1 && !empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && $search_all && !$page) {
  304. $obj = $db->fetch_object($resql);
  305. $id = $obj->rowid;
  306. header("Location: ".DOL_URL_ROOT.'/asset/model/card.php?id='.$id);
  307. exit;
  308. }
  309. // Output page
  310. // --------------------------------------------------------------------
  311. llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', '');
  312. $arrayofselected = is_array($toselect) ? $toselect : array();
  313. $param = '';
  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]) && count($search[$key])) {
  322. foreach ($search[$key] as $skey) {
  323. if ($skey != '') {
  324. $param .= '&search_'.$key.'[]='.urlencode($skey);
  325. }
  326. }
  327. } elseif ($search[$key] != '') {
  328. $param .= '&search_'.$key.'='.urlencode($search[$key]);
  329. }
  330. }
  331. if ($optioncss != '') {
  332. $param .= '&optioncss='.urlencode($optioncss);
  333. }
  334. // Add $param from extra fields
  335. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
  336. // Add $param from hooks
  337. $parameters = array();
  338. $reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object); // Note that $action and $object may have been modified by hook
  339. $param .= $hookmanager->resPrint;
  340. // List of mass actions available
  341. $arrayofmassactions = array(
  342. //'validate'=>img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("Validate"),
  343. //'generate_doc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("ReGeneratePDF"),
  344. //'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
  345. //'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
  346. );
  347. if ($permissiontodelete) {
  348. $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
  349. }
  350. if (GETPOST('nomassaction', 'int') || in_array($massaction, array('presend', 'predelete'))) {
  351. $arrayofmassactions = array();
  352. }
  353. $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
  354. print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
  355. if ($optioncss != '') {
  356. print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
  357. }
  358. print '<input type="hidden" name="token" value="'.newToken().'">';
  359. print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
  360. print '<input type="hidden" name="action" value="list">';
  361. print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
  362. print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
  363. print '<input type="hidden" name="page" value="'.$page.'">';
  364. print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
  365. $newcardbutton = dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/asset/model/card.php?action=create&backtopage='.urlencode($_SERVER['PHP_SELF']), '', $permissiontoadd);
  366. print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'object_'.$object->picto, 0, $newcardbutton, '', $limit, 0, 0, 1);
  367. // Add code for pre mass action (confirmation or email presend form)
  368. $topicmail = "SendAssetModelRef";
  369. $modelmail = "assetmodel";
  370. $objecttmp = new AssetModel($db);
  371. $trackid = 'assetmodel'.$object->id;
  372. include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
  373. if ($search_all) {
  374. foreach ($fieldstosearchall as $key => $val) {
  375. $fieldstosearchall[$key] = $langs->trans($val);
  376. }
  377. print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $search_all).join(', ', $fieldstosearchall).'</div>';
  378. }
  379. $moreforfilter = '';
  380. /*$moreforfilter.='<div class="divsearchfield">';
  381. $moreforfilter.= $langs->trans('MyFilter') . ': <input type="text" name="search_myfield" value="'.dol_escape_htmltag($search_myfield).'">';
  382. $moreforfilter.= '</div>';*/
  383. $parameters = array();
  384. $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
  385. if (empty($reshook)) {
  386. $moreforfilter .= $hookmanager->resPrint;
  387. } else {
  388. $moreforfilter = $hookmanager->resPrint;
  389. }
  390. if (!empty($moreforfilter)) {
  391. print '<div class="liste_titre liste_titre_bydiv centpercent">';
  392. print $moreforfilter;
  393. print '</div>';
  394. }
  395. $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
  396. $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
  397. $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
  398. print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
  399. print '<table class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
  400. // Fields title search
  401. // --------------------------------------------------------------------
  402. print '<tr class="liste_titre">';
  403. foreach ($object->fields as $key => $val) {
  404. $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
  405. if ($key == 'status') {
  406. $cssforfield .= ($cssforfield ? ' ' : '').'center';
  407. } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
  408. $cssforfield .= ($cssforfield ? ' ' : '').'center';
  409. } elseif (in_array($val['type'], array('timestamp'))) {
  410. $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
  411. } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
  412. $cssforfield .= ($cssforfield ? ' ' : '').'right';
  413. }
  414. if (!empty($arrayfields['t.'.$key]['checked'])) {
  415. print '<td class="liste_titre'.($cssforfield ? ' '.$cssforfield : '').'">';
  416. if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
  417. print $form->selectarray('search_'.$key, $val['arrayofkeyval'], (isset($search[$key]) ? $search[$key] : ''), $val['notnull'], 0, 0, '', 1, 0, 0, '', 'maxwidth100', 1);
  418. } elseif ((strpos($val['type'], 'integer:') === 0) || (strpos($val['type'], 'sellist:') === 0)) {
  419. print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] : ''), '', '', 'search_', 'maxwidth125', 1);
  420. } elseif (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
  421. print '<div class="nowrap">';
  422. print $form->selectDate($search[$key.'_dtstart'] ? $search[$key.'_dtstart'] : '', "search_".$key."_dtstart", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
  423. print '</div>';
  424. print '<div class="nowrap">';
  425. print $form->selectDate($search[$key.'_dtend'] ? $search[$key.'_dtend'] : '', "search_".$key."_dtend", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
  426. print '</div>';
  427. } elseif ($key == 'lang') {
  428. require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
  429. $formadmin = new FormAdmin($db);
  430. print $formadmin->select_language($search[$key], 'search_lang', 0, null, 1, 0, 0, 'minwidth150 maxwidth200', 2);
  431. } else {
  432. print '<input type="text" class="flat maxwidth75" name="search_'.$key.'" value="'.dol_escape_htmltag(isset($search[$key]) ? $search[$key] : '').'">';
  433. }
  434. print '</td>';
  435. }
  436. }
  437. // Extra fields
  438. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
  439. // Fields from hook
  440. $parameters = array('arrayfields'=>$arrayfields);
  441. $reshook = $hookmanager->executeHooks('printFieldListOption', $parameters, $object); // Note that $action and $object may have been modified by hook
  442. print $hookmanager->resPrint;
  443. // Action column
  444. print '<td class="liste_titre maxwidthsearch">';
  445. $searchpicto = $form->showFilterButtons();
  446. print $searchpicto;
  447. print '</td>';
  448. print '</tr>'."\n";
  449. // Fields title label
  450. // --------------------------------------------------------------------
  451. print '<tr class="liste_titre">';
  452. foreach ($object->fields as $key => $val) {
  453. $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
  454. if ($key == 'status') {
  455. $cssforfield .= ($cssforfield ? ' ' : '').'center';
  456. } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
  457. $cssforfield .= ($cssforfield ? ' ' : '').'center';
  458. } elseif (in_array($val['type'], array('timestamp'))) {
  459. $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
  460. } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
  461. $cssforfield .= ($cssforfield ? ' ' : '').'right';
  462. }
  463. if (!empty($arrayfields['t.'.$key]['checked'])) {
  464. print getTitleFieldOfList($arrayfields['t.'.$key]['label'], 0, $_SERVER['PHP_SELF'], 't.'.$key, '', $param, ($cssforfield ? 'class="'.$cssforfield.'"' : ''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.' ' : ''))."\n";
  465. }
  466. }
  467. // Extra fields
  468. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
  469. // Hook fields
  470. $parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder);
  471. $reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook
  472. print $hookmanager->resPrint;
  473. // Action column
  474. print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
  475. print '</tr>'."\n";
  476. // Detect if we need a fetch on each output line
  477. $needToFetchEachLine = 0;
  478. if (isset($extrafields->attributes[$object->table_element]['computed']) && is_array($extrafields->attributes[$object->table_element]['computed']) && count($extrafields->attributes[$object->table_element]['computed']) > 0) {
  479. foreach ($extrafields->attributes[$object->table_element]['computed'] as $key => $val) {
  480. if (preg_match('/\$object/', $val)) {
  481. $needToFetchEachLine++; // There is at least one compute field that use $object
  482. }
  483. }
  484. }
  485. // Loop on record
  486. // --------------------------------------------------------------------
  487. $i = 0;
  488. $totalarray = array();
  489. $totalarray['nbfield'] = 0;
  490. while ($i < ($limit ? min($num, $limit) : $num)) {
  491. $obj = $db->fetch_object($resql);
  492. if (empty($obj)) {
  493. break; // Should not happen
  494. }
  495. // Store properties in $object
  496. $object->setVarsFromFetchObj($obj);
  497. // Show here line of result
  498. print '<tr class="oddeven">';
  499. foreach ($object->fields as $key => $val) {
  500. $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
  501. if (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
  502. $cssforfield .= ($cssforfield ? ' ' : '').'center';
  503. } elseif ($key == 'status') {
  504. $cssforfield .= ($cssforfield ? ' ' : '').'center';
  505. }
  506. if (in_array($val['type'], array('timestamp'))) {
  507. $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
  508. } elseif ($key == 'ref') {
  509. $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
  510. }
  511. if (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('rowid', 'status')) && empty($val['arrayofkeyval'])) {
  512. $cssforfield .= ($cssforfield ? ' ' : '').'right';
  513. }
  514. //if (in_array($key, array('fk_soc', 'fk_user', 'fk_warehouse'))) $cssforfield = 'tdoverflowmax100';
  515. if (!empty($arrayfields['t.'.$key]['checked'])) {
  516. print '<td'.($cssforfield ? ' class="'.$cssforfield.'"' : '').'>';
  517. if ($key == 'status') {
  518. print $object->getLibStatut(5);
  519. } elseif ($key == 'rowid') {
  520. print $object->showOutputField($val, $key, $object->id, '');
  521. } else {
  522. print $object->showOutputField($val, $key, $object->$key, '');
  523. }
  524. print '</td>';
  525. if (!$i) {
  526. $totalarray['nbfield']++;
  527. }
  528. if (!empty($val['isameasure']) && $val['isameasure'] == 1) {
  529. if (!$i) {
  530. $totalarray['pos'][$totalarray['nbfield']] = 't.'.$key;
  531. }
  532. if (!isset($totalarray['val'])) {
  533. $totalarray['val'] = array();
  534. }
  535. if (!isset($totalarray['val']['t.'.$key])) {
  536. $totalarray['val']['t.'.$key] = 0;
  537. }
  538. $totalarray['val']['t.'.$key] += $object->$key;
  539. }
  540. }
  541. }
  542. // Extra fields
  543. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
  544. // Fields from hook
  545. $parameters = array('arrayfields'=>$arrayfields, 'object'=>$object, 'obj'=>$obj, 'i'=>$i, 'totalarray'=>&$totalarray);
  546. $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters, $object); // Note that $action and $object may have been modified by hook
  547. print $hookmanager->resPrint;
  548. // Action column
  549. print '<td class="nowrap center">';
  550. if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
  551. $selected = 0;
  552. if (in_array($object->id, $arrayofselected)) {
  553. $selected = 1;
  554. }
  555. print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
  556. }
  557. print '</td>';
  558. if (!$i) {
  559. $totalarray['nbfield']++;
  560. }
  561. print '</tr>'."\n";
  562. $i++;
  563. }
  564. // Show total line
  565. include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
  566. // If no record found
  567. if ($num == 0) {
  568. $colspan = 1;
  569. foreach ($arrayfields as $key => $val) {
  570. if (!empty($val['checked'])) {
  571. $colspan++;
  572. }
  573. }
  574. print '<tr><td colspan="'.$colspan.'" class="opacitymedium">'.$langs->trans("NoRecordFound").'</td></tr>';
  575. }
  576. $db->free($resql);
  577. $parameters = array('arrayfields'=>$arrayfields, 'sql'=>$sql);
  578. $reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters, $object); // Note that $action and $object may have been modified by hook
  579. print $hookmanager->resPrint;
  580. print '</table>'."\n";
  581. print '</div>'."\n";
  582. print '</form>'."\n";
  583. if (in_array('builddoc', $arrayofmassactions) && ($nbtotalofrecords === '' || $nbtotalofrecords)) {
  584. $hidegeneratedfilelistifempty = 1;
  585. if ($massaction == 'builddoc' || $action == 'remove_file' || $show_files) {
  586. $hidegeneratedfilelistifempty = 0;
  587. }
  588. require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
  589. $formfile = new FormFile($db);
  590. // Show list of available documents
  591. $urlsource = $_SERVER['PHP_SELF'].'?sortfield='.$sortfield.'&sortorder='.$sortorder;
  592. $urlsource .= str_replace('&amp;', '&', $param);
  593. $filedir = $diroutputmassaction;
  594. $genallowed = $permissiontoread;
  595. $delallowed = $permissiontoadd;
  596. print $formfile->showdocuments('massfilesarea_asset', '', $filedir, $urlsource, 0, $delallowed, '', 1, 1, 0, 48, 1, $param, $title, '', '', '', null, $hidegeneratedfilelistifempty);
  597. }
  598. // End of page
  599. llxFooter();
  600. $db->close();