29require
'../main.inc.php';
38require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductAttribute.class.php';
42$langs->loadLangs(array(
"products",
"other"));
44$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
45$massaction =
GETPOST(
'massaction',
'alpha');
47$confirm =
GETPOST(
'confirm',
'alpha');
48$cancel =
GETPOST(
'cancel',
'alpha');
49$toselect =
GETPOST(
'toselect',
'array:int');
50$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
51$backtopage =
GETPOST(
'backtopage',
'alpha');
52$optioncss =
GETPOST(
'optioncss',
'aZ');
60$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
61$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
63if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
67$offset = $limit * $page;
74$diroutputmassaction =
$conf->variants->dir_output.
'/temp/massgeneration/'.$user->id;
75$hookmanager->initHooks(array(
'productattributelist'));
78$extrafields->fetch_name_optionals_label(
$object->table_element);
80$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
84 $sortfield =
"t.position";
91$search_all = trim(
GETPOST(
'search_all',
'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'])) {
102$search[
'nb_of_values'] =
GETPOST(
'search_nb_of_values',
'alpha');
103$search[
'nb_products'] =
GETPOST(
'search_nb_products',
'alpha');
105$fieldstosearchall = array();
107foreach (
$object->fields as $key => $val) {
108 if (!empty($val[
'searchall'])) {
109 $fieldstosearchall[
't.'.$key] = $val[
'label'];
112$parameters = array(
'fieldstosearchall' => $fieldstosearchall);
113$reshook = $hookmanager->executeHooks(
'completeFieldsToSearchAll', $parameters, $object, $action);
115 $fieldstosearchall = empty($hookmanager->resArray[
'fieldstosearchall']) ? array() : $hookmanager->resArray[
'fieldstosearchall'];
116} elseif ($reshook == 0) {
117 $fieldstosearchall = array_merge($fieldstosearchall, empty($hookmanager->resArray[
'fieldstosearchall']) ? array() : $hookmanager->resArray[
'fieldstosearchall']);
121$arrayfields = array();
122foreach (
$object->fields as $key => $val) {
124 if (!empty($val[
'visible'])) {
125 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
126 $arrayfields[
't.'.$key] = array(
127 'label' => $val[
'label'],
128 'checked' => (($visible < 0) ?
'0' :
'1'),
129 'enabled' => (
string) (int) (abs($visible) != 3 && (bool)
dol_eval((
string) $val[
'enabled'], 1)),
130 'position' => $val[
'position'],
131 'help' => isset($val[
'help']) ? $val[
'help'] :
''
135$arrayfields[
'nb_of_values'] = array(
136 'label' => $langs->trans(
'NbOfDifferentValues'),
142$arrayfields[
'nb_products'] = array(
143 'label' => $langs->trans(
'NbProducts'),
150include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
155$permissiontoread = $user->hasRight(
'variants',
'read');
156$permissiontoadd = $user->hasRight(
'variants',
'write');
157$permissiontodelete = $user->hasRight(
'variants',
'delete');
164if ($user->socid > 0) {
168if (!$permissiontoread) {
177if (
GETPOST(
'cancel',
'alpha')) {
181if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
185$parameters = array(
'arrayfields' => &$arrayfields);
186$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
191if (empty($reshook)) {
193 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
196 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
197 foreach (
$object->fields as $key => $val) {
199 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
200 $search[$key.
'_dtstart'] =
'';
201 $search[$key.
'_dtend'] =
'';
204 $search[
'nb_of_values'] =
'';
205 $search[
'nb_products'] =
'';
207 $search_array_options = array();
209 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
210 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
214 if ($action ==
'up' && $permissiontoadd) {
215 $object->attributeMoveUp($rowid);
217 header(
'Location: '.$_SERVER[
'PHP_SELF']);
219 } elseif ($action ==
'down' && $permissiontoadd) {
220 $object->attributeMoveDown($rowid);
222 header(
'Location: '.$_SERVER[
'PHP_SELF']);
227 $objectclass =
'ProductAttribute';
228 $objectlabel =
'ProductAttribute';
229 $uploaddir =
$conf->variants->dir_output;
230 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
243$title = $langs->trans(
"ProductAttributes");
251$sql =
"SELECT COUNT(DISTINCT pav.rowid) AS nb_of_values, COUNT(DISTINCT pac2v.fk_prod_combination) AS nb_products, ";
252$sql .=
$object->getFieldList(
"t");
254if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
255 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
256 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
"");
260$parameters = array();
261$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
262$sql .= $hookmanager->resPrint;
263$sql = preg_replace(
'/,\s*$/',
'', $sql);
267$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
268if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
269 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
271$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product_attribute_combination2val AS pac2v ON pac2v.fk_prod_attr = t.rowid";
272$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product_attribute_value AS pav ON pav.fk_product_attribute = t.rowid";
274$parameters = array();
275$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
276$sql .= $hookmanager->resPrint;
277if (
$object->ismultientitymanaged == 1) {
278 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOSTINT(
'search_current_entity') ? 0 : 1)).
")";
280 $sql .=
" WHERE 1 = 1";
282foreach ($search as $key => $val) {
283 if (array_key_exists($key,
$object->fields)) {
284 if ($key ==
'status' && $search[$key] == -1) {
288 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
289 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
294 if ($search[$key] !=
'') {
295 $sql .=
natural_search(
"t.".
$db->sanitize($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
298 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
299 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
300 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
301 if (preg_match(
'/_dtstart$/', $key)) {
302 $sql .=
" AND t.".$db->sanitize($columnName).
" >= '".
$db->idate($search[$key]).
"'";
304 if (preg_match(
'/_dtend$/', $key)) {
305 $sql .=
" AND t.".$db->sanitize($columnName).
" <= '".
$db->idate($search[$key]).
"'";
312 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
316include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
318$parameters = array();
319$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
320$sql .= $hookmanager->resPrint;
324foreach (
$object->fields as $key => $val) {
325 $sql .=
"t.".$db->sanitize($key).
", ";
328if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
329 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
330 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
"ef.".$key.
', ' :
'');
334$parameters = array();
335$reshook = $hookmanager->executeHooks(
'printFieldListGroupBy', $parameters, $object, $action);
336$sql .= $hookmanager->resPrint;
337$sql = preg_replace(
"/,\s*$/",
"", $sql);
339$sql .=
" HAVING 1=1";
340if ($search[
'nb_of_values'] !=
'') {
341 $sql .=
natural_search(
"nb_of_values", $search[
'nb_of_values'], 1);
343if ($search[
'nb_products'] !=
'') {
347$parameters = array();
348$reshook = $hookmanager->executeHooks(
'printFieldListHaving', $parameters, $object, $action);
349if (empty($reshook)) {
350 $sql .= empty($hookmanager->resPrint) ?
"" :
" HAVING 1=1 ".$hookmanager->resPrint;
352 $sql = $hookmanager->resPrint;
356$nbtotalofrecords =
'';
368 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
369 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
371 $resql =
$db->query($sqlforcount);
374 $nbtotalofrecords =
$db->num_rows($resql);
376 $objforcount =
$db->fetch_object($resql);
377 $nbtotalofrecords = $objforcount->nbtotalofrecords;
379 if (($page * $limit) > (
int) $nbtotalofrecords) {
388$sql .=
$db->order($sortfield, $sortorder);
390 $sql .=
$db->plimit($limit + 1, $offset);
393$resql =
$db->query($sql);
399$num =
$db->num_rows($resql);
403if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
404 $obj =
$db->fetch_object($resql);
406 header(
"Location: " .
dol_buildpath(
'/variants/card.php', 2) .
'?id='.((
int)
$id));
414llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'bodyforlist');
416$arrayofselected = is_array($toselect) ? $toselect : array();
420 $param .=
'&mode='.urlencode($mode);
422if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
423 $param .=
'&contextpage='.urlencode($contextpage);
425if ($limit > 0 && $limit !=
$conf->liste_limit) {
426 $param .=
'&limit='.((int) $limit);
428if ($optioncss !=
'') {
429 $param .=
'&optioncss='.urlencode($optioncss);
436foreach ($search as $key => $val) {
437 if (is_array($search[$key])) {
438 foreach ($search[$key] as $skey) {
440 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
443 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
444 $param .=
'&search_'.$key.
'month='.(
GETPOSTINT(
'search_'.$key.
'month'));
445 $param .=
'&search_'.$key.
'day='.(
GETPOSTINT(
'search_'.$key.
'day'));
446 $param .=
'&search_'.$key.
'year='.(
GETPOSTINT(
'search_'.$key.
'year'));
447 } elseif ($search[$key] !=
'') {
448 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
452include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
454$parameters = array(
'param' => &$param);
455$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
456$param .= $hookmanager->resPrint;
459$arrayofmassactions = array(
465if (!empty($permissiontodelete)) {
466 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
468if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
469 $arrayofmassactions = array();
471$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
473print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
474if ($optioncss !=
'') {
475 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
477print
'<input type="hidden" name="token" value="'.newToken().
'">';
478print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
479print
'<input type="hidden" name="action" value="list">';
480print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
481print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
482print
'<input type="hidden" name="page" value="'.$page.
'">';
483print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
484print
'<input type="hidden" name="page_y" value="">';
485print
'<input type="hidden" name="mode" value="'.$mode.
'">';
488$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'));
489$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'));
490$newcardbutton .= dolGetButtonTitleSeparator();
491$newcardbutton .= dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/variants/card.php?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
493print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'object_'.
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
496$topicmail =
"SendProductAttributeRef";
497$modelmail =
"productattribute";
499$trackid =
'pa'.$object->id;
500include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
504 foreach ($fieldstosearchall as $key => $val) {
505 $fieldstosearchall[$key] = $langs->trans($val);
506 $setupstring .= $key.
"=".$val.
";";
508 print
'<!-- Search done like if MYOBJECT_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
509 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>'.
"\n";
517$parameters = array();
518$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
519if (empty($reshook)) {
520 $moreforfilter .= $hookmanager->resPrint;
522 $moreforfilter = $hookmanager->resPrint;
525if (!empty($moreforfilter)) {
526 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
527 print $moreforfilter;
531$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
532$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
$conf->main_checkbox_left_column);
533$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
534$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
536print
'<div class="div-table-responsive">';
537print
'<table id="tableattributes" class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
542print
'<tr class="liste_titre_filter nodrag nodrop">';
544if (
$conf->main_checkbox_left_column) {
545 print
'<td class="liste_titre center maxwidthsearch">';
546 $searchpicto = $form->showFilterButtons(
'left');
550foreach (
$object->fields as $key => $val) {
552 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
553 if ($key ==
'status') {
554 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
555 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
556 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
557 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
558 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
559 } 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'])) {
560 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
562 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
563 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
564 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
565 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);
566 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
567 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
568 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
569 print
'<div class="nowrap">';
570 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
572 print
'<div class="nowrap">';
573 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
575 } elseif ($key ==
'lang') {
576 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
578 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, array(), 1, 0, 0,
'minwidth100imp maxwidth125', 2);
580 print
'<input type="text" class="flat maxwidth'.($val[
'type'] ==
'integer' ?
'50' :
'75').
'" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
586include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
588$parameters = array(
'arrayfields' => $arrayfields);
589$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
590print $hookmanager->resPrint;
592$key =
'nb_of_values';
593if (!empty($arrayfields[$key][
'checked'])) {
594 print
'<td class="liste_titre center">';
595 print
'<input type="text" class="flat maxwidth50" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
599if (!empty($arrayfields[$key][
'checked'])) {
600 print
'<td class="liste_titre center">';
601 print
'<input type="text" class="flat maxwidth50" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
605if (!
$conf->main_checkbox_left_column) {
606 print
'<td class="liste_titre center maxwidthsearch">';
607 $searchpicto = $form->showFilterButtons();
612print
'<td class="liste_titre linecolmove width25"></td>';
620print
'<tr class="liste_titre nodrag nodrop">';
622if (
$conf->main_checkbox_left_column) {
623 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
626foreach (
$object->fields as $key => $val) {
627 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
628 if ($key ==
'status') {
629 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
630 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
631 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
632 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
633 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
634 } 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'])) {
635 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
637 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
638 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
639 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param,
'', $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
''), 0, (empty($val[
'helplist']) ?
'' : $val[
'helplist'])).
"\n";
644include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
646$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &
$totalarray);
647$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
648print $hookmanager->resPrint;
650$key =
'nb_of_values';
651if (!empty($arrayfields[$key][
'checked'])) {
653 print
getTitleFieldOfList($arrayfields[$key][
'label'], 0, $_SERVER[
'PHP_SELF'], $key,
'', $param,
'class="center"', $sortfield, $sortorder,
'center ').
"\n";
657if (!empty($arrayfields[$key][
'checked'])) {
658 print
getTitleFieldOfList($arrayfields[$key][
'label'], 0, $_SERVER[
'PHP_SELF'], $key,
'', $param,
'class="center"', $sortfield, $sortorder,
'center ').
"\n";
662if (!
$conf->main_checkbox_left_column) {
663 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
673$needToFetchEachLine = 0;
689$imaxinloop = ($limit ? min($num, $limit) : $num);
690while ($i < $imaxinloop) {
691 $obj =
$db->fetch_object($resql);
697 $object->setVarsFromFetchObj($obj);
700 if ($mode ==
'kanban') {
702 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
703 print
'<div class="box-flex-container kanban">';
707 if ($massactionbutton || $massaction) {
709 if (in_array(
$object->id, $arrayofselected)) {
713 print
$object->getKanbanView(
'', array(
'selected' => $selected));
714 if ($i == ($imaxinloop - 1)) {
721 print
'<tr data-rowid="'.$object->id.
'" class="oddeven row-with-select">';
723 if (
$conf->main_checkbox_left_column) {
724 print
'<td class="nowrap center">';
725 if ($massactionbutton || $massaction) {
727 if (in_array(
$object->id, $arrayofselected)) {
730 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
738 foreach (
$object->fields as $key => $val) {
739 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
740 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
741 $cssforfield .= ($cssforfield ?
' ' :
'') .
'center';
742 } elseif ($key ==
'status') {
743 $cssforfield .= ($cssforfield ?
' ' :
'') .
'center';
746 if (in_array($val[
'type'], array(
'timestamp'))) {
747 $cssforfield .= ($cssforfield ?
' ' :
'') .
'nowraponall';
748 } elseif ($key ==
'ref') {
749 $cssforfield .= ($cssforfield ?
' ' :
'') .
'nowraponall';
752 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'])) {
753 $cssforfield .= ($cssforfield ?
' ' :
'') .
'right';
757 if (!empty($arrayfields[
't.' . $key][
'checked'])) {
758 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
759 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) {
760 print
' title="'.dol_escape_htmltag((
string)
$object->$key).
'"';
763 if ($key ==
'status') {
764 print
$object->getLibStatut(5);
765 } elseif ($key ==
'rowid') {
766 print
$object->showOutputField($val, $key, (
string)
$object->id,
'');
774 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
789 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
791 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &
$totalarray);
792 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
793 print $hookmanager->resPrint;
795 $key =
'nb_of_values';
796 if (!empty($arrayfields[$key][
'checked'])) {
797 print
'<td class="center">';
804 $key =
'nb_products';
805 if (!empty($arrayfields[$key][
'checked'])) {
806 print
'<td class="center">';
814 if (!
$conf->main_checkbox_left_column) {
815 print
'<td class="nowrap center">';
816 if ($massactionbutton || $massaction) {
818 if (in_array(
$object->id, $arrayofselected)) {
821 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
829 print
'<td class="center linecolmove tdlineupdown">';
831 print
'<a class="lineupdown" href="' . $_SERVER[
'PHP_SELF'] .
'?action=up&rowid=' . $obj->rowid .
'">' .
img_up(
'default', 0,
'imgupforline') .
'</a>';
834 print
'<a class="lineupdown" href="' . $_SERVER[
'PHP_SELF'] .
'?action=down&rowid=' . $obj->rowid .
'">' .
img_down(
'default', 0,
'imgdownforline') .
'</a>';
841 print
'</tr>' .
"\n";
848include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
853 foreach ($arrayfields as $key => $val) {
854 if (!empty($val[
'checked'])) {
859 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
864$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
865$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
866print $hookmanager->resPrint;
868print
'</table>'.
"\n";
874$tagidfortablednd = (empty($tagidfortablednd) ?
'tableattributes' : $tagidfortablednd);
877 $(document).ready(
function(){
878 $(
".imgupforline, .imgdownforline").hide();
879 $(
".lineupdown").removeAttr(
'href');
881 .css(
"background-image",
'url(<?php echo DOL_URL_ROOT.'/theme/
'.$conf->theme.'/img/grip.png
'; ?>)')
882 .css(
"background-repeat",
"no-repeat")
883 .css(
"background-position",
"center center")
886 $(
this).addClass(
'showDragHandle');
888 $(
this).removeClass(
'showDragHandle');
892 $(
"#<?php echo $tagidfortablednd; ?>").tableDnD({
893 onDrop:
function(
table, row) {
894 console.log(
'onDrop variant .tableDnD');
895 $(
'#<?php echo $tagidfortablednd; ?> tr[data-element=extrafield]').attr(
'id',
'');
896 $(
'#<?php echo $tagidfortablednd; ?> tr[data-ignoreidfordnd=1]').attr(
'id',
'');
897 var reloadpage =
"<?php echo $forcereloadpage; ?>";
898 var roworder = cleanSerialize(decodeURI($(
"#<?php echo $tagidfortablednd; ?>").tableDnDSerialize()));
899 $.post(
"<?php echo DOL_URL_ROOT; ?>/variants/ajax/orderAttribute.php",
902 token:
"<?php echo currentToken(); ?>"
905 if (reloadpage == 1) {
906 location.href =
'<?php echo dol_escape_htmltag($_SERVER['PHP_SELF
']).'?
'.dol_escape_htmltag($_SERVER['QUERY_STRING
']); ?>';
910 onDragClass:
"dragClass",
911 dragHandle:
"td.tdlineupdown"
917if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
918 $hidegeneratedfilelistifempty = 1;
919 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
920 $hidegeneratedfilelistifempty = 0;
923 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
927 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
928 $urlsource .= str_replace(
'&',
'&', $param);
930 $filedir = $diroutputmassaction;
931 $genallowed = $permissiontoread;
932 $delallowed = $permissiontoadd;
934 print $formfile->showdocuments(
'massfilesarea_productattribute',
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class ProductAttribute Used to represent a Product attribute Examples:
dol_now($mode='gmt')
Return date for now.
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, $allowothertags=array())
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.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
img_down($titlealt='default', $selected=0, $moreclass='')
Show down arrow logo.
natural_search($fields, $value, $mode=0, $nofirstand=0, $sqltoadd='')
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
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.
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...
isModEnabled($module)
Is Dolibarr module enabled.
img_up($titlealt='default', $selected=0, $moreclass='')
Show top arrow logo.
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...
treeview li table
No Email.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.