25 require
'../main.inc.php';
27 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
28 require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
29 require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
32 require_once __DIR__.
'/class/mo.class.php';
38 $langs->loadLangs(array(
"mrp",
"other"));
40 $action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
41 $massaction =
GETPOST(
'massaction',
'alpha');
42 $show_files =
GETPOST(
'show_files',
'int');
43 $confirm =
GETPOST(
'confirm',
'alpha');
44 $cancel =
GETPOST(
'cancel',
'alpha');
45 $toselect =
GETPOST(
'toselect',
'array');
46 $contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'molist';
47 $backtopage =
GETPOST(
'backtopage',
'alpha');
48 $optioncss =
GETPOST(
'optioncss',
'aZ');
53 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
54 $sortfield =
GETPOST(
'sortfield',
'aZ09comma');
55 $sortorder =
GETPOST(
'sortorder',
'aZ09comma');
57 if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
61 $offset = $limit * $page;
62 $pageprev = $page - 1;
63 $pagenext = $page + 1;
68 $object =
new Mo($db);
70 $diroutputmassaction = $conf->mrp->dir_output.
'/temp/massgeneration/'.$user->id;
71 $hookmanager->initHooks(array(
'molist'));
74 $extrafields->fetch_name_optionals_label($object->table_element);
76 $search_array_options = $extrafields->getOptionalsFromPost($object->table_element,
'',
'search_');
87 $search_all =
GETPOST(
'search_all',
'alphanohtml') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml');
89 foreach ($object->fields as $key => $val) {
90 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
91 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
93 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
94 $search[$key.
'_dtstart'] =
dol_mktime(0, 0, 0,
GETPOST(
'search_'.$key.
'_dtstartmonth',
'int'),
GETPOST(
'search_'.$key.
'_dtstartday',
'int'),
GETPOST(
'search_'.$key.
'_dtstartyear',
'int'));
95 $search[$key.
'_dtend'] =
dol_mktime(23, 59, 59,
GETPOST(
'search_'.$key.
'_dtendmonth',
'int'),
GETPOST(
'search_'.$key.
'_dtendday',
'int'),
GETPOST(
'search_'.$key.
'_dtendyear',
'int'));
100 $fieldstosearchall = array();
101 foreach ($object->fields as $key => $val) {
102 if (!empty($val[
'searchall'])) {
103 $fieldstosearchall[
't.'.$key] = $val[
'label'];
108 $arrayfields = array();
109 foreach ($object->fields as $key => $val) {
111 if (!empty($val[
'visible'])) {
112 $visible = (int)
dol_eval($val[
'visible'], 1, 1,
'1');
113 $arrayfields[
't.'.$key] = array(
114 'label'=>$val[
'label'],
115 'checked'=>(($visible < 0) ? 0 : 1),
116 'enabled'=>($visible != 3 &&
dol_eval($val[
'enabled'], 1, 1,
'1')),
117 'position'=>$val[
'position'],
118 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
122 if ($key ==
'fk_parent_line') {
123 $visible = (int)
dol_eval($val[
'visible'], 1);
124 $arrayfields[
't.'.$key] = array(
125 'label'=>$val[
'label'],
126 'checked'=>(($visible <= 0) ? 0 : 1),
127 'enabled'=>($visible != 3 &&
dol_eval($val[
'enabled'], 1)),
128 'position'=>$val[
'position'],
129 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
134 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
139 $permissiontoread = $user->rights->mrp->read;
140 $permissiontoadd = $user->rights->mrp->write;
141 $permissiontodelete = $user->rights->mrp->delete;
144 if ($user->socid > 0) {
155 if (
GETPOST(
'cancel',
'alpha')) {
159 if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
163 $parameters = array();
164 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
169 if (empty($reshook)) {
171 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
174 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
175 foreach ($object->fields as $key => $val) {
177 if ($key ==
'status') {
180 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
181 $search[$key.
'_dtstart'] =
'';
182 $search[$key.
'_dtend'] =
'';
186 $search_array_options = array();
188 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
189 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
196 $uploaddir = $conf->mrp->dir_output;
197 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
212 $title = $langs->trans(
'ListOfManufacturingOrders');
220 $sql .= $object->getFieldList(
't');
222 if (!empty($extrafields->attributes[$object->table_element][
'label'])) {
223 foreach ($extrafields->attributes[$object->table_element][
'label'] as $key => $val) {
224 $sql .= ($extrafields->attributes[$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
"");
228 $parameters = array();
229 $reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object);
230 $sql .= preg_replace(
'/^,/',
'', $hookmanager->resPrint);
231 $sql = preg_replace(
'/,\s*$/',
'', $sql);
235 $sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
236 if (isset($extrafields->attributes[$object->table_element][
'label']) && is_array($extrafields->attributes[$object->table_element][
'label']) && count($extrafields->attributes[$object->table_element][
'label'])) {
237 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
239 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"mrp_production as lineparent ON t.fk_parent_line = lineparent.rowid";
240 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"mrp_mo as moparent ON lineparent.fk_mo = moparent.rowid";
242 $parameters = array();
243 $reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object);
244 $sql .= $hookmanager->resPrint;
245 if ($object->ismultientitymanaged == 1) {
246 $sql .=
" WHERE t.entity IN (".getEntity($object->element).
")";
248 $sql .=
" WHERE 1 = 1";
251 foreach ($search as $key => $val) {
252 if (array_key_exists($key, $object->fields)) {
253 if ($key ==
'status' && $search[$key] == -1) {
256 if ($key ==
'fk_parent_line' && $search[$key] !=
'') {
261 if ($key ==
'status') {
267 $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
268 if ((strpos($object->fields[$key][
'type'],
'integer:') === 0) || (strpos($object->fields[$key][
'type'],
'sellist:') === 0) || !empty($object->fields[$key][
'arrayofkeyval'])) {
269 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty($object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0', $object->fields[$key][
'arrayofkeyval'])))) {
274 if ($search[$key] !=
'') {
275 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
278 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
279 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
280 if (preg_match(
'/^(date|timestamp|datetime)/', $object->fields[$columnName][
'type'])) {
281 if (preg_match(
'/_dtstart$/', $key)) {
282 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
284 if (preg_match(
'/_dtend$/', $key)) {
285 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
292 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
296 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
298 $parameters = array();
299 $reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object);
300 $sql .= $hookmanager->resPrint;
322 if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
324 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
325 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
326 $resql = $db->query($sqlforcount);
328 $objforcount = $db->fetch_object(
$resql);
342 $sql .= $db->order($sortfield, $sortorder);
344 $sql .= $db->plimit($limit + 1, $offset);
347 $resql = $db->query($sql);
353 $num = $db->num_rows(
$resql);
356 if ($num == 1 && !empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && $search_all && !$page) {
357 $obj = $db->fetch_object(
$resql);
359 header(
"Location: ".
dol_buildpath(
'/mrp/mo_card.php', 1).
'?id='.$id);
370 $arrayofselected = is_array($toselect) ? $toselect : array();
373 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
374 $param .=
'&contextpage='.urlencode($contextpage);
376 if ($limit > 0 && $limit != $conf->liste_limit) {
377 $param .=
'&limit='.urlencode($limit);
379 foreach ($search as $key => $val) {
380 if (is_array($search[$key]) && count($search[$key])) {
381 foreach ($search[$key] as $skey) {
383 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
386 } elseif ($search[$key] !=
'') {
387 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
390 if ($optioncss !=
'') {
391 $param .=
'&optioncss='.urlencode($optioncss);
394 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
396 $parameters = array();
397 $reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object);
398 $param .= $hookmanager->resPrint;
401 $arrayofmassactions = array(
407 if ($permissiontodelete) {
408 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
410 if (
GETPOST(
'nomassaction',
'int') || in_array($massaction, array(
'presend',
'predelete'))) {
411 $arrayofmassactions = array();
413 $massactionbutton =
$form->selectMassAction(
'', $arrayofmassactions);
415 print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
416 if ($optioncss !=
'') {
417 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
419 print
'<input type="hidden" name="token" value="'.newToken().
'">';
420 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
421 print
'<input type="hidden" name="action" value="list">';
422 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
423 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
424 print
'<input type="hidden" name="page" value="'.$page.
'">';
425 print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
427 $newcardbutton =
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/mrp/mo_card.php?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
429 print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num,
$nbtotalofrecords,
'object_'.$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
432 $topicmail =
"SendMoRef";
434 $objecttmp =
new Mo($db);
435 $trackid =
'mo'.$object->id;
436 include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
439 foreach ($fieldstosearchall as $key => $val) {
440 $fieldstosearchall[$key] = $langs->trans($val);
442 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).join(
', ', $fieldstosearchall).
'</div>';
450 $parameters = array();
451 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object);
452 if (empty($reshook)) {
453 $moreforfilter .= $hookmanager->resPrint;
455 $moreforfilter = $hookmanager->resPrint;
458 if (!empty($moreforfilter)) {
459 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
460 print $moreforfilter;
464 $varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
465 $selectedfields =
$form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN',
''));
466 $selectedfields .= (count($arrayofmassactions) ?
$form->showCheckAddButtons(
'checkforselect', 1) :
'');
468 print
'<div class="div-table-responsive">';
469 print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
474 print
'<tr class="liste_titre">';
477 print
'<td class="liste_titre maxwidthsearch">';
478 $searchpicto =
$form->showFilterButtons(
'left');
482 foreach ($object->fields as $key => $val) {
483 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
484 if ($key ==
'status') {
485 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
486 } elseif ($key ==
'fk_parent_line') {
487 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
488 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
489 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
490 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
491 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
492 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
493 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
495 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
496 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').
'">';
497 if ($key ==
'fk_parent_line') {
498 print
'<input type="text" class="flat maxwidth75" name="search_fk_parent_line">';
502 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
503 print
$form->selectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), $val[
'notnull'], 0, 0,
'', 1, 0, 0,
'',
'maxwidth100', 1);
504 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
505 print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_',
'maxwidth125', 1);
506 } elseif (!preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
507 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
508 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
509 print
'<div class="nowrap">';
510 print
$form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
512 print
'<div class="nowrap">';
513 print
$form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
520 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
523 $parameters = array(
'arrayfields'=>$arrayfields);
524 $reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object);
525 print $hookmanager->resPrint;
528 print
'<td class="liste_titre maxwidthsearch">';
529 $searchpicto =
$form->showFilterButtons();
538 print
'<tr class="liste_titre">';
541 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
543 foreach ($object->fields as $key => $val) {
544 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
545 if ($key ==
'status') {
546 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
547 } elseif ($key ==
'fk_parent_line') {
548 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
549 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
550 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
551 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
552 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
553 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
554 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
556 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
557 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
'')).
"\n";
561 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
563 $parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder);
564 $reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object);
565 print $hookmanager->resPrint;
568 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
574 $needToFetchEachLine = 0;
575 if (isset($extrafields->attributes[$object->table_element][
'computed']) && is_array($extrafields->attributes[$object->table_element][
'computed']) && count($extrafields->attributes[$object->table_element][
'computed']) > 0) {
576 foreach ($extrafields->attributes[$object->table_element][
'computed'] as $key => $val) {
577 if (preg_match(
'/\$object/', $val)) {
578 $needToFetchEachLine++;
587 $totalarray = array();
588 $totalarray[
'nbfield'] = 0;
589 while ($i < ($limit ? min($num, $limit) : $num)) {
590 $obj = $db->fetch_object(
$resql);
596 $object->setVarsFromFetchObj($obj);
599 print
'<tr class="oddeven">';
602 print
'<td class="nowrap center">';
603 if ($massactionbutton || $massaction) {
605 if (in_array($object->id, $arrayofselected)) {
608 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
612 foreach ($object->fields as $key => $val) {
613 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
614 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
615 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
616 } elseif ($key ==
'status') {
617 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
618 } elseif ($key ==
'fk_parent_line') {
619 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
622 if (in_array($val[
'type'], array(
'timestamp'))) {
623 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
624 } elseif ($key ==
'ref') {
625 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
628 if (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'rowid',
'status')) && empty($val[
'arrayofkeyval'])) {
629 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
632 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
633 print
'<td'.($cssforfield ?
' class="'.$cssforfield.
'"' :
'').
'>';
634 if ($key ==
'status') {
635 print $object->getLibStatut(5);
636 } elseif ($key ==
'fk_parent_line') {
637 $moparent = $object->getMoParent();
638 if (is_object($moparent)) print $moparent->getNomUrl(1);
639 } elseif ($key ==
'rowid') {
640 print $object->showOutputField($val, $key, $object->id,
'');
642 print $object->showOutputField($val, $key, $object->$key,
'');
646 $totalarray[
'nbfield']++;
648 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
650 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
652 if (!isset($totalarray[
'val'])) {
653 $totalarray[
'val'] = array();
655 if (!isset($totalarray[
'val'][
't.'.$key])) {
656 $totalarray[
'val'][
't.'.$key] = 0;
658 $totalarray[
'val'][
't.'.$key] += $object->$key;
663 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
665 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
666 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object);
667 print $hookmanager->resPrint;
670 print
'<td class="nowrap center">';
671 if ($massactionbutton || $massaction) {
673 if (in_array($object->id, $arrayofselected)) {
676 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
681 $totalarray[
'nbfield']++;
690 include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
696 foreach ($arrayfields as $key => $val) {
697 if (!empty($val[
'checked'])) {
701 print
'<tr><td colspan="'.$colspan.
'" class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</td></tr>';
707 $parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
708 $reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object);
709 print $hookmanager->resPrint;
711 print
'</table>'.
"\n";
714 print
'</form>'.
"\n";
717 $hidegeneratedfilelistifempty = 1;
718 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
719 $hidegeneratedfilelistifempty = 0;
722 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
726 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
727 $urlsource .= str_replace(
'&',
'&', $param);
729 $filedir = $diroutputmassaction;
730 $genallowed = $permissiontoread;
731 $delallowed = $permissiontoadd;
733 print $formfile->showdocuments(
'massfilesarea_mrp',
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.
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...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_now($mode='auto')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...
dol_eval($s, $returnvalue=0, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
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.
print_barre_liste($titre, $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.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
$nbtotalofrecords
Count total nb of records.
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.