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';
 
   33$langs->loadLangs(array(
"banks", 
"other"));
 
   35$action     = 
GETPOST(
'action', 
'aZ09') ? 
GETPOST(
'action', 
'aZ09') : 
'view'; 
 
   36$massaction = 
GETPOST(
'massaction', 
'alpha'); 
 
   38$confirm    = 
GETPOST(
'confirm', 
'alpha'); 
 
   39$cancel     = 
GETPOST(
'cancel', 
'alpha'); 
 
   40$toselect   = 
GETPOST(
'toselect', 
'array'); 
 
   41$contextpage = 
GETPOST(
'contextpage', 
'aZ') ? 
GETPOST(
'contextpage', 
'aZ') : 
'cashcontrol'; 
 
   42$backtopage = 
GETPOST(
'backtopage', 
'alpha'); 
 
   43$optioncss  = 
GETPOST(
'optioncss', 
'aZ'); 
 
   44$mode       = 
GETPOST(
'mode', 
'alpha');  
 
   49$sortfield = 
GETPOST(
'sortfield', 
'aZ09comma');
 
   50$sortorder = 
GETPOST(
'sortorder', 
'aZ09comma');
 
   52if (empty($page) || $page < 0 || 
GETPOST(
'button_search', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha') || (empty($toselect) && $massaction === 
'0')) {
 
   56$offset = $limit * $page;
 
   66$hookmanager->initHooks(array(
'cashcontrol')); 
 
   69$extrafields->fetch_name_optionals_label(
$object->table_element);
 
   72$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element, 
'', 
'search_');
 
   77  $sortfield = 
"t.".key(
$object->fields); 
 
   84$search_all = 
GETPOST(
'search_all', 
'alphanohtml') ? 
GETPOST(
'search_all', 
'alphanohtml') : 
GETPOST(
'sall', 
'alphanohtml');
 
   86foreach (
$object->fields as $key => $val) {
 
   87  if (
GETPOST(
'search_'.$key, 
'alpha') !== 
'') {
 
   88    $search[$key] = 
GETPOST(
'search_'.$key, 
'alpha');
 
   90  if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
 
   97$fieldstosearchall = array();
 
   98foreach (
$object->fields as $key => $val) {
 
   99  if (!empty($val[
'searchall'])) {
 
  100    $fieldstosearchall[
't.'.$key] = $val[
'label'];
 
  105$arrayfields = array();
 
  106foreach (
$object->fields as $key => $val) {
 
  108  if (!empty($val[
'visible'])) {
 
  109    $visible = (int) 
dol_eval($val[
'visible'], 1);
 
  110    $arrayfields[
't.'.$key] = array(
 
  111      'label'=>$val[
'label'],
 
  112      'checked'=>(($visible < 0) ? 0 : 1),
 
  113      'enabled'=>(abs($visible) != 3 && (bool) 
dol_eval($val[
'enabled'], 1)),
 
  114      'position'=>$val[
'position'],
 
  115      'help'=> isset($val[
'help']) ? $val[
'help'] : 
'' 
  120include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
 
  125$permissiontoread = ($user->hasRight(
'cashdesk', 
'run') || $user->hasRight(
'takepos', 
'run'));
 
  126$permissiontoadd = ($user->hasRight(
'cashdesk', 
'run') || $user->hasRight(
'takepos', 
'run'));
 
  127$permissiontodelete = ($user->hasRight(
'cashdesk', 
'run') || $user->hasRight(
'takepos', 
'run'));
 
  130if ($user->socid > 0) { 
 
  134if (!$user->hasRight(
'cashdesk', 
'run') && !$user->hasRight(
'takepos', 
'run')) {
 
  143if (
GETPOST(
'cancel', 
'alpha')) {
 
  147if (!
GETPOST(
'confirmmassaction', 
'alpha') && $massaction != 
'presend' && $massaction != 
'confirm_presend') {
 
  151$parameters = array();
 
  152$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action); 
 
  157if (empty($reshook)) {
 
  159  include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
 
  162  if (
GETPOST(
'button_removefilter_x', 
'alpha') || 
GETPOST(
'button_removefilter.x', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha')) { 
 
  163    foreach (
$object->fields as $key => $val) {
 
  165      if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
 
  166        $search[$key.
'_dtstart'] = 
'';
 
  167        $search[$key.
'_dtend'] = 
'';
 
  171    $search_array_options = array();
 
  173  if (
GETPOST(
'button_removefilter_x', 
'alpha') || 
GETPOST(
'button_removefilter.x', 
'alpha') || 
GETPOST(
'button_removefilter', 
'alpha')
 
  174    || 
GETPOST(
'button_search_x', 
'alpha') || 
GETPOST(
'button_search.x', 
'alpha') || 
GETPOST(
'button_search', 
'alpha')) {
 
  179  $objectclass = 
'CashControl';
 
  180  $objectlabel = 
'CashControl';
 
  181  $uploaddir = $conf->bank->dir_output;
 
  182  include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
 
  191$form = 
new Form($db);
 
  197$title = $langs->trans(
'CashControl');
 
  204$sql .= 
$object->getFieldList(
't');
 
  206if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
 
  207  foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
 
  208    $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] != 
'separate' ? 
", ef.".$key.
" as options_".$key : 
'');
 
  212$parameters = array();
 
  213$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object); 
 
  214$sql .= $hookmanager->resPrint;
 
  215$sql = preg_replace(
'/,\s*$/', 
'', $sql);
 
  219$sql .= 
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
 
  220if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
 
  221  $sql .= 
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
 
  224$parameters = array();
 
  225$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object); 
 
  226$sql .= $hookmanager->resPrint;
 
  227if (
$object->ismultientitymanaged == 1) {
 
  228  $sql .= 
" WHERE t.entity IN (".getEntity(
$object->element).
")";
 
  230  $sql .= 
" WHERE 1 = 1";
 
  232foreach ($search as $key => $val) {
 
  233  if (array_key_exists($key, 
$object->fields)) {
 
  234    if ($key == 
'status' && $search[$key] == -1) {
 
  238    if ((strpos(
$object->fields[$key][
'type'], 
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'], 
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
 
  239      if ($search[$key] == 
'-1' || ($search[$key] === 
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0', 
$object->fields[$key][
'arrayofkeyval'])))) {
 
  244    if ($search[$key] != 
'') {
 
  245      $sql .= 
natural_search(
"t.".$db->escape($key), $search[$key], (($key == 
'status') ? 2 : $mode_search));
 
  248    if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] != 
'') {
 
  249      $columnName=preg_replace(
'/(_dtstart|_dtend)$/', 
'', $key);
 
  250      if (preg_match(
'/^(date|timestamp|datetime)/', 
$object->fields[$columnName][
'type'])) {
 
  251        if (preg_match(
'/_dtstart$/', $key)) {
 
  252          $sql .= 
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
 
  254        if (preg_match(
'/_dtend$/', $key)) {
 
  255          $sql .= 
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
 
  262  $sql .= 
natural_search(array_keys($fieldstosearchall), $search_all);
 
  266include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
 
  268$parameters = array();
 
  269$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object); 
 
  270$sql .= $hookmanager->resPrint;
 
  292$nbtotalofrecords = 
'';
 
  295  $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields, 
'/').
'/', 
'SELECT COUNT(*) as nbtotalofrecords', $sql);
 
  296  $sqlforcount = preg_replace(
'/GROUP BY .*$/', 
'', $sqlforcount);
 
  297  $resql = $db->query($sqlforcount);
 
  299    $objforcount = $db->fetch_object($resql);
 
  300    $nbtotalofrecords = $objforcount->nbtotalofrecords;
 
  305  if (($page * $limit) > $nbtotalofrecords) { 
 
  313$sql .= $db->order($sortfield, $sortorder);
 
  315  $sql .= $db->plimit($limit + 1, $offset);
 
  318$resql = $db->query($sql);
 
  324$num = $db->num_rows($resql);
 
  328if ($num == 1 && 
getDolGlobalString(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
 
  329  $obj = $db->fetch_object($resql);
 
  331  header(
"Location: ".DOL_URL_ROOT.
'/compta/cashcontrol/cashcontrol_card.php?id='.$id);
 
  339llxHeader(
'', $title, $help_url, 
'', 0, 0, 
'', 
'', 
'', 
'classforhorizontalscrolloftabs');
 
  341$arrayofselected = is_array($toselect) ? $toselect : array();
 
  345  $param .= 
'&mode='.urlencode($mode);
 
  347if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
 
  348  $param .= 
'&contextpage='.urlencode($contextpage);
 
  350if ($limit > 0 && $limit != $conf->liste_limit) {
 
  351  $param .= 
'&limit='.((int) $limit);
 
  353foreach ($search as $key => $val) {
 
  354  if (is_array($search[$key])) {
 
  355    foreach ($search[$key] as $skey) {
 
  357        $param .= 
'&search_'.$key.
'[]='.urlencode($skey);
 
  360  } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
 
  361    $param .= 
'&search_'.$key.
'month='.(
GETPOSTINT(
'search_'.$key.
'month'));
 
  362    $param .= 
'&search_'.$key.
'day='.(
GETPOSTINT(
'search_'.$key.
'day'));
 
  363    $param .= 
'&search_'.$key.
'year='.(
GETPOSTINT(
'search_'.$key.
'year'));
 
  364  } elseif ($search[$key] != 
'') {
 
  365    $param .= 
'&search_'.$key.
'='.urlencode($search[$key]);
 
  368if ($optioncss != 
'') {
 
  369  $param .= 
'&optioncss='.urlencode($optioncss);
 
  372include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
 
  374$parameters = array(
'param' => &$param);
 
  375$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object); 
 
  376$param .= $hookmanager->resPrint;
 
  379$arrayofmassactions = array();
 
  380if (!empty($permissiontodelete)) {
 
  381  $arrayofmassactions[
'predelete'] = 
img_picto(
'', 
'delete', 
'class="pictofixedwidth"').$langs->trans(
"Delete");
 
  383$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
 
  385print 
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
 
  386if ($optioncss != 
'') {
 
  387  print 
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
 
  389print 
'<input type="hidden" name="token" value="'.newToken().
'">';
 
  390print 
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
 
  391print 
'<input type="hidden" name="action" value="list">';
 
  392print 
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
 
  393print 
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
 
  394print 
'<input type="hidden" name="page" value="'.$page.
'">';
 
  395print 
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
 
  396print 
'<input type="hidden" name="mode" value="'.$mode.
'">';
 
  398$permforcashfence = 1;
 
  401$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'));
 
  402$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'));
 
  404$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);
 
  406print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 
'cash-register', 0, $newcardbutton, 
'', $limit, 0, 0, 1);
 
  409$topicmail = 
"SendCashControlRef";
 
  410$modelmail = 
"cashcontrol";
 
  412$trackid = 
'cashfence'.$object->id;
 
  413include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
 
  417  foreach ($fieldstosearchall as $key => $val) {
 
  418    $fieldstosearchall[$key] = $langs->trans($val);
 
  419    $setupstring .= $key.
"=".$val.
";";
 
  421  print 
'<!-- Search done like if BOOKCAL_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
 
  422  print 
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>'.
"\n";
 
  430$parameters = array();
 
  431$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action); 
 
  432if (empty($reshook)) {
 
  433  $moreforfilter .= $hookmanager->resPrint;
 
  435  $moreforfilter = $hookmanager->resPrint;
 
  438if (!empty($moreforfilter)) {
 
  439  print 
'<div class="liste_titre liste_titre_bydiv centpercent">';
 
  440  print $moreforfilter;
 
  444$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
 
  445$selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage, 
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN')); 
 
  446$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) : 
'');
 
  448print 
'<div class="div-table-responsive">'; 
 
  449print 
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ? 
" listwithfilterbefore" : 
"").
'">'.
"\n";
 
  454print 
'<tr class="liste_titre">';
 
  457  print 
'<td class="liste_titre maxwidthsearch">';
 
  458  $searchpicto = $form->showFilterButtons(
'left');
 
  462foreach (
$object->fields as $key => $val) {
 
  463  $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ? 
'' : $val[
'css']) : $val[
'csslist']);
 
  464  if ($key == 
'status') {
 
  465    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  466  } elseif (in_array($val[
'type'], array(
'date', 
'datetime', 
'timestamp'))) {
 
  467    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  468  } elseif (in_array($val[
'type'], array(
'timestamp'))) {
 
  469    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  470  } 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'])) {
 
  471    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'right';
 
  473  if (!empty($arrayfields[
't.'.$key][
'checked'])) {
 
  474    print 
'<td class="liste_titre'.($cssforfield ? 
' '.$cssforfield : 
'').
'">';
 
  475    if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
 
  476      print $form->selectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] : 
''), $val[
'notnull'], 0, 0, 
'', 1, 0, 0, 
'', 
'maxwidth100'.($key == 
'status' ? 
' search_status onrightofpage' : 
''), 1);
 
  477    } elseif ((strpos($val[
'type'], 
'integer:') === 0) || (strpos($val[
'type'], 
'sellist:')=== 0)) {
 
  478      print 
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] : 
''), 
'', 
'', 
'search_', 
'maxwidth125', 1);
 
  479    } elseif (!preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
 
  480      print 
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] : 
'').
'">';
 
  481    } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
 
  482      print 
'<div class="nowrap">';
 
  483      print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] : 
'', 
"search_".$key.
"_dtstart", 0, 0, 1, 
'', 1, 0, 0, 
'', 
'', 
'', 
'', 1, 
'', $langs->trans(
'From'));
 
  485      print 
'<div class="nowrap">';
 
  486      print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] : 
'', 
"search_".$key.
"_dtend", 0, 0, 1, 
'', 1, 0, 0, 
'', 
'', 
'', 
'', 1, 
'', $langs->trans(
'to'));
 
  493include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
 
  496$parameters = array(
'arrayfields'=>$arrayfields);
 
  497$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object); 
 
  498print $hookmanager->resPrint;
 
  501  print 
'<td class="liste_titre maxwidthsearch">';
 
  502  $searchpicto = $form->showFilterButtons();
 
  509$totalarray = array();
 
  510$totalarray[
'nbfield'] = 0;
 
  514print 
'<tr class="liste_titre">';
 
  517  print 
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"], 
'', 
'', 
'', 
'', $sortfield, $sortorder, 
'center maxwidthsearch ').
"\n";
 
  518  $totalarray[
'nbfield']++;
 
  520foreach (
$object->fields as $key => $val) {
 
  521  $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ? 
'' : $val[
'css']) : $val[
'csslist']);
 
  522  if ($key == 
'status') {
 
  523    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  524  } elseif (in_array($val[
'type'], array(
'date', 
'datetime', 
'timestamp'))) {
 
  525    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  526  } elseif (in_array($val[
'type'], array(
'timestamp'))) {
 
  527    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  528  } elseif (in_array($val[
'type'], array(
'double(24,8)', 
'double(6,3)', 
'integer', 
'real', 
'price')) && $val[
'label'] != 
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
 
  529    $cssforfield .= ($cssforfield ? 
' ' : 
'').
'right';
 
  531  if (!empty($arrayfields[
't.'.$key][
'checked'])) {
 
  532    print 
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'], 
't.'.$key, 
'', $param, ($cssforfield ? 
'class="'.$cssforfield.
'"' : 
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' : 
'')).
"\n";
 
  533    $totalarray[
'nbfield']++;
 
  537include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
 
  539$parameters = array(
'arrayfields'=>$arrayfields, 
'param'=>$param, 
'sortfield'=>$sortfield, 
'sortorder'=>$sortorder, 
'totalarray'=>&$totalarray);
 
  540$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object); 
 
  541print $hookmanager->resPrint;
 
  544  print 
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"], 
'', 
'', 
'', 
'', $sortfield, $sortorder, 
'center maxwidthsearch ').
"\n";
 
  545  $totalarray[
'nbfield']++;
 
  551$needToFetchEachLine = 0;
 
  552if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
 
  553  foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
 
  554    if (!is_null($val) && preg_match(
'/\$object/', $val)) {
 
  555      $needToFetchEachLine++; 
 
  564$savnbfield = $totalarray[
'nbfield'];
 
  565$totalarray = array();
 
  566$totalarray[
'nbfield'] = 0;
 
  567while ($i < ($limit ? min($num, $limit) : $num)) {
 
  568  $obj = $db->fetch_object($resql);
 
  574  $object->setVarsFromFetchObj($obj);
 
  577  if ($mode == 
'kanban') {
 
  579      print 
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
 
  580      print 
'<div class="box-flex-container kanban">';
 
  583    $object->posmodule = $obj->posmodule;
 
  585    $object->opening = $obj->opening;
 
  586    $object->year_close = $obj->year_close;
 
  587    $object->cheque = $obj->cheque;
 
  591    if ($massactionbutton || $massaction) { 
 
  593      if (in_array(
$object->id, $arrayofselected)) {
 
  597    print 
$object->getKanbanView(
'', array(
'selected' => $selected));
 
  598    if ($i == (min($num, $limit) - 1)) {
 
  605    print 
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
 
  609      print 
'<td class="nowrap center">';
 
  610      if ($massactionbutton || $massaction) {   
 
  612        if (in_array(
$object->id, $arrayofselected)) {
 
  615        print 
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ? 
' checked="checked"' : 
'').
'>';
 
  620    foreach (
$object->fields as $key => $val) {
 
  621      $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ? 
'' : $val[
'css']) : $val[
'csslist']);
 
  622      if (in_array($val[
'type'], array(
'date', 
'datetime', 
'timestamp'))) {
 
  623        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  624      } elseif ($key == 
'status') {
 
  625        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'center';
 
  628      if (in_array($val[
'type'], array(
'timestamp'))) {
 
  629        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  630      } elseif ($key == 
'ref') {
 
  631        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'nowrap';
 
  634      if (in_array($val[
'type'], array(
'double(24,8)', 
'double(6,3)', 
'integer', 
'real', 
'price')) && !in_array($key, array(
'rowid', 
'status')) && empty($val[
'arrayofkeyval'])) {
 
  635        $cssforfield .= ($cssforfield ? 
' ' : 
'').
'right';
 
  639      if (!empty($arrayfields[
't.'.$key][
'checked'])) {
 
  640        print 
'<td'.($cssforfield ? 
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ? 
' classfortooltip' : 
'').
'"' : 
'');
 
  641        if (preg_match(
'/tdoverflow/', $cssforfield) && !is_numeric(
$object->$key)) {
 
  642          print 
' title="'.dol_escape_htmltag(
$object->$key).
'"';
 
  645        if ($key == 
'status') {
 
  646          print 
$object->getLibStatut(5);
 
  647        } elseif ($key == 
'rowid') {
 
  654          $totalarray[
'nbfield']++;
 
  656        if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
 
  658            $totalarray[
'pos'][$totalarray[
'nbfield']] = 
't.'.$key;
 
  660          if (!isset($totalarray[
'val'])) {
 
  661            $totalarray[
'val'] = array();
 
  663          if (!isset($totalarray[
'val'][
't.'.$key])) {
 
  664            $totalarray[
'val'][
't.'.$key] = 0;
 
  666          $totalarray[
'val'][
't.'.$key] += 
$object->$key;
 
  671    include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
 
  673    $parameters = array(
'arrayfields'=>$arrayfields, 
'object'=>$object, 
'obj'=>$obj, 
'i'=>$i, 
'totalarray'=>&$totalarray);
 
  674    $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object); 
 
  675    print $hookmanager->resPrint;
 
  678      print 
'<td class="nowrap center">';
 
  679      if ($massactionbutton || $massaction) {   
 
  681        if (in_array(
$object->id, $arrayofselected)) {
 
  684        print 
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ? 
' checked="checked"' : 
'').
'>';
 
  689      $totalarray[
'nbfield']++;
 
  698include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
 
  704  foreach ($arrayfields as $key => $val) {
 
  705    if (!empty($val[
'checked'])) {
 
  709  print 
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
 
  714$parameters = array(
'arrayfields'=>$arrayfields, 
'sql'=>$sql);
 
  715$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action); 
 
  716print $hookmanager->resPrint;
 
  718print 
'</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()
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...
 
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.
 
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
 
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
 
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
 
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 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...
 
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.