26require
'../../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/compta/cashcontrol/class/cashcontrol.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
41$langs->loadLangs(array(
"banks",
"other"));
43$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
44$massaction =
GETPOST(
'massaction',
'alpha');
46$confirm =
GETPOST(
'confirm',
'alpha');
47$cancel =
GETPOST(
'cancel',
'alpha');
48$toselect =
GETPOST(
'toselect',
'array');
49$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'cashcontrol';
50$backtopage =
GETPOST(
'backtopage',
'alpha');
51$optioncss =
GETPOST(
'optioncss',
'aZ');
52$mode =
GETPOST(
'mode',
'alpha');
57$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
58$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
60if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha') || (empty($toselect) && $massaction ===
'0')) {
64$offset = $limit * $page;
74$hookmanager->initHooks(array(
'cashcontrol'));
77$extrafields->fetch_name_optionals_label(
$object->table_element);
80$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
85 $sortfield =
"t.".key(
$object->fields);
92$search_all =
GETPOST(
'search_all',
'alphanohtml');
94foreach (
$object->fields as $key => $val) {
95 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
96 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
98 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
105$fieldstosearchall = array();
106foreach (
$object->fields as $key => $val) {
107 if (!empty($val[
'searchall'])) {
108 $fieldstosearchall[
't.'.$key] = $val[
'label'];
113$arrayfields = array();
114foreach (
$object->fields as $key => $val) {
116 if (!empty($val[
'visible'])) {
117 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
118 $arrayfields[
't.'.$key] = array(
119 'label'=>$val[
'label'],
120 'checked'=>(($visible < 0) ? 0 : 1),
121 'enabled'=>(abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
122 'position'=>$val[
'position'],
123 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
128include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
133$permissiontoread = ($user->hasRight(
'cashdesk',
'run') || $user->hasRight(
'takepos',
'run'));
134$permissiontoadd = ($user->hasRight(
'cashdesk',
'run') || $user->hasRight(
'takepos',
'run'));
135$permissiontodelete = ($user->hasRight(
'cashdesk',
'run') || $user->hasRight(
'takepos',
'run'));
138if ($user->socid > 0) {
142if (!$user->hasRight(
'cashdesk',
'run') && !$user->hasRight(
'takepos',
'run')) {
151if (
GETPOST(
'cancel',
'alpha')) {
155if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
159$parameters = array();
160$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
165if (empty($reshook)) {
167 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
170 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
171 foreach (
$object->fields as $key => $val) {
173 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
174 $search[$key.
'_dtstart'] =
'';
175 $search[$key.
'_dtend'] =
'';
179 $search_array_options = array();
181 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
182 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
187 $objectclass =
'CashControl';
188 $objectlabel =
'CashControl';
189 $uploaddir =
$conf->bank->dir_output;
190 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
199$form =
new Form($db);
205$title = $langs->trans(
'CashControl');
212$sql .=
$object->getFieldList(
't');
214if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
215 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
216 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
220$parameters = array();
221$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object);
222$sql .= $hookmanager->resPrint;
223$sql = preg_replace(
'/,\s*$/',
'', $sql);
227$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
228if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
229 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
232$parameters = array();
233$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object);
234$sql .= $hookmanager->resPrint;
235if (
$object->ismultientitymanaged == 1) {
236 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element).
")";
238 $sql .=
" WHERE 1 = 1";
240foreach ($search as $key => $val) {
241 if (array_key_exists($key,
$object->fields)) {
242 if ($key ==
'status' && $search[$key] == -1) {
246 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
247 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
252 if ($search[$key] !=
'') {
253 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
256 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
257 $columnName=preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
258 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
259 if (preg_match(
'/_dtstart$/', $key)) {
260 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
262 if (preg_match(
'/_dtend$/', $key)) {
263 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
270 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
274include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
276$parameters = array();
277$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object);
278$sql .= $hookmanager->resPrint;
300$nbtotalofrecords =
'';
303 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
304 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
305 $resql = $db->query($sqlforcount);
307 $objforcount = $db->fetch_object($resql);
308 $nbtotalofrecords = $objforcount->nbtotalofrecords;
313 if (($page * $limit) > $nbtotalofrecords) {
321$sql .= $db->order($sortfield, $sortorder);
323 $sql .= $db->plimit($limit + 1, $offset);
326$resql = $db->query($sql);
332$num = $db->num_rows($resql);
336if ($num == 1 &&
getDolGlobalString(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
337 $obj = $db->fetch_object($resql);
339 header(
"Location: ".DOL_URL_ROOT.
'/compta/cashcontrol/cashcontrol_card.php?id='.$id);
347llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'bodyforlist');
349$arrayofselected = is_array($toselect) ? $toselect : array();
353 $param .=
'&mode='.urlencode($mode);
355if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
356 $param .=
'&contextpage='.urlencode($contextpage);
358if ($limit > 0 && $limit !=
$conf->liste_limit) {
359 $param .=
'&limit='.((int) $limit);
361foreach ($search as $key => $val) {
362 if (is_array($search[$key])) {
363 foreach ($search[$key] as $skey) {
365 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
368 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
369 $param .=
'&search_'.$key.
'month='.(
GETPOSTINT(
'search_'.$key.
'month'));
370 $param .=
'&search_'.$key.
'day='.(
GETPOSTINT(
'search_'.$key.
'day'));
371 $param .=
'&search_'.$key.
'year='.(
GETPOSTINT(
'search_'.$key.
'year'));
372 } elseif ($search[$key] !=
'') {
373 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
376if ($optioncss !=
'') {
377 $param .=
'&optioncss='.urlencode($optioncss);
380include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
382$parameters = array(
'param' => &$param);
383$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object);
384$param .= $hookmanager->resPrint;
387$arrayofmassactions = array();
388if (!empty($permissiontodelete)) {
389 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
391$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
393print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
394if ($optioncss !=
'') {
395 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
397print
'<input type="hidden" name="token" value="'.newToken().
'">';
398print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
399print
'<input type="hidden" name="action" value="list">';
400print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
401print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
402print
'<input type="hidden" name="page" value="'.$page.
'">';
403print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
404print
'<input type="hidden" name="mode" value="'.$mode.
'">';
406$permforcashfence = 1;
409$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'));
410$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 .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/compta/cashcontrol/cashcontrol_card.php?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permforcashfence);
414print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'cash-register', 0, $newcardbutton,
'', $limit, 0, 0, 1);
417$topicmail =
"SendCashControlRef";
418$modelmail =
"cashcontrol";
420$trackid =
'cashfence'.$object->id;
421include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
425 foreach ($fieldstosearchall as $key => $val) {
426 $fieldstosearchall[$key] = $langs->trans($val);
427 $setupstring .= $key.
"=".$val.
";";
429 print
'<!-- Search done like if BOOKCAL_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
430 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>'.
"\n";
438$parameters = array();
439$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
440if (empty($reshook)) {
441 $moreforfilter .= $hookmanager->resPrint;
443 $moreforfilter = $hookmanager->resPrint;
446if (!empty($moreforfilter)) {
447 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
448 print $moreforfilter;
452$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
453$selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
454$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
456print
'<div class="div-table-responsive">';
457print
'<table class="tagtable nobottomiftotal noborder liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
462print
'<tr class="liste_titre">';
465 print
'<td class="liste_titre maxwidthsearch">';
466 $searchpicto = $form->showFilterButtons(
'left');
470foreach (
$object->fields as $key => $val) {
472 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
473 if ($key ==
'status') {
474 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
475 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
476 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
477 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
478 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
479 } 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'])) {
480 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
482 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
483 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
484 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
485 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);
486 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
487 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
488 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
489 print
'<div class="nowrap">';
490 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 class="nowrap">';
493 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
495 } elseif ($key ==
'lang') {
496 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
498 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, array(), 1, 0, 0,
'minwidth100imp maxwidth125', 2);
500 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] :
'').
'">';
506include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
509$parameters = array(
'arrayfields'=>$arrayfields);
510$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object);
511print $hookmanager->resPrint;
514 print
'<td class="liste_titre maxwidthsearch">';
515 $searchpicto = $form->showFilterButtons();
522$totalarray = array();
523$totalarray[
'nbfield'] = 0;
527print
'<tr class="liste_titre">';
530 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
531 $totalarray[
'nbfield']++;
533foreach (
$object->fields as $key => $val) {
534 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
535 if ($key ==
'status') {
536 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
537 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
538 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
539 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
540 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
541 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
542 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
544 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
545 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
'')).
"\n";
546 $totalarray[
'nbfield']++;
550include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
552$parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder,
'totalarray'=>&$totalarray);
553$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object);
554print $hookmanager->resPrint;
557 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
558 $totalarray[
'nbfield']++;
564$needToFetchEachLine = 0;
565if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
566 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
567 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
568 $needToFetchEachLine++;
577$savnbfield = $totalarray[
'nbfield'];
578$totalarray = array();
579$totalarray[
'nbfield'] = 0;
580while ($i < ($limit ? min($num, $limit) : $num)) {
581 $obj = $db->fetch_object($resql);
587 $object->setVarsFromFetchObj($obj);
590 if ($mode ==
'kanban') {
592 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
593 print
'<div class="box-flex-container kanban">';
596 $object->posmodule = $obj->posmodule;
598 $object->cheque = $obj->cheque;
600 $object->opening = $obj->opening;
601 $object->year_close = $obj->year_close;
605 if ($massactionbutton || $massaction) {
607 if (in_array(
$object->id, $arrayofselected)) {
611 print
$object->getKanbanView(
'', array(
'selected' => $selected));
612 if ($i == (min($num, $limit) - 1)) {
619 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
623 print
'<td class="nowrap center">';
624 if ($massactionbutton || $massaction) {
626 if (in_array(
$object->id, $arrayofselected)) {
629 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
634 foreach (
$object->fields as $key => $val) {
635 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
636 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
637 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
638 } elseif ($key ==
'status') {
639 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
642 if (in_array($val[
'type'], array(
'timestamp'))) {
643 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
644 } elseif ($key ==
'ref') {
645 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
648 if (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'rowid',
'status')) && empty($val[
'arrayofkeyval'])) {
649 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
653 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
654 print
'<td'.($cssforfield ?
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ?
' classfortooltip' :
'').
'"' :
'');
655 if (preg_match(
'/tdoverflow/', $cssforfield) && !is_numeric(
$object->$key)) {
656 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
659 if ($key ==
'status') {
660 print
$object->getLibStatut(5);
661 } elseif ($key ==
'rowid') {
668 $totalarray[
'nbfield']++;
670 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
672 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
674 if (!isset($totalarray[
'val'])) {
675 $totalarray[
'val'] = array();
677 if (!isset($totalarray[
'val'][
't.'.$key])) {
678 $totalarray[
'val'][
't.'.$key] = 0;
680 $totalarray[
'val'][
't.'.$key] +=
$object->$key;
685 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
687 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
688 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object);
689 print $hookmanager->resPrint;
692 print
'<td class="nowrap center">';
693 if ($massactionbutton || $massaction) {
695 if (in_array(
$object->id, $arrayofselected)) {
698 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
703 $totalarray[
'nbfield']++;
712include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
718 foreach ($arrayfields as $key => $val) {
719 if (!empty($val[
'checked'])) {
723 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
728$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
729$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
730print $hookmanager->resPrint;
732print
'</table>'.
"\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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)
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.