25require
'../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/bom/class/bom.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
34require_once __DIR__.
'/class/mo.class.php';
40$langs->loadLangs(array(
"mrp",
"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') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
50$backtopage =
GETPOST(
'backtopage',
'alpha');
51$optioncss =
GETPOST(
'optioncss',
'aZ');
52$mode =
GETPOST(
'mode',
'alpha');
58$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
59$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
61if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
65$offset = $limit * $page;
74$diroutputmassaction = $conf->mrp->dir_output.
'/temp/massgeneration/'.$user->id;
75$hookmanager->initHooks(array($contextpage));
78$extrafields->fetch_name_optionals_label(
$object->table_element);
80$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
91$search_all = trim(
GETPOST(
'search_all',
'alphanohtml') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml'));
93foreach (
$object->fields as $key => $val) {
94 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
95 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
97 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
104$fieldstosearchall = array();
105foreach (
$object->fields as $key => $val) {
106 if (!empty($val[
'searchall'])) {
107 $fieldstosearchall[
't.'.$key] = $val[
'label'];
112$arrayfields = array();
113foreach (
$object->fields as $key => $val) {
115 if (!empty($val[
'visible'])) {
116 $visible = (int)
dol_eval($val[
'visible'], 1);
117 $arrayfields[
't.'.$key] = array(
118 'label'=>$val[
'label'],
119 'checked'=>(($visible < 0) ? 0 : 1),
120 'enabled'=>(abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
121 'position'=>$val[
'position'],
122 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
126 if ($key ==
'fk_parent_line') {
127 $visible = (int)
dol_eval($val[
'visible'], 1);
128 $arrayfields[
't.'.$key] = array(
129 'label'=>$val[
'label'],
130 'checked'=>(($visible <= 0) ? 0 : 1),
131 'enabled'=>(abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
132 'position'=>$val[
'position'],
133 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
138include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
143$permissiontoread = $user->hasRight(
'mrp',
'read');
144$permissiontoadd = $user->hasRight(
'mrp',
'write');
145$permissiontodelete = $user->hasRight(
'mrp',
'delete');
148if ($user->socid > 0) {
158if (
GETPOST(
'cancel',
'alpha')) {
162if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
166$parameters = array();
167$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
172if (empty($reshook)) {
174 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
177 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
178 foreach (
$object->fields as $key => $val) {
180 if ($key ==
'status') {
183 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
184 $search[$key.
'_dtstart'] =
'';
185 $search[$key.
'_dtend'] =
'';
190 $search_array_options = array();
192 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
193 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
200 $uploaddir = $conf->mrp->dir_output;
201 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
210$form =
new Form($db);
216$title = $langs->trans(
'ListOfManufacturingOrders');
224$sql .=
$object->getFieldList(
't');
226if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
227 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
228 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
"");
232$parameters = array();
233$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
234$sql .= $hookmanager->resPrint;
235$sql = preg_replace(
'/,\s*$/',
'', $sql);
239$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
240if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
241 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
243$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"mrp_production as lineparent ON t.fk_parent_line = lineparent.rowid";
244$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"mrp_mo as moparent ON lineparent.fk_mo = moparent.rowid";
245$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product as p ON t.fk_product = p.rowid";
247$parameters = array();
248$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
249$sql .= $hookmanager->resPrint;
250if (
$object->ismultientitymanaged == 1) {
251 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOST(
'search_current_entity',
'int') ? 0 : 1)).
")";
253 $sql .=
" WHERE 1 = 1";
256foreach ($search as $key => $val) {
257 if (array_key_exists($key,
$object->fields)) {
258 if ($key ==
'status' && $search[$key] == -1) {
261 if ($key ==
'fk_parent_line' && $search[$key] !=
'') {
266 if ($key ==
'status') {
273 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
274 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
279 if ($search[$key] !=
'') {
280 $sql .=
natural_search(
"t.".$db->sanitize($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
283 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
284 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
285 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
286 if (preg_match(
'/_dtstart$/', $key)) {
287 $sql .=
" AND t.".$db->sanitize($columnName).
" >= '".$db->idate($search[$key]).
"'";
289 if (preg_match(
'/_dtend$/', $key)) {
290 $sql .=
" AND t.".$db->sanitize($columnName).
" <= '".$db->idate($search[$key]).
"'";
297 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
301include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
303$parameters = array();
304$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
305$sql .= $hookmanager->resPrint;
326$nbtotalofrecords =
'';
329 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
330 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
331 $resql = $db->query($sqlforcount);
333 $objforcount = $db->fetch_object($resql);
334 $nbtotalofrecords = $objforcount->nbtotalofrecords;
339 if (($page * $limit) > $nbtotalofrecords) {
347$sql .= $db->order($sortfield, $sortorder);
349 $sql .= $db->plimit($limit + 1, $offset);
352$resql = $db->query($sql);
358$num = $db->num_rows($resql);
361if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
362 $obj = $db->fetch_object($resql);
364 header(
"Location: ".
dol_buildpath(
'/mrp/mo_card.php', 1).
'?id='.((
int) $id));
372llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'bodyforlist');
375$arrayofselected = is_array($toselect) ? $toselect : array();
379 $param .=
'&mode='.urlencode($mode);
381if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
382 $param .=
'&contextpage='.urlencode($contextpage);
384if ($limit > 0 && $limit != $conf->liste_limit) {
385 $param .=
'&limit='.((int) $limit);
387if ($optioncss !=
'') {
388 $param .=
'&optioncss='.urlencode($optioncss);
390foreach ($search as $key => $val) {
391 if (is_array($search[$key])) {
392 foreach ($search[$key] as $skey) {
394 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
397 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
398 $param .=
'&search_'.$key.
'month='.((int)
GETPOST(
'search_'.$key.
'month',
'int'));
399 $param .=
'&search_'.$key.
'day='.((int)
GETPOST(
'search_'.$key.
'day',
'int'));
400 $param .=
'&search_'.$key.
'year='.((int)
GETPOST(
'search_'.$key.
'year',
'int'));
401 } elseif ($search[$key] !=
'') {
402 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
406include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
408$parameters = array(
'param' => &$param);
409$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
410$param .= $hookmanager->resPrint;
413$arrayofmassactions = array(
419if (!empty($permissiontodelete)) {
420 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
422if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
423 $arrayofmassactions = array();
425$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
427print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
428if ($optioncss !=
'') {
429 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
431print
'<input type="hidden" name="token" value="'.newToken().
'">';
432print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
433print
'<input type="hidden" name="action" value="list">';
434print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
435print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
436print
'<input type="hidden" name="page" value="'.$page.
'">';
437print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
438print
'<input type="hidden" name="page_y" value="">';
439print
'<input type="hidden" name="mode" value="'.$mode.
'">';
442$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'));
443$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'));
445$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/mrp/mo_card.php?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
447print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'object_'.
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
450$topicmail =
"SendMoRef";
452$objecttmp =
new Mo($db);
453$trackid =
'mo'.$object->id;
454include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
457 foreach ($fieldstosearchall as $key => $val) {
458 $fieldstosearchall[$key] = $langs->trans($val);
460 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>';
468$parameters = array();
469$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
470if (empty($reshook)) {
471 $moreforfilter .= $hookmanager->resPrint;
473 $moreforfilter = $hookmanager->resPrint;
476if (!empty($moreforfilter)) {
477 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
478 print $moreforfilter;
482$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
483$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
484$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
485$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
487print
'<div class="div-table-responsive">';
488print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
493print
'<tr class="liste_titre_filter">';
496 print
'<td class="liste_titre center maxwidthsearch">';
497 $searchpicto = $form->showFilterButtons(
'left');
501foreach (
$object->fields as $key => $val) {
502 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
503 if ($key ==
'status') {
504 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
505 } elseif ($key ==
'fk_parent_line') {
506 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
507 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
508 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
509 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
510 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
511 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
512 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
514 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
515 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').
'">';
516 if ($key ==
'fk_parent_line') {
517 print
'<input type="text" class="flat maxwidth75" name="search_fk_parent_line">';
521 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
522 print $form->selectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), $val[
'notnull'], 0, 0,
'', 1, 0, 0,
'',
'maxwidth100', 1);
523 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
524 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_',
'maxwidth125', 1);
525 } elseif (!preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
526 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
527 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
528 print
'<div class="nowrap">';
529 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
531 print
'<div class="nowrap">';
532 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
539include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
542$parameters = array(
'arrayfields'=>$arrayfields);
543$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
544print $hookmanager->resPrint;
547 print
'<td class="liste_titre center maxwidthsearch">';
548 $searchpicto = $form->showFilterButtons();
554$totalarray = array();
555$totalarray[
'nbfield'] = 0;
560print
'<tr class="liste_titre">';
563 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
564 $totalarray[
'nbfield']++;
566foreach (
$object->fields as $key => $val) {
567 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
568 if ($key ==
'status') {
569 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
570 } elseif ($key ==
'fk_parent_line') {
571 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
572 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
573 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
574 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
575 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
576 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
577 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
579 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
580 if ($key ==
"fk_product") {
581 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
'p.ref',
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
'')).
"\n";
583 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
'')).
"\n";
585 $totalarray[
'nbfield']++;
589include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
591$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder);
592$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
593print $hookmanager->resPrint;
596 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
597 $totalarray[
'nbfield']++;
603$needToFetchEachLine = 0;
604if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
605 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
606 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
607 $needToFetchEachLine++;
619$savnbfield = $totalarray[
'nbfield'];
620$totalarray = array();
621$totalarray[
'nbfield'] = 0;
622$imaxinloop = ($limit ? min($num, $limit) : $num);
623while ($i < $imaxinloop) {
624 $obj = $db->fetch_object($resql);
630 $object->setVarsFromFetchObj($obj);
633 if ($mode ==
'kanban') {
635 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
636 print
'<div class="box-flex-container kanban">';
641 if ($obj->fk_bom > 0) {
642 $bom->fetch($obj->fk_bom);
644 if ($obj->fk_product > 0) {
645 $product->fetch($obj->fk_product);
650 if ($massactionbutton || $massaction) {
652 if (in_array(
$object->id, $arrayofselected)) {
656 print
$object->getKanbanView(
'', array(
'bom'=>($obj->fk_bom > 0 ? $bom : null),
'product'=>($obj->fk_product > 0 ? $product : null),
'selected' => $selected));
657 if ($i == ($imaxinloop - 1)) {
664 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
668 print
'<td class="nowrap center">';
669 if ($massactionbutton || $massaction) {
671 if (in_array(
$object->id, $arrayofselected)) {
674 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
678 $totalarray[
'nbfield']++;
682 foreach (
$object->fields as $key => $val) {
683 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
684 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
685 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
686 } elseif ($key ==
'status') {
687 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
688 } elseif ($key ==
'fk_parent_line') {
689 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
692 if (in_array($val[
'type'], array(
'timestamp'))) {
693 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
694 } elseif ($key ==
'ref') {
695 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
698 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'])) {
699 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
702 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
703 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
704 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) {
705 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
708 if ($key ==
'status') {
709 print
$object->getLibStatut(5);
710 } elseif ($key ==
'fk_parent_line') {
711 $moparent =
$object->getMoParent();
712 if (is_object($moparent)) {
713 print $moparent->getNomUrl(1);
715 } elseif ($key ==
'rowid') {
722 $totalarray[
'nbfield']++;
724 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
726 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
728 if (!isset($totalarray[
'val'])) {
729 $totalarray[
'val'] = array();
731 if (!isset($totalarray[
'val'][
't.'.$key])) {
732 $totalarray[
'val'][
't.'.$key] = 0;
734 $totalarray[
'val'][
't.'.$key] +=
$object->$key;
739 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
741 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
742 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
743 print $hookmanager->resPrint;
747 print
'<td class="nowrap center">';
748 if ($massactionbutton || $massaction) {
750 if (in_array(
$object->id, $arrayofselected)) {
753 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
757 $totalarray[
'nbfield']++;
767include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
773 foreach ($arrayfields as $key => $val) {
774 if (!empty($val[
'checked'])) {
778 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
784$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
785$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object);
786print $hookmanager->resPrint;
788print
'</table>'.
"\n";
793if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
794 $hidegeneratedfilelistifempty = 1;
795 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
796 $hidegeneratedfilelistifempty = 0;
799 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
803 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
804 $urlsource .= str_replace(
'&',
'&', $param);
806 $filedir = $diroutputmassaction;
807 $genallowed = $permissiontoread;
808 $delallowed = $permissiontoadd;
810 print $formfile->showdocuments(
'massfilesarea_mrp',
'', $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()
Empty header.
Class to manage products or services.
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_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 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...
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.