27require
'../../main.inc.php';
36require_once DOL_DOCUMENT_ROOT.
'/compta/cashcontrol/class/cashcontrol.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
42$langs->loadLangs(array(
"banks",
"other"));
45$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
46$massaction =
GETPOST(
'massaction',
'alpha');
48$confirm =
GETPOST(
'confirm',
'alpha');
49$cancel =
GETPOST(
'cancel',
'alpha');
50$toselect =
GETPOST(
'toselect',
'array:int');
52$backtopage =
GETPOST(
'backtopage',
'alpha');
53$optioncss =
GETPOST(
'optioncss',
'aZ');
55$groupby =
GETPOST(
'groupby',
'aZ09');
62$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
63$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
65if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
69$offset = $limit * $page;
78$hookmanager->initHooks(array($contextpage));
81$extrafields->fetch_name_optionals_label(
$object->table_element);
84$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
89 $sortfield =
"t.year_close,t.month_close,t.day_close";
94if ($sortfield ==
't.year_close') {
95 $sortfield =
"t.year_close,t.month_close,t.day_close";
99$search_all = trim(
GETPOST(
'search_all',
'alphanohtml'));
101foreach (
$object->fields as $key => $val) {
102 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
103 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
105 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
112$fieldstosearchall = array();
128$arrayfields = array();
129foreach (
$object->fields as $key => $val) {
131 if (!empty($val[
'visible'])) {
132 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
133 $arrayfields[$tableprefix.
'.'.$key] = array(
134 'label' => $val[
'label'],
135 'checked' => (($visible < 0) ?
'0' :
'1'),
136 'enabled' => (
string) (int) (abs($visible) != 3 && (bool)
dol_eval((
string) $val[
'enabled'], 1)),
137 'position' => $val[
'position'],
138 'help' => isset($val[
'help']) ? $val[
'help'] :
''
143include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
145$parameters = array(
'arrayfields' => &$arrayfields);
146$reshook = $hookmanager->executeHooks(
'completeArrayFields', $parameters, $object, $action);
151$permissiontoread = ($user->hasRight(
'cashdesk',
'run') || $user->hasRight(
'takepos',
'run'));
152$permissiontoadd = ($user->hasRight(
'cashdesk',
'run') || $user->hasRight(
'takepos',
'run'));
153$permissiontodelete = ($user->hasRight(
'cashdesk',
'run') || $user->hasRight(
'takepos',
'run'));
156if ($user->socid > 0) {
160if (!$permissiontoread) {
169if (
GETPOST(
'cancel',
'alpha')) {
173if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
177$parameters = array(
'arrayfields' => &$arrayfields);
178$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
183if (empty($reshook)) {
185 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
188 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
189 foreach (
$object->fields as $key => $val) {
191 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
192 $search[$key.
'_dtstart'] =
'';
193 $search[$key.
'_dtend'] =
'';
198 $search_array_options = array();
200 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
201 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
206 $objectclass =
'CashControl';
207 $objectlabel =
'CashControl';
208 $uploaddir =
$conf->bank->dir_output;
211 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
224$title = $langs->trans(
'CashControl');
233$sql .=
" ".$object->getFieldList(
't');
235if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
236 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
237 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
"");
241$parameters = array();
242$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
243$sql .= $hookmanager->resPrint;
244$sql = preg_replace(
'/,\s*$/',
'', $sql);
248$sql .=
" FROM ".$db->prefix().$object->table_element.
" as t";
249if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
250 $sql .=
" LEFT JOIN ".$db->prefix().$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
253$parameters = array();
254$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
255$sql .= $hookmanager->resPrint;
257if (!empty(
$object->ismultientitymanaged) && (
int)
$object->ismultientitymanaged == 1) {
258 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOSTINT(
'search_current_entity') ? 0 : 1)).
")";
259} elseif (preg_match(
'/^\w+@\w+$/', (
string)
$object->ismultientitymanaged)) {
260 $tmparray = explode(
'@', (
string)
$object->ismultientitymanaged);
261 $sql .=
" LEFT JOIN ".$object->db->prefix().$db->sanitize($tmparray[1]).
" as pt ON t.".
$db->sanitize($tmparray[0]).
" = pt.rowid";
262 $sql .=
" WHERE pt.entity IN (".getEntity(
$object->element, (
GETPOSTINT(
'search_current_entity') ? 0 : 1)).
")";
264 $sql .=
" WHERE 1 = 1";
266foreach ($search as $key => $val) {
267 if (array_key_exists($key,
$object->fields)) {
268 if ($key ==
'status' && $search[$key] == -1) {
271 $field_spec =
$object->fields[$key];
272 $mode_search = ((
$object->isInt($field_spec) ||
$object->isFloat($field_spec)) ? 1 : 0);
273 if ((strpos($field_spec[
'type'],
'integer:') === 0) || (strpos($field_spec[
'type'],
'sellist:') === 0) || !empty($field_spec[
'arrayofkeyval'])) {
274 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty($field_spec[
'arrayofkeyval']) || !array_key_exists(
'0', $field_spec[
'arrayofkeyval'])))) {
279 if ($field_spec[
'type'] ===
'boolean') {
281 if ($search[$key] ==
'-1') {
285 if (empty($field_spec[
'searchmulti'])) {
286 if (!is_array($search[$key]) && $search[$key] !=
'') {
287 $sql .=
natural_search(
"t.".
$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
290 if ($search[$key] !=
'') {
291 if ($key ==
'day_close' && $search[$key] ===
'0') {
292 $sql .=
" AND t.day_close IS NULL";
293 } elseif ($key ==
'month_close' && $search[$key] ===
'0') {
294 $sql .=
" AND t.month_close IS NULL";
295 } elseif (is_array($search[$key]) && !empty($search[$key])) {
296 $sql .=
natural_search(
"t.".
$db->escape($key), implode(
',', $search[$key]), (($key ==
'status') ? 2 : $mode_search));
301 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
302 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
303 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
304 if (preg_match(
'/_dtstart$/', $key)) {
305 $sql .=
" AND t.".$db->sanitize($columnName).
" >= '".
$db->idate($search[$key]).
"'";
307 if (preg_match(
'/_dtend$/', $key)) {
308 $sql .=
" AND t.".$db->sanitize($columnName).
" <= '".
$db->idate($search[$key]).
"'";
315 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
319include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
321$parameters = array();
322$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
323$sql .= $hookmanager->resPrint;
350$nbtotalofrecords =
'';
353 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
354 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
355 $resql =
$db->query($sqlforcount);
357 $objforcount =
$db->fetch_object($resql);
358 $nbtotalofrecords = $objforcount->nbtotalofrecords;
363 if (($page * $limit) > (
int) $nbtotalofrecords) {
371$sql .=
$db->order($sortfield, $sortorder);
373 $sql .=
$db->plimit($limit + 1, $offset);
376$resql =
$db->query($sql);
382$num =
$db->num_rows($resql);
386if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
387 $obj =
$db->fetch_object($resql);
389 header(
"Location: ".DOL_URL_ROOT.
'/compta/cashcontrol/cashcontrol_card.php?id='.((
int) $id));
397llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'mod-takepos page-list bodyforlist');
399$arrayofselected = is_array($toselect) ? $toselect : array();
403 $param .=
'&mode='.urlencode($mode);
406 $param .=
'&contextpage='.urlencode($contextpage);
408if ($limit > 0 && $limit !=
$conf->liste_limit) {
409 $param .=
'&limit='.((int) $limit);
411if ($optioncss !=
'') {
412 $param .=
'&optioncss='.urlencode($optioncss);
415 $param .=
'&groupby='.urlencode($groupby);
417foreach ($search as $key => $val) {
418 if (is_array($search[$key])) {
419 foreach ($search[$key] as $skey) {
421 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
424 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
425 $param .=
'&search_'.$key.
'month='.
GETPOSTINT(
'search_'.$key.
'month');
426 $param .=
'&search_'.$key.
'day='.
GETPOSTINT(
'search_'.$key.
'day');
427 $param .=
'&search_'.$key.
'year='.
GETPOSTINT(
'search_'.$key.
'year');
428 } elseif ($search[$key] !=
'') {
429 $param .=
'&search_'.$key.
'='.urlencode((
string) $search[$key]);
433include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
435$parameters = array(
'param' => &$param);
436$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
437$param .= $hookmanager->resPrint;
440$arrayofmassactions = array(
446if (!empty($permissiontodelete)) {
447 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
449if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
450 $arrayofmassactions = array();
452$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
454print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
455if ($optioncss !=
'') {
456 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
458print
'<input type="hidden" name="token" value="'.newToken().
'">';
459print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
460print
'<input type="hidden" name="action" value="list">';
461print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
462print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
463print
'<input type="hidden" name="page" value="'.$page.
'">';
464print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
465print
'<input type="hidden" name="page_y" value="">';
466print
'<input type="hidden" name="mode" value="'.$mode.
'">';
468$permforcashfence = 1;
471$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'));
472$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'));
474$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);
476print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'cash-register', 0, $newcardbutton,
'', $limit, 0, 0, 1);
479$topicmail =
"SendCashControlRef";
480$modelmail =
"cashcontrol";
482$trackid =
'cashfence'.$object->id;
483include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
488 foreach ($fieldstosearchall as $key => $val) {
489 $fieldstosearchall[$key] = $langs->trans($val);
490 $setupstring .= $key.
"=".$val.
";";
492 print
'<!-- Search done like if CASHFENCE_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
493 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>'.
"\n";
501$parameters = array();
502$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
503if (empty($reshook)) {
504 $moreforfilter .= $hookmanager->resPrint;
506 $moreforfilter = $hookmanager->resPrint;
509 'arrayfields' => &$arrayfields,
512if (!empty($moreforfilter)) {
513 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
514 print $moreforfilter;
518$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
519$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
$conf->main_checkbox_left_column);
520$selectedfields = (($mode !=
'kanban' && $mode !=
'kanbangroupby') ? $htmlofselectarray :
'');
521$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
523print
'<div class="div-table-responsive">';
524print
'<table class="tagtable nobottomiftotal noborder liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
529print
'<tr class="liste_titre_filter">';
531if (
$conf->main_checkbox_left_column) {
532 print
'<td class="liste_titre center maxwidthsearch">';
533 $searchpicto = $form->showFilterButtons(
'left');
537foreach (
$object->fields as $key => $val) {
539 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
540 if ($key ==
'status') {
541 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
542 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
543 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
544 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
545 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
546 } 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'])) {
547 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
549 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
550 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
551 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
552 if (empty($val[
'searchmulti'])) {
553 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);
555 print $form->multiselectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), 0, 0,
'maxwidth100'.($key ==
'status' ?
' search_status width100 onrightofpage' :
''), 1);
557 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
558 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
559 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
560 print
'<div class="nowrap">';
561 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
563 print
'<div class="nowrap">';
564 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
566 } elseif ($key ==
'lang') {
567 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
569 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, array(), 1, 0, 0,
'minwidth100imp maxwidth125', 2);
570 } elseif ($val[
'type'] ===
'boolean') {
571 print $form->selectyesno(
'search_' . $key, $search[$key] ??
'', 1,
false, 1);
573 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] :
'').
'">';
579include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
582$parameters = array(
'arrayfields' => $arrayfields);
583$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
584print $hookmanager->resPrint;
586if (!
$conf->main_checkbox_left_column) {
587 print
'<td class="liste_titre center maxwidthsearch">';
588 $searchpicto = $form->showFilterButtons();
600print
'<tr class="liste_titre">';
602if (
$conf->main_checkbox_left_column) {
603 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
606foreach (
$object->fields as $key => $val) {
607 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
608 if ($key ==
'status') {
609 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
610 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
611 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
612 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
613 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
614 } 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'])) {
615 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
617 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
618 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
619 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
''), 0, (empty($val[
'helplist']) ?
'' : $val[
'helplist'])).
"\n";
624include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
626$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
627$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
628print $hookmanager->resPrint;
630if (!
$conf->main_checkbox_left_column) {
631 print
getTitleFieldOfList(($mode !=
'kanban' ? $selectedfields :
''), 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
638$needToFetchEachLine = 0;
639if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
640 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
641 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
642 $needToFetchEachLine++;
654$imaxinloop = ($limit ? min($num, $limit) : $num);
655while ($i < $imaxinloop) {
656 $obj =
$db->fetch_object($resql);
662 $object->setVarsFromFetchObj($obj);
664 if ($mode ==
'kanban' || $mode ==
'kanbangroupby') {
666 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
667 print
'<div class="box-flex-container kanban">';
670 $object->posmodule = $obj->posmodule;
672 $object->cheque = (float) $obj->cheque;
674 $object->opening = $obj->opening;
675 $object->year_close = $obj->year_close;
679 if ($massactionbutton || $massaction) {
681 if (in_array(
$object->id, $arrayofselected)) {
685 print
$object->getKanbanView(
'', array(
'selected' => $selected));
686 if ($i == ($imaxinloop - 1)) {
693 print
'<tr data-rowid="'.$object->id.
'" class="oddeven row-with-select">';
696 if (
$conf->main_checkbox_left_column) {
697 print
'<td class="nowrap center">';
698 if ($massactionbutton || $massaction) {
700 if (in_array(
$object->id, $arrayofselected)) {
703 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
711 foreach (
$object->fields as $key => $val) {
712 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
713 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
714 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
715 } elseif ($key ==
'status') {
716 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
719 if (in_array($val[
'type'], array(
'timestamp'))) {
720 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
721 } elseif ($key ==
'ref') {
722 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
725 if (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && empty($val[
'arrayofkeyval'])) {
726 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
730 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
731 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
732 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key) && !in_array($key, array(
'ref'))) {
733 print
' title="'.dol_escape_htmltag((
string)
$object->$key).
'"';
736 if ($key ==
'status') {
737 print
$object->getLibStatut(5);
738 } elseif ($key ==
'rowid') {
739 print
$object->showOutputField($val, $key, (
string)
$object->id,
'');
741 if ($val[
'type'] ==
'html') {
742 print
'<div class="small lineheightsmall twolinesmax-normallineheight">';
744 print
$object->showOutputField($val, $key, (
string)
$object->$key,
'');
745 if ($val[
'type'] ==
'html') {
753 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
757 if (!isset($totalarray[
'val'])) {
760 if (!isset($totalarray[
'val'][
't.'.$key])) {
768 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
770 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
771 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
772 print $hookmanager->resPrint;
775 if (empty(
$conf->main_checkbox_left_column)) {
776 print
'<td class="nowrap center">';
777 if ($massactionbutton || $massaction) {
779 if (in_array(
$object->id, $arrayofselected)) {
782 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
796include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
802 foreach ($arrayfields as $key => $val) {
803 if (!empty($val[
'checked'])) {
807 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
812$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
813$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
814print $hookmanager->resPrint;
816print
'</table>'.
"\n";
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $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_now($mode='gmt')
Return date for now.
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)
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, $sqltoadd='')
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
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...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
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.
getDolDefaultContextPage($s)
Return the default context page string.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
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...
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.