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