28require
'../../../main.inc.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';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/product/stock/stocktransfer/class/stocktransfer.class.php';
44$langs->loadLangs(array(
"stocks",
"other"));
47$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
48$massaction =
GETPOST(
'massaction',
'alpha');
50$confirm =
GETPOST(
'confirm',
'alpha');
51$cancel =
GETPOST(
'cancel',
'alpha');
52$toselect =
GETPOST(
'toselect',
'array');
53$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'stocktransferlist';
54$backtopage =
GETPOST(
'backtopage',
'alpha');
55$optioncss =
GETPOST(
'optioncss',
'aZ');
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;
76$diroutputmassaction =
getMultidirOutput($object).
'/temp/massgeneration/'.$user->id;
77$hookmanager->initHooks(array(
'stocktransferlist'));
80$extrafields->fetch_name_optionals_label(
$object->table_element);
83$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
88 $sortfield =
"t.".key(
$object->fields);
95$search_all = trim(
GETPOST(
'search_all',
'alphanohtml'));
97foreach (
$object->fields as $key => $val) {
98 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
99 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
101 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
108$fieldstosearchall = array();
109foreach (
$object->fields as $key => $val) {
110 if (!empty($val[
'searchall'])) {
111 $fieldstosearchall[
't.'.$key] = $val[
'label'];
116$arrayfields = array();
117foreach (
$object->fields as $key => $val) {
119 if (!empty($val[
'visible'])) {
120 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
121 $arrayfields[
't.'.$key] = array(
122 'label' => $val[
'label'],
123 'checked' => (($visible < 0) ? 0 : 1),
124 'enabled' => (abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
125 'position' => $val[
'position'],
126 'help' => isset($val[
'help']) ? $val[
'help'] :
''
131include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
136$permissiontoread = $user->hasRight(
'stocktransfer',
'stocktransfer',
'read');
137$permissiontoadd = $user->hasRight(
'stocktransfer',
'stocktransfer',
'write');
138$permissiontodelete = $user->hasRight(
'stocktransfer',
'stocktransfer',
'delete');
141if (empty(
$conf->stocktransfer->enabled)) {
146if ($user->socid > 0) {
150if (!$permissiontoread) {
160if (
GETPOST(
'cancel',
'alpha')) {
164if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
168$parameters = array();
169$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
174if (empty($reshook)) {
176 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
179 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
180 foreach (
$object->fields as $key => $val) {
182 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
183 $search[$key.
'_dtstart'] =
'';
184 $search[$key.
'_dtend'] =
'';
188 $search_array_options = array();
190 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
191 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
196 $objectclass =
'StockTransfer';
197 $objectlabel =
'StockTransfer';
198 $uploaddir =
$conf->stocktransfer->dir_output;
199 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
208$form =
new Form($db);
212$title = $langs->trans(
'StockTransferList');
222$sql .=
$object->getFieldList(
't');
224if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
225 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
226 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
230$parameters = array();
231$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
232$sql .= $hookmanager->resPrint;
233$sql = preg_replace(
'/,\s*$/',
'', $sql);
237$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
238if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
239 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
242$parameters = array();
243$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
244$sql .= $hookmanager->resPrint;
245if (
$object->ismultientitymanaged == 1) {
246 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOSTINT(
'search_current_entity') ? 0 : 1)).
")";
248 $sql .=
" WHERE 1 = 1";
250foreach ($search as $key => $val) {
251 if (array_key_exists($key,
$object->fields)) {
252 if ($key ==
'status' && $search[$key] == -1) {
256 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
257 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
262 if ($search[$key] !=
'') {
263 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
266 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
267 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
268 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
269 if (preg_match(
'/_dtstart$/', $key)) {
270 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
272 if (preg_match(
'/_dtend$/', $key)) {
273 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
280 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
284include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
286$parameters = array();
287$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
288$sql .= $hookmanager->resPrint;
309$nbtotalofrecords =
'';
312 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
313 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
314 $resql = $db->query($sqlforcount);
316 $objforcount = $db->fetch_object($resql);
317 $nbtotalofrecords = $objforcount->nbtotalofrecords;
322 if (($page * $limit) > $nbtotalofrecords) {
330$sql .= $db->order($sortfield, $sortorder);
332 $sql .= $db->plimit($limit + 1, $offset);
335$resql = $db->query($sql);
341$num = $db->num_rows($resql);
344if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
345 $obj = $db->fetch_object($resql);
347 header(
"Location: ".
dol_buildpath(
'/product/stock/stocktransfer/stocktransfer_card.php', 1).
'?id='.$id);
355llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'bodyforlist mod-product page-stock-stocktransfer_stocktransfer_list');
372$arrayofselected = is_array($toselect) ? $toselect : array();
376 $param .=
'&mode='.urlencode($mode);
378if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
379 $param .=
'&contextpage='.urlencode($contextpage);
381if ($limit > 0 && $limit !=
$conf->liste_limit) {
382 $param .=
'&limit='.((int) $limit);
384if ($optioncss !=
'') {
385 $param .=
'&optioncss='.urlencode($optioncss);
387foreach ($search as $key => $val) {
388 if (is_array($search[$key])) {
389 foreach ($search[$key] as $skey) {
391 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
394 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
395 $param .=
'&search_'.$key.
'month='.(
GETPOSTINT(
'search_'.$key.
'month'));
396 $param .=
'&search_'.$key.
'day='.(
GETPOSTINT(
'search_'.$key.
'day'));
397 $param .=
'&search_'.$key.
'year='.(
GETPOSTINT(
'search_'.$key.
'year'));
398 } elseif ($search[$key] !=
'') {
399 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
403include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
405$parameters = array(
'param' => &$param);
406$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
407$param .= $hookmanager->resPrint;
410$arrayofmassactions = array(
416if (!empty($permissiontodelete)) {
417 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
419if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
420 $arrayofmassactions = array();
422$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
424print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
425if ($optioncss !=
'') {
426 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
428print
'<input type="hidden" name="token" value="'.newToken().
'">';
429print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
430print
'<input type="hidden" name="action" value="list">';
431print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
432print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
433print
'<input type="hidden" name="page" value="'.$page.
'">';
434print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
435print
'<input type="hidden" name="page_y" value="">';
436print
'<input type="hidden" name="mode" value="'.$mode.
'">';
439$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/product/stock/stocktransfer/stocktransfer_card.php', 1).
'?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
441print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'object_'.
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
444$topicmail =
"SendStockTransferRef";
445$modelmail =
"stocktransfer";
447$trackid =
'xxxx'.$object->id;
448include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
452 foreach ($fieldstosearchall as $key => $val) {
453 $fieldstosearchall[$key] = $langs->trans($val);
454 $setupstring .= $key.
"=".$val.
";";
456 print
'<!-- Search done like if STOCKTRANSFER_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
457 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>';
465$parameters = array();
466$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
467if (empty($reshook)) {
468 $moreforfilter .= $hookmanager->resPrint;
470 $moreforfilter = $hookmanager->resPrint;
473if (!empty($moreforfilter)) {
474 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
475 print $moreforfilter;
479$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
480$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
481$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
482$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
484print
'<div class="div-table-responsive">';
485print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
490print
'<tr class="liste_titre_filter">';
493 print
'<td class="liste_titre center maxwidthsearch">';
494 $searchpicto = $form->showFilterButtons(
'left');
498foreach (
$object->fields as $key => $val) {
499 $searchkey = empty($search[$key]) ?
'' : $search[$key];
500 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
501 if ($key ==
'status') {
502 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
503 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
504 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
505 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
506 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
507 } 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'])) {
508 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
510 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
511 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
512 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
513 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);
514 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
515 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
516 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
517 print
'<div class="nowrap">';
518 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
520 print
'<div class="nowrap">';
521 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
523 } elseif ($key ==
'lang') {
524 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
526 print $formadmin->select_language($search[$key],
'search_lang', 0,
null, 1, 0, 0,
'minwidth100imp maxwidth125', 2);
528 print
'<input type="text" class="flat maxwidth'.($val[
'type'] ==
'integer' ?
'50' :
'75').
'" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
534include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
537$parameters = array(
'arrayfields'=>$arrayfields);
538$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
539print $hookmanager->resPrint;
542 print
'<td class="liste_titre center maxwidthsearch">';
543 $searchpicto = $form->showFilterButtons();
549$totalarray = array();
550$totalarray[
'nbfield'] = 0;
554print
'<tr class="liste_titre">';
557 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
558 $totalarray[
'nbfield']++;
560foreach (
$object->fields as $key => $val) {
561 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
562 if ($key ==
'status') {
563 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
564 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
565 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
566 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
567 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
568 } 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'])) {
569 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
571 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
572 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
573 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";
574 $totalarray[
'nbfield']++;
578include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
580$parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder,
'totalarray'=>&$totalarray);
581$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
582print $hookmanager->resPrint;
585 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
586 $totalarray[
'nbfield']++;
592$needToFetchEachLine = 0;
593if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
594 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
595 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
596 $needToFetchEachLine++;
605$savnbfield = $totalarray[
'nbfield'];
606$totalarray = array();
607$totalarray[
'nbfield'] = 0;
608$imaxinloop = ($limit ? min($num, $limit) : $num);
609while ($i < $imaxinloop) {
610 $obj = $db->fetch_object($resql);
616 $object->setVarsFromFetchObj($obj);
618 if ($mode ==
'kanban') {
620 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
621 print
'<div class="box-flex-container kanban">';
625 if ($massactionbutton || $massaction) {
627 if (in_array(
$object->id, $arrayofselected)) {
632 print
$object->getKanbanView(
'', array(
'selected' => $selected));
633 if ($i == ($imaxinloop - 1)) {
640 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
644 print
'<td class="nowrap center">';
645 if ($massactionbutton || $massaction) {
647 if (in_array(
$object->id, $arrayofselected)) {
650 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
654 $totalarray[
'nbfield']++;
657 foreach (
$object->fields as $key => $val) {
658 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
659 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
660 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
661 } elseif ($key ==
'status') {
662 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
665 if (in_array($val[
'type'], array(
'timestamp'))) {
666 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
667 } elseif ($key ==
'ref') {
668 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
671 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'])) {
672 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
676 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
677 print
'<td'.($cssforfield ?
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ?
' classfortooltip' :
'').
'"' :
'');
678 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) {
679 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
682 if ($key ==
'status') {
683 print
$object->getLibStatut(5);
684 } elseif ($key ==
'rowid') {
691 $totalarray[
'nbfield']++;
693 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
695 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
697 if (!isset($totalarray[
'val'])) {
698 $totalarray[
'val'] = array();
700 if (!isset($totalarray[
'val'][
't.'.$key])) {
701 $totalarray[
'val'][
't.'.$key] = 0;
703 $totalarray[
'val'][
't.'.$key] +=
$object->$key;
708 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
710 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
711 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
712 print $hookmanager->resPrint;
715 print
'<td class="nowrap center">';
716 if ($massactionbutton || $massaction) {
718 if (in_array(
$object->id, $arrayofselected)) {
721 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
725 $totalarray[
'nbfield']++;
736include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
741 foreach ($arrayfields as $key => $val) {
742 if (!empty($val[
'checked'])) {
746 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
752$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
753$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
754print $hookmanager->resPrint;
756print
'</table>'.
"\n";
761if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
762 $hidegeneratedfilelistifempty = 1;
763 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
764 $hidegeneratedfilelistifempty = 0;
767 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
771 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
772 $urlsource .= str_replace(
'&',
'&', $param);
774 $filedir = $diroutputmassaction;
775 $genallowed = $permissiontoread;
776 $delallowed = $permissiontoadd;
778 print $formfile->showdocuments(
'massfilesarea_'.
$object->module,
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
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.
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if(!function_exists( 'utf8_encode')) if(!function_exists('utf8_decode')) if(!function_exists( 'str_starts_with')) if(!function_exists('str_ends_with')) if(!function_exists( 'str_contains')) getMultidirOutput($object, $module='', $forobject=0, $mode='output')
Return the full path of the directory where a module (or an object of a module) stores its files.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
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.