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';
42$langs->loadLangs(array(
"banks",
"other"));
44$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
45$massaction =
GETPOST(
'massaction',
'alpha');
47$confirm =
GETPOST(
'confirm',
'alpha');
48$cancel =
GETPOST(
'cancel',
'alpha');
49$toselect =
GETPOST(
'toselect',
'array');
50$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'cashcontrol';
51$backtopage =
GETPOST(
'backtopage',
'alpha');
52$optioncss =
GETPOST(
'optioncss',
'aZ');
53$mode =
GETPOST(
'mode',
'alpha');
58$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
59$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
61if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha') || (empty($toselect) && $massaction ===
'0')) {
65$offset = $limit * $page;
75$hookmanager->initHooks(array(
'cashcontrol'));
78$extrafields->fetch_name_optionals_label(
$object->table_element);
81$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
86 $sortfield =
"t.".key(
$object->fields);
93$search_all =
GETPOST(
'search_all',
'alphanohtml');
95foreach (
$object->fields as $key => $val) {
96 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
97 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
99 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
106$fieldstosearchall = array();
107foreach (
$object->fields as $key => $val) {
108 if (!empty($val[
'searchall'])) {
109 $fieldstosearchall[
't.'.$key] = $val[
'label'];
114$arrayfields = array();
115foreach (
$object->fields as $key => $val) {
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'] :
''
129include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
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'));
139if ($user->socid > 0) {
143if (!$user->hasRight(
'cashdesk',
'run') && !$user->hasRight(
'takepos',
'run')) {
152if (
GETPOST(
'cancel',
'alpha')) {
156if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
160$parameters = array();
161$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
166if (empty($reshook)) {
168 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
171 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
172 foreach (
$object->fields as $key => $val) {
174 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
175 $search[$key.
'_dtstart'] =
'';
176 $search[$key.
'_dtend'] =
'';
180 $search_array_options = array();
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')) {
188 $objectclass =
'CashControl';
189 $objectlabel =
'CashControl';
190 $uploaddir =
$conf->bank->dir_output;
191 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
200$form =
new Form($db);
206$title = $langs->trans(
'CashControl');
213$sql .=
$object->getFieldList(
't');
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 :
'');
221$parameters = array();
222$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object);
223$sql .= $hookmanager->resPrint;
224$sql = preg_replace(
'/,\s*$/',
'', $sql);
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)";
233$parameters = array();
234$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object);
235$sql .= $hookmanager->resPrint;
236if (
$object->ismultientitymanaged == 1) {
237 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element).
")";
239 $sql .=
" WHERE 1 = 1";
241foreach ($search as $key => $val) {
242 if (array_key_exists($key,
$object->fields)) {
243 if ($key ==
'status' && $search[$key] == -1) {
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'])))) {
253 if ($search[$key] !=
'') {
254 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
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]).
"'";
263 if (preg_match(
'/_dtend$/', $key)) {
264 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
271 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
275include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
277$parameters = array();
278$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object);
279$sql .= $hookmanager->resPrint;
301$nbtotalofrecords =
'';
304 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
305 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
306 $resql = $db->query($sqlforcount);
308 $objforcount = $db->fetch_object($resql);
309 $nbtotalofrecords = $objforcount->nbtotalofrecords;
314 if (($page * $limit) > $nbtotalofrecords) {
322$sql .= $db->order($sortfield, $sortorder);
324 $sql .= $db->plimit($limit + 1, $offset);
327$resql = $db->query($sql);
333$num = $db->num_rows($resql);
337if ($num == 1 &&
getDolGlobalString(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
338 $obj = $db->fetch_object($resql);
340 header(
"Location: ".DOL_URL_ROOT.
'/compta/cashcontrol/cashcontrol_card.php?id='.$id);
348llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'bodyforlist');
350$arrayofselected = is_array($toselect) ? $toselect : array();
354 $param .=
'&mode='.urlencode($mode);
356if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
357 $param .=
'&contextpage='.urlencode($contextpage);
359if ($limit > 0 && $limit !=
$conf->liste_limit) {
360 $param .=
'&limit='.((int) $limit);
362foreach ($search as $key => $val) {
363 if (is_array($search[$key])) {
364 foreach ($search[$key] as $skey) {
366 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
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]);
377if ($optioncss !=
'') {
378 $param .=
'&optioncss='.urlencode($optioncss);
381include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
383$parameters = array(
'param' => &$param);
384$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object);
385$param .= $hookmanager->resPrint;
388$arrayofmassactions = array();
389if (!empty($permissiontodelete)) {
390 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
392$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
394print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
395if ($optioncss !=
'') {
396 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
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.
'">';
407$permforcashfence = 1;
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'));
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);
415print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'cash-register', 0, $newcardbutton,
'', $limit, 0, 0, 1);
418$topicmail =
"SendCashControlRef";
419$modelmail =
"cashcontrol";
421$trackid =
'cashfence'.$object->id;
422include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
426 foreach ($fieldstosearchall as $key => $val) {
427 $fieldstosearchall[$key] = $langs->trans($val);
428 $setupstring .= $key.
"=".$val.
";";
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";
439$parameters = array();
440$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
441if (empty($reshook)) {
442 $moreforfilter .= $hookmanager->resPrint;
444 $moreforfilter = $hookmanager->resPrint;
447if (!empty($moreforfilter)) {
448 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
449 print $moreforfilter;
453$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
454$selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
455$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
457print
'<div class="div-table-responsive">';
458print
'<table class="tagtable nobottomiftotal noborder liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
463print
'<tr class="liste_titre">';
466 print
'<td class="liste_titre maxwidthsearch">';
467 $searchpicto = $form->showFilterButtons(
'left');
471foreach (
$object->fields as $key => $val) {
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';
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'));
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'));
496 } elseif ($key ==
'lang') {
497 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
499 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, array(), 1, 0, 0,
'minwidth100imp maxwidth125', 2);
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] :
'').
'">';
507include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
510$parameters = array(
'arrayfields'=>$arrayfields);
511$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object);
512print $hookmanager->resPrint;
515 print
'<td class="liste_titre maxwidthsearch">';
516 $searchpicto = $form->showFilterButtons();
528print
'<tr class="liste_titre">';
531 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
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';
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";
551include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
553$parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder,
'totalarray'=>&$totalarray);
554$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object);
555print $hookmanager->resPrint;
558 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
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++;
581while ($i < ($limit ? min($num, $limit) : $num)) {
582 $obj = $db->fetch_object($resql);
588 $object->setVarsFromFetchObj($obj);
591 if ($mode ==
'kanban') {
593 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
594 print
'<div class="box-flex-container kanban">';
597 $object->posmodule = $obj->posmodule;
599 $object->cheque = (float) $obj->cheque;
601 $object->opening = $obj->opening;
602 $object->year_close = $obj->year_close;
606 if ($massactionbutton || $massaction) {
608 if (in_array(
$object->id, $arrayofselected)) {
612 print
$object->getKanbanView(
'', array(
'selected' => $selected));
613 if ($i == (min($num, $limit) - 1)) {
620 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
624 print
'<td class="nowrap center">';
625 if ($massactionbutton || $massaction) {
627 if (in_array(
$object->id, $arrayofselected)) {
630 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
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';
643 if (in_array($val[
'type'], array(
'timestamp'))) {
644 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
645 } elseif ($key ==
'ref') {
646 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
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';
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).
'"';
660 if ($key ==
'status') {
661 print
$object->getLibStatut(5);
662 } elseif ($key ==
'rowid') {
663 print
$object->showOutputField($val, $key, (
string)
$object->id,
'');
671 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
675 if (!isset($totalarray[
'val'])) {
678 if (!isset($totalarray[
'val'][
't.'.$key])) {
686 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
688 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
689 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object);
690 print $hookmanager->resPrint;
693 print
'<td class="nowrap center">';
694 if ($massactionbutton || $massaction) {
696 if (in_array(
$object->id, $arrayofselected)) {
699 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
713include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
719 foreach ($arrayfields as $key => $val) {
720 if (!empty($val[
'checked'])) {
724 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
729$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
730$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
731print $hookmanager->resPrint;
733print
'</table>'.
"\n";
$id
Support class for third parties, contacts, members, users or resources.
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
Class to manage cash fence.
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...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.