dolibarr  16.0.1
html.form.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
5  * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
6  * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
7  * Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
8  * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
9  * Copyright (C) 2006 Marc Barilley/Ocebo <marc@ocebo.com>
10  * Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerker@telenet.be>
11  * Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
12  * Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
13  * Copyright (C) 2010-2021 Philippe Grand <philippe.grand@atoo-net.com>
14  * Copyright (C) 2011 Herve Prot <herve.prot@symeos.com>
15  * Copyright (C) 2012-2016 Marcos García <marcosgdf@gmail.com>
16  * Copyright (C) 2012 Cedric Salvador <csalvador@gpcsolutions.fr>
17  * Copyright (C) 2012-2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
18  * Copyright (C) 2014-2020 Alexandre Spangaro <aspangaro@open-dsi.fr>
19  * Copyright (C) 2018-2022 Ferran Marcet <fmarcet@2byte.es>
20  * Copyright (C) 2018-2021 Frédéric France <frederic.france@netlogic.fr>
21  * Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
22  * Copyright (C) 2018 Christophe Battarel <christophe@altairis.fr>
23  * Copyright (C) 2018 Josep Lluis Amador <joseplluis@lliuretic.cat>
24  *
25  * This program is free software; you can redistribute it and/or modify
26  * it under the terms of the GNU General Public License as published by
27  * the Free Software Foundation; either version 3 of the License, or
28  * (at your option) any later version.
29  *
30  * This program is distributed in the hope that it will be useful,
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33  * GNU General Public License for more details.
34  *
35  * You should have received a copy of the GNU General Public License
36  * along with this program. If not, see <https://www.gnu.org/licenses/>.
37  */
38 
52 class Form
53 {
57  public $db;
58 
62  public $error = '';
63 
67  public $errors = array();
68 
69  public $num;
70 
71  // Cache arrays
72  public $cache_types_paiements = array();
73  public $cache_conditions_paiements = array();
74  public $cache_transport_mode = array();
75  public $cache_availability = array();
76  public $cache_demand_reason = array();
77  public $cache_types_fees = array();
78  public $cache_vatrates = array();
79 
80 
86  public function __construct($db)
87  {
88  $this->db = $db;
89  }
90 
107  public function editfieldkey($text, $htmlname, $preselected, $object, $perm, $typeofdata = 'string', $moreparam = '', $fieldrequired = 0, $notabletag = 0, $paramid = 'id', $help = '')
108  {
109  global $conf, $langs;
110 
111  $ret = '';
112 
113  // TODO change for compatibility
114  if (!empty($conf->global->MAIN_USE_JQUERY_JEDITABLE) && !preg_match('/^select;/', $typeofdata)) {
115  if (!empty($perm)) {
116  $tmp = explode(':', $typeofdata);
117  $ret .= '<div class="editkey_'.$tmp[0].(!empty($tmp[1]) ? ' '.$tmp[1] : '').'" id="'.$htmlname.'">';
118  if ($fieldrequired) {
119  $ret .= '<span class="fieldrequired">';
120  }
121  if ($help) {
122  $ret .= $this->textwithpicto($langs->trans($text), $help);
123  } else {
124  $ret .= $langs->trans($text);
125  }
126  if ($fieldrequired) {
127  $ret .= '</span>';
128  }
129  $ret .= '</div>'."\n";
130  } else {
131  if ($fieldrequired) {
132  $ret .= '<span class="fieldrequired">';
133  }
134  if ($help) {
135  $ret .= $this->textwithpicto($langs->trans($text), $help);
136  } else {
137  $ret .= $langs->trans($text);
138  }
139  if ($fieldrequired) {
140  $ret .= '</span>';
141  }
142  }
143  } else {
144  if (empty($notabletag) && $perm) {
145  $ret .= '<table class="nobordernopadding centpercent"><tr><td class="nowrap">';
146  }
147  if ($fieldrequired) {
148  $ret .= '<span class="fieldrequired">';
149  }
150  if ($help) {
151  $ret .= $this->textwithpicto($langs->trans($text), $help);
152  } else {
153  $ret .= $langs->trans($text);
154  }
155  if ($fieldrequired) {
156  $ret .= '</span>';
157  }
158  if (!empty($notabletag)) {
159  $ret .= ' ';
160  }
161  if (empty($notabletag) && $perm) {
162  $ret .= '</td>';
163  }
164  if (empty($notabletag) && $perm) {
165  $ret .= '<td class="right">';
166  }
167  if ($htmlname && GETPOST('action', 'aZ09') != 'edit'.$htmlname && $perm) {
168  $ret .= '<a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=edit'.$htmlname.'&token='.newToken().'&'.$paramid.'='.$object->id.$moreparam.'">'.img_edit($langs->trans('Edit'), ($notabletag ? 0 : 1)).'</a>';
169  }
170  if (!empty($notabletag) && $notabletag == 1) {
171  $ret .= ' : ';
172  }
173  if (!empty($notabletag) && $notabletag == 3) {
174  $ret .= ' ';
175  }
176  if (empty($notabletag) && $perm) {
177  $ret .= '</td>';
178  }
179  if (empty($notabletag) && $perm) {
180  $ret .= '</tr></table>';
181  }
182  }
183 
184  return $ret;
185  }
186 
206  public function editfieldval($text, $htmlname, $value, $object, $perm, $typeofdata = 'string', $editvalue = '', $extObject = null, $custommsg = null, $moreparam = '', $notabletag = 0, $formatfunc = '', $paramid = 'id', $gm = 'auto')
207  {
208  global $conf, $langs;
209 
210  $ret = '';
211 
212  // Check parameters
213  if (empty($typeofdata)) {
214  return 'ErrorBadParameter';
215  }
216 
217  // When option to edit inline is activated
218  if (!empty($conf->global->MAIN_USE_JQUERY_JEDITABLE) && !preg_match('/^select;|day|datepicker|dayhour|datehourpicker/', $typeofdata)) { // TODO add jquery timepicker and support select
219  $ret .= $this->editInPlace($object, $value, $htmlname, $perm, $typeofdata, $editvalue, $extObject, $custommsg);
220  } else {
221  $editmode = (GETPOST('action', 'aZ09') == 'edit'.$htmlname);
222  if ($editmode) {
223  $ret .= "\n";
224  $ret .= '<form method="post" action="'.$_SERVER["PHP_SELF"].($moreparam ? '?'.$moreparam : '').'">';
225  $ret .= '<input type="hidden" name="action" value="set'.$htmlname.'">';
226  $ret .= '<input type="hidden" name="token" value="'.newToken().'">';
227  $ret .= '<input type="hidden" name="'.$paramid.'" value="'.$object->id.'">';
228  if (empty($notabletag)) {
229  $ret .= '<table class="nobordernopadding centpercent">';
230  }
231  if (empty($notabletag)) {
232  $ret .= '<tr><td>';
233  }
234  if (preg_match('/^(string|safehtmlstring|email)/', $typeofdata)) {
235  $tmp = explode(':', $typeofdata);
236  $ret .= '<input type="text" id="'.$htmlname.'" name="'.$htmlname.'" value="'.($editvalue ? $editvalue : $value).'"'.(empty($tmp[1]) ? '' : ' size="'.$tmp[1].'"').' autofocus>';
237  } elseif (preg_match('/^(integer)/', $typeofdata)) {
238  $tmp = explode(':', $typeofdata);
239  $valuetoshow = price2num($editvalue ? $editvalue : $value, 0);
240  $ret .= '<input type="text" id="'.$htmlname.'" name="'.$htmlname.'" value="'.$valuetoshow.'"'.(empty($tmp[1]) ? '' : ' size="'.$tmp[1].'"').' autofocus>';
241  } elseif (preg_match('/^(numeric|amount)/', $typeofdata)) {
242  $tmp = explode(':', $typeofdata);
243  $valuetoshow = price2num($editvalue ? $editvalue : $value);
244  $ret .= '<input type="text" id="'.$htmlname.'" name="'.$htmlname.'" value="'.($valuetoshow != '' ? price($valuetoshow) : '').'"'.(empty($tmp[1]) ? '' : ' size="'.$tmp[1].'"').' autofocus>';
245  } elseif (preg_match('/^(checkbox)/', $typeofdata)) {
246  $tmp = explode(':', $typeofdata);
247  $ret .= '<input type="checkbox" id="' . $htmlname . '" name="' . $htmlname . '" value="' . $value . '"' . (empty($tmp[1]) ? '' : $tmp[1]) . '/>';
248  } elseif (preg_match('/^text/', $typeofdata) || preg_match('/^note/', $typeofdata)) { // if wysiwyg is enabled $typeofdata = 'ckeditor'
249  $tmp = explode(':', $typeofdata);
250  $cols = (empty($tmp[2]) ? '' : $tmp[2]);
251  $morealt = '';
252  if (preg_match('/%/', $cols)) {
253  $morealt = ' style="width: '.$cols.'"';
254  $cols = '';
255  }
256 
257  $valuetoshow = ($editvalue ? $editvalue : $value);
258  $ret .= '<textarea id="'.$htmlname.'" name="'.$htmlname.'" wrap="soft" rows="'.(empty($tmp[1]) ? '20' : $tmp[1]).'"'.($cols ? ' cols="'.$cols.'"' : 'class="quatrevingtpercent"').$morealt.'" autofocus>';
259  // textarea convert automatically entities chars into simple chars.
260  // So we convert & into &amp; so a string like 'a &lt; <b>b</b><br>é<br>&lt;script&gt;alert('X');&lt;script&gt;' stay a correct html and is not converted by textarea component when wysiwig is off.
261  $valuetoshow = str_replace('&', '&amp;', $valuetoshow);
262  $ret .= dol_string_neverthesehtmltags($valuetoshow, array('textarea'));
263  $ret .= '</textarea>';
264  } elseif ($typeofdata == 'day' || $typeofdata == 'datepicker') {
265  $ret .= $this->selectDate($value, $htmlname, 0, 0, 1, 'form'.$htmlname, 1, 0, 0, '', '', '', '', 1, '', '', $gm);
266  } elseif ($typeofdata == 'dayhour' || $typeofdata == 'datehourpicker') {
267  $ret .= $this->selectDate($value, $htmlname, 1, 1, 1, 'form'.$htmlname, 1, 0, 0, '', '', '', '', 1, '', '', $gm);
268  } elseif (preg_match('/^select;/', $typeofdata)) {
269  $arraydata = explode(',', preg_replace('/^select;/', '', $typeofdata));
270  $arraylist = array();
271  foreach ($arraydata as $val) {
272  $tmp = explode(':', $val);
273  $tmpkey = str_replace('|', ':', $tmp[0]);
274  $arraylist[$tmpkey] = $tmp[1];
275  }
276  $ret .= $this->selectarray($htmlname, $arraylist, $value);
277  } elseif (preg_match('/^ckeditor/', $typeofdata)) {
278  $tmp = explode(':', $typeofdata); // Example: ckeditor:dolibarr_zzz:width:height:savemethod:toolbarstartexpanded:rows:cols:uselocalbrowser
279  require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
280  $doleditor = new DolEditor($htmlname, ($editvalue ? $editvalue : $value), (empty($tmp[2]) ? '' : $tmp[2]), (empty($tmp[3]) ? '100' : $tmp[3]), (empty($tmp[1]) ? 'dolibarr_notes' : $tmp[1]), 'In', (empty($tmp[5]) ? 0 : $tmp[5]), (isset($tmp[8]) ? ($tmp[8] ? true : false) : true), true, (empty($tmp[6]) ? '20' : $tmp[6]), (empty($tmp[7]) ? '100' : $tmp[7]));
281  $ret .= $doleditor->Create(1);
282  }
283  if (empty($notabletag)) {
284  $ret .= '</td>';
285  }
286 
287  // Button save-cancel
288  if (empty($notabletag)) {
289  $ret .= '<td class="left">';
290  }
291  //else $ret.='<div class="clearboth"></div>';
292  $ret .= '<input type="submit" class="smallpaddingimp button'.(empty($notabletag) ? '' : ' ').'" name="modify" value="'.$langs->trans("Modify").'">';
293  if (preg_match('/ckeditor|textarea/', $typeofdata) && empty($notabletag)) {
294  $ret .= '<br>'."\n";
295  }
296  $ret .= '<input type="submit" class="smallpaddingimp button button-cancel'.(empty($notabletag) ? '' : ' ').'" name="cancel" value="'.$langs->trans("Cancel").'">';
297  if (empty($notabletag)) {
298  $ret .= '</td>';
299  }
300 
301  if (empty($notabletag)) {
302  $ret .= '</tr></table>'."\n";
303  }
304  $ret .= '</form>'."\n";
305  } else {
306  if (preg_match('/^(email)/', $typeofdata)) {
307  $ret .= dol_print_email($value, 0, 0, 0, 0, 1);
308  } elseif (preg_match('/^(amount|numeric)/', $typeofdata)) {
309  $ret .= ($value != '' ? price($value, '', $langs, 0, -1, -1, $conf->currency) : '');
310  } elseif (preg_match('/^(checkbox)/', $typeofdata)) {
311  $tmp = explode(':', $typeofdata);
312  $ret .= '<input type="checkbox" disabled id="' . $htmlname . '" name="' . $htmlname . '" value="' . $value . '"' . ($tmp[1] ? $tmp[1] : '') . '/>';
313  } elseif (preg_match('/^text/', $typeofdata) || preg_match('/^note/', $typeofdata)) {
314  $ret .= dol_htmlentitiesbr($value);
315  } elseif (preg_match('/^safehtmlstring/', $typeofdata)) {
316  $ret .= dol_string_onlythesehtmltags($value);
317  } elseif (preg_match('/^restricthtml/', $typeofdata)) {
318  $ret .= dol_string_onlythesehtmltags($value);
319  } elseif ($typeofdata == 'day' || $typeofdata == 'datepicker') {
320  $ret .= '<span class="valuedate">'.dol_print_date($value, 'day', $gm).'</span>';
321  } elseif ($typeofdata == 'dayhour' || $typeofdata == 'datehourpicker') {
322  $ret .= '<span class="valuedate">'.dol_print_date($value, 'dayhour', $gm).'</span>';
323  } elseif (preg_match('/^select;/', $typeofdata)) {
324  $arraydata = explode(',', preg_replace('/^select;/', '', $typeofdata));
325  $arraylist = array();
326  foreach ($arraydata as $val) {
327  $tmp = explode(':', $val);
328  $arraylist[$tmp[0]] = $tmp[1];
329  }
330  $ret .= $arraylist[$value];
331  if ($htmlname == 'fk_product_type') {
332  if ($value == 0) {
333  $ret = img_picto($langs->trans("Product"), 'product', 'class="paddingleftonly paddingrightonly colorgrey"').$ret;
334  } else {
335  $ret = img_picto($langs->trans("Service"), 'service', 'class="paddingleftonly paddingrightonly colorgrey"').$ret;
336  }
337  }
338  } elseif (preg_match('/^ckeditor/', $typeofdata)) {
339  $tmpcontent = dol_htmlentitiesbr($value);
340  if (!empty($conf->global->MAIN_DISABLE_NOTES_TAB)) {
341  $firstline = preg_replace('/<br>.*/', '', $tmpcontent);
342  $firstline = preg_replace('/[\n\r].*/', '', $firstline);
343  $tmpcontent = $firstline.((strlen($firstline) != strlen($tmpcontent)) ? '...' : '');
344  }
345  // We dont use dol_escape_htmltag to get the html formating active, but this need we must also
346  // clean data from some dangerous html
347  $ret .= dol_string_onlythesehtmltags(dol_htmlentitiesbr($tmpcontent));
348  } else {
349  $ret .= dol_escape_htmltag($value);
350  }
351 
352  if ($formatfunc && method_exists($object, $formatfunc)) {
353  $ret = $object->$formatfunc($ret);
354  }
355  }
356  }
357  return $ret;
358  }
359 
371  public function widgetForTranslation($fieldname, $object, $perm, $typeofdata = 'string', $check = '', $morecss = '')
372  {
373  global $conf, $langs, $extralanguages;
374 
375  $result = '';
376 
377  // List of extra languages
378  $arrayoflangcode = array();
379  if (!empty($conf->global->PDF_USE_ALSO_LANGUAGE_CODE)) {
380  $arrayoflangcode[] = $conf->global->PDF_USE_ALSO_LANGUAGE_CODE;
381  }
382 
383  if (is_array($arrayoflangcode) && count($arrayoflangcode)) {
384  if (!is_object($extralanguages)) {
385  include_once DOL_DOCUMENT_ROOT.'/core/class/extralanguages.class.php';
386  $extralanguages = new ExtraLanguages($this->db);
387  }
388  $extralanguages->fetch_name_extralanguages('societe');
389 
390  if (!is_array($extralanguages->attributes[$object->element]) || empty($extralanguages->attributes[$object->element][$fieldname])) {
391  return ''; // No extralang field to show
392  }
393 
394  $result .= '<!-- Widget for translation -->'."\n";
395  $result .= '<div class="inline-block paddingleft image-'.$object->element.'-'.$fieldname.'">';
396  $s = img_picto($langs->trans("ShowOtherLanguages"), 'language', '', false, 0, 0, '', 'fa-15 editfieldlang');
397  $result .= $s;
398  $result .= '</div>';
399 
400  $result .= '<div class="inline-block hidden field-'.$object->element.'-'.$fieldname.'">';
401 
402  $resultforextrlang = '';
403  foreach ($arrayoflangcode as $langcode) {
404  $valuetoshow = GETPOSTISSET('field-'.$object->element."-".$fieldname."-".$langcode) ? GETPOST('field-'.$object->element.'-'.$fieldname."-".$langcode, $check) : '';
405  if (empty($valuetoshow)) {
406  $object->fetchValuesForExtraLanguages();
407  //var_dump($object->array_languages);
408  $valuetoshow = $object->array_languages[$fieldname][$langcode];
409  }
410 
411  $s = picto_from_langcode($langcode, 'class="pictoforlang paddingright"');
412  $resultforextrlang .= $s;
413 
414  // TODO Use the showInputField() method of ExtraLanguages object
415  if ($typeofdata == 'textarea') {
416  $resultforextrlang .= '<textarea name="field-'.$object->element."-".$fieldname."-".$langcode.'" id="'.$fieldname."-".$langcode.'" class="'.$morecss.'" rows="'.ROWS_2.'" wrap="soft">';
417  $resultforextrlang .= $valuetoshow;
418  $resultforextrlang .= '</textarea>';
419  } else {
420  $resultforextrlang .= '<input type="text" class="inputfieldforlang '.($morecss ? ' '.$morecss : '').'" name="field-'.$object->element.'-'.$fieldname.'-'.$langcode.'" value="'.$valuetoshow.'">';
421  }
422  }
423  $result .= $resultforextrlang;
424 
425  $result .= '</div>';
426  $result .= '<script>$(".image-'.$object->element.'-'.$fieldname.'").click(function() { console.log("Toggle lang widget"); jQuery(".field-'.$object->element.'-'.$fieldname.'").toggle(); });</script>';
427  }
428 
429  return $result;
430  }
431 
445  protected function editInPlace($object, $value, $htmlname, $condition, $inputType = 'textarea', $editvalue = null, $extObject = null, $custommsg = null)
446  {
447  global $conf;
448 
449  $out = '';
450 
451  // Check parameters
452  if (preg_match('/^text/', $inputType)) {
453  $value = dol_nl2br($value);
454  } elseif (preg_match('/^numeric/', $inputType)) {
455  $value = price($value);
456  } elseif ($inputType == 'day' || $inputType == 'datepicker') {
457  $value = dol_print_date($value, 'day');
458  }
459 
460  if ($condition) {
461  $element = false;
462  $table_element = false;
463  $fk_element = false;
464  $loadmethod = false;
465  $savemethod = false;
466  $ext_element = false;
467  $button_only = false;
468  $inputOption = '';
469  $rows = '';
470  $cols = '';
471 
472  if (is_object($object)) {
473  $element = $object->element;
474  $table_element = $object->table_element;
475  $fk_element = $object->id;
476  }
477 
478  if (is_object($extObject)) {
479  $ext_element = $extObject->element;
480  }
481 
482  if (preg_match('/^(string|email|numeric)/', $inputType)) {
483  $tmp = explode(':', $inputType);
484  $inputType = $tmp[0];
485  if (!empty($tmp[1])) {
486  $inputOption = $tmp[1];
487  }
488  if (!empty($tmp[2])) {
489  $savemethod = $tmp[2];
490  }
491  $out .= '<input id="width_'.$htmlname.'" value="'.$inputOption.'" type="hidden"/>'."\n";
492  } elseif ((preg_match('/^day$/', $inputType)) || (preg_match('/^datepicker/', $inputType)) || (preg_match('/^datehourpicker/', $inputType))) {
493  $tmp = explode(':', $inputType);
494  $inputType = $tmp[0];
495  if (!empty($tmp[1])) {
496  $inputOption = $tmp[1];
497  }
498  if (!empty($tmp[2])) {
499  $savemethod = $tmp[2];
500  }
501 
502  $out .= '<input id="timestamp" type="hidden"/>'."\n"; // Use for timestamp format
503  } elseif (preg_match('/^(select|autocomplete)/', $inputType)) {
504  $tmp = explode(':', $inputType);
505  $inputType = $tmp[0];
506  $loadmethod = $tmp[1];
507  if (!empty($tmp[2])) {
508  $savemethod = $tmp[2];
509  }
510  if (!empty($tmp[3])) {
511  $button_only = true;
512  }
513  } elseif (preg_match('/^textarea/', $inputType)) {
514  $tmp = explode(':', $inputType);
515  $inputType = $tmp[0];
516  $rows = (empty($tmp[1]) ? '8' : $tmp[1]);
517  $cols = (empty($tmp[2]) ? '80' : $tmp[2]);
518  } elseif (preg_match('/^ckeditor/', $inputType)) {
519  $tmp = explode(':', $inputType);
520  $inputType = $tmp[0];
521  $toolbar = $tmp[1];
522  if (!empty($tmp[2])) {
523  $width = $tmp[2];
524  }
525  if (!empty($tmp[3])) {
526  $heigth = $tmp[3];
527  }
528  if (!empty($tmp[4])) {
529  $savemethod = $tmp[4];
530  }
531 
532  if (!empty($conf->fckeditor->enabled)) {
533  $out .= '<input id="ckeditor_toolbar" value="'.$toolbar.'" type="hidden"/>'."\n";
534  } else {
535  $inputType = 'textarea';
536  }
537  }
538 
539  $out .= '<input id="element_'.$htmlname.'" value="'.$element.'" type="hidden"/>'."\n";
540  $out .= '<input id="table_element_'.$htmlname.'" value="'.$table_element.'" type="hidden"/>'."\n";
541  $out .= '<input id="fk_element_'.$htmlname.'" value="'.$fk_element.'" type="hidden"/>'."\n";
542  $out .= '<input id="loadmethod_'.$htmlname.'" value="'.$loadmethod.'" type="hidden"/>'."\n";
543  if (!empty($savemethod)) {
544  $out .= '<input id="savemethod_'.$htmlname.'" value="'.$savemethod.'" type="hidden"/>'."\n";
545  }
546  if (!empty($ext_element)) {
547  $out .= '<input id="ext_element_'.$htmlname.'" value="'.$ext_element.'" type="hidden"/>'."\n";
548  }
549  if (!empty($custommsg)) {
550  if (is_array($custommsg)) {
551  if (!empty($custommsg['success'])) {
552  $out .= '<input id="successmsg_'.$htmlname.'" value="'.$custommsg['success'].'" type="hidden"/>'."\n";
553  }
554  if (!empty($custommsg['error'])) {
555  $out .= '<input id="errormsg_'.$htmlname.'" value="'.$custommsg['error'].'" type="hidden"/>'."\n";
556  }
557  } else {
558  $out .= '<input id="successmsg_'.$htmlname.'" value="'.$custommsg.'" type="hidden"/>'."\n";
559  }
560  }
561  if ($inputType == 'textarea') {
562  $out .= '<input id="textarea_'.$htmlname.'_rows" value="'.$rows.'" type="hidden"/>'."\n";
563  $out .= '<input id="textarea_'.$htmlname.'_cols" value="'.$cols.'" type="hidden"/>'."\n";
564  }
565  $out .= '<span id="viewval_'.$htmlname.'" class="viewval_'.$inputType.($button_only ? ' inactive' : ' active').'">'.$value.'</span>'."\n";
566  $out .= '<span id="editval_'.$htmlname.'" class="editval_'.$inputType.($button_only ? ' inactive' : ' active').' hideobject">'.(!empty($editvalue) ? $editvalue : $value).'</span>'."\n";
567  } else {
568  $out = $value;
569  }
570 
571  return $out;
572  }
573 
592  public function textwithtooltip($text, $htmltext, $tooltipon = 1, $direction = 0, $img = '', $extracss = '', $notabs = 3, $incbefore = '', $noencodehtmltext = 0, $tooltiptrigger = '', $forcenowrap = 0)
593  {
594  if ($incbefore) {
595  $text = $incbefore.$text;
596  }
597  if (!$htmltext) {
598  return $text;
599  }
600  $direction = (int) $direction; // For backward compatibility when $direction was set to '' instead of 0
601 
602  $tag = 'td';
603  if ($notabs == 2) {
604  $tag = 'div';
605  }
606  if ($notabs == 3) {
607  $tag = 'span';
608  }
609  // Sanitize tooltip
610  $htmltext = str_replace(array("\r", "\n"), '', $htmltext);
611 
612  $extrastyle = '';
613  if ($direction < 0) {
614  $extracss = ($extracss ? $extracss.' ' : '').($notabs != 3 ? 'inline-block' : '');
615  $extrastyle = 'padding: 0px; padding-left: 3px !important;';
616  }
617  if ($direction > 0) {
618  $extracss = ($extracss ? $extracss.' ' : '').($notabs != 3 ? 'inline-block' : '');
619  $extrastyle = 'padding: 0px; padding-right: 3px !important;';
620  }
621 
622  $classfortooltip = 'classfortooltip';
623 
624  $s = '';
625  $textfordialog = '';
626 
627  if ($tooltiptrigger == '') {
628  $htmltext = str_replace('"', '&quot;', $htmltext);
629  } else {
630  $classfortooltip = 'classfortooltiponclick';
631  $textfordialog .= '<div style="display: none;" id="idfortooltiponclick_'.$tooltiptrigger.'" class="classfortooltiponclicktext">'.$htmltext.'</div>';
632  }
633  if ($tooltipon == 2 || $tooltipon == 3) {
634  $paramfortooltipimg = ' class="'.$classfortooltip.($notabs != 3 ? ' inline-block' : '').($extracss ? ' '.$extracss : '').'" style="padding: 0px;'.($extrastyle ? ' '.$extrastyle : '').'"';
635  if ($tooltiptrigger == '') {
636  $paramfortooltipimg .= ' title="'.($noencodehtmltext ? $htmltext : dol_escape_htmltag($htmltext, 1)).'"'; // Attribut to put on img tag to store tooltip
637  } else {
638  $paramfortooltipimg .= ' dolid="'.$tooltiptrigger.'"';
639  }
640  } else {
641  $paramfortooltipimg = ($extracss ? ' class="'.$extracss.'"' : '').($extrastyle ? ' style="'.$extrastyle.'"' : ''); // Attribut to put on td text tag
642  }
643  if ($tooltipon == 1 || $tooltipon == 3) {
644  $paramfortooltiptd = ' class="'.($tooltipon == 3 ? 'cursorpointer ' : '').$classfortooltip.' inline-block'.($extracss ? ' '.$extracss : '').'" style="padding: 0px;'.($extrastyle ? ' '.$extrastyle : '').'" ';
645  if ($tooltiptrigger == '') {
646  $paramfortooltiptd .= ' title="'.($noencodehtmltext ? $htmltext : dol_escape_htmltag($htmltext, 1)).'"'; // Attribut to put on td tag to store tooltip
647  } else {
648  $paramfortooltiptd .= ' dolid="'.$tooltiptrigger.'"';
649  }
650  } else {
651  $paramfortooltiptd = ($extracss ? ' class="'.$extracss.'"' : '').($extrastyle ? ' style="'.$extrastyle.'"' : ''); // Attribut to put on td text tag
652  }
653  if (empty($notabs)) {
654  $s .= '<table class="nobordernopadding"><tr style="height: auto;">';
655  } elseif ($notabs == 2) {
656  $s .= '<div class="inline-block'.($forcenowrap ? ' nowrap' : '').'">';
657  }
658  // Define value if value is before
659  if ($direction < 0) {
660  $s .= '<'.$tag.$paramfortooltipimg;
661  if ($tag == 'td') {
662  $s .= ' class=valigntop" width="14"';
663  }
664  $s .= '>'.$textfordialog.$img.'</'.$tag.'>';
665  }
666  // Use another method to help avoid having a space in value in order to use this value with jquery
667  // Define label
668  if ((string) $text != '') {
669  $s .= '<'.$tag.$paramfortooltiptd.'>'.$text.'</'.$tag.'>';
670  }
671  // Define value if value is after
672  if ($direction > 0) {
673  $s .= '<'.$tag.$paramfortooltipimg;
674  if ($tag == 'td') {
675  $s .= ' class="valignmiddle" width="14"';
676  }
677  $s .= '>'.$textfordialog.$img.'</'.$tag.'>';
678  }
679  if (empty($notabs)) {
680  $s .= '</tr></table>';
681  } elseif ($notabs == 2) {
682  $s .= '</div>';
683  }
684 
685  return $s;
686  }
687 
702  public function textwithpicto($text, $htmltext, $direction = 1, $type = 'help', $extracss = '', $noencodehtmltext = 0, $notabs = 3, $tooltiptrigger = '', $forcenowrap = 0)
703  {
704  global $conf, $langs;
705 
706  $alt = '';
707  if ($tooltiptrigger) {
708  $alt = $langs->transnoentitiesnoconv("ClickToShowHelp");
709  }
710 
711  //For backwards compatibility
712  if ($type == '0') {
713  $type = 'info';
714  } elseif ($type == '1') {
715  $type = 'help';
716  }
717 
718  // If info or help with no javascript, show only text
719  if (empty($conf->use_javascript_ajax)) {
720  if ($type == 'info' || $type == 'infoclickable' || $type == 'help' || $type == 'helpclickable') {
721  return $text;
722  } else {
723  $alt = $htmltext;
724  $htmltext = '';
725  }
726  }
727 
728  // If info or help with smartphone, show only text (tooltip hover can't works)
729  if (!empty($conf->dol_no_mouse_hover) && empty($tooltiptrigger)) {
730  if ($type == 'info' || $type == 'infoclickable' || $type == 'help' || $type == 'helpclickable') {
731  return $text;
732  }
733  }
734  // If info or help with smartphone, show only text (tooltip on click does not works with dialog on smaprtphone)
735  //if (! empty($conf->dol_no_mouse_hover) && ! empty($tooltiptrigger))
736  //{
737  //if ($type == 'info' || $type == 'help') return '<a href="'..'">'.$text.''</a>';
738  //}
739 
740  $img = '';
741  if ($type == 'info') {
742  $img = img_help(0, $alt);
743  } elseif ($type == 'help') {
744  $img = img_help(($tooltiptrigger != '' ? 2 : 1), $alt);
745  } elseif ($type == 'helpclickable') {
746  $img = img_help(($tooltiptrigger != '' ? 2 : 1), $alt);
747  } elseif ($type == 'superadmin') {
748  $img = img_picto($alt, 'redstar');
749  } elseif ($type == 'admin') {
750  $img = img_picto($alt, 'star');
751  } elseif ($type == 'warning') {
752  $img = img_warning($alt);
753  } elseif ($type != 'none') {
754  $img = img_picto($alt, $type); // $type can be an image path
755  }
756 
757  return $this->textwithtooltip($text, $htmltext, ((($tooltiptrigger && !$img) || strpos($type, 'clickable')) ? 3 : 2), $direction, $img, $extracss, $notabs, '', $noencodehtmltext, $tooltiptrigger, $forcenowrap);
758  }
759 
770  public function selectMassAction($selected, $arrayofaction, $alwaysvisible = 0, $name = 'massaction', $cssclass = 'checkforselect')
771  {
772  global $conf, $langs, $hookmanager;
773 
774 
775  $disabled = 0;
776  $ret = '<div class="centpercent center">';
777  $ret .= '<select class="flat'.(empty($conf->use_javascript_ajax) ? '' : ' hideobject').' '.$name.' '.$name.'select valignmiddle alignstart" id="'.$name.'" name="'.$name.'"'.($disabled ? ' disabled="disabled"' : '').'>';
778 
779  // Complete list with data from external modules. THe module can use $_SERVER['PHP_SELF'] to know on which page we are, or use the $parameters['currentcontext'] completed by executeHooks.
780  $parameters = array();
781  $reshook = $hookmanager->executeHooks('addMoreMassActions', $parameters); // Note that $action and $object may have been modified by hook
782  // check if there is a mass action
783  if (count($arrayofaction) == 0 && empty($hookmanager->resPrint)) {
784  return;
785  }
786  if (empty($reshook)) {
787  $ret .= '<option value="0"'.($disabled ? ' disabled="disabled"' : '').'>-- '.$langs->trans("SelectAction").' --</option>';
788  foreach ($arrayofaction as $code => $label) {
789  $ret .= '<option value="'.$code.'"'.($disabled ? ' disabled="disabled"' : '').' data-html="'.dol_escape_htmltag($label).'">'.$label.'</option>';
790  }
791  }
792  $ret .= $hookmanager->resPrint;
793 
794  $ret .= '</select>';
795 
796  if (empty($conf->dol_optimize_smallscreen)) {
797  $ret .= ajax_combobox('.'.$name.'select');
798  }
799 
800  // Warning: if you set submit button to disabled, post using 'Enter' will no more work if there is no another input submit. So we add a hidden button
801  $ret .= '<input type="submit" name="confirmmassactioninvisible" style="display: none" tabindex="-1">'; // Hidden button BEFORE so it is the one used when we submit with ENTER.
802  $ret .= '<input type="submit" disabled name="confirmmassaction"'.(empty($conf->use_javascript_ajax) ? '' : ' style="display: none"').' class="button smallpaddingimp'.(empty($conf->use_javascript_ajax) ? '' : ' hideobject').' '.$name.' '.$name.'confirmed" value="'.dol_escape_htmltag($langs->trans("Confirm")).'">';
803  $ret .= '</div>';
804 
805  if (!empty($conf->use_javascript_ajax)) {
806  $ret .= '<!-- JS CODE TO ENABLE mass action select -->
807  <script>
808  function initCheckForSelect(mode, name, cssclass) /* mode is 0 during init of page or click all, 1 when we click on 1 checkboxi, "name" refers to the class of the massaction button, "cssclass" to the class of the checkfor select boxes */
809  {
810  atleastoneselected=0;
811  jQuery("."+cssclass).each(function( index ) {
812  /* console.log( index + ": " + $( this ).text() ); */
813  if ($(this).is(\':checked\')) atleastoneselected++;
814  });
815 
816  console.log("initCheckForSelect mode="+mode+" name="+name+" cssclass="+cssclass+" atleastoneselected="+atleastoneselected);
817 
818  if (atleastoneselected || '.$alwaysvisible.')
819  {
820  jQuery("."+name).show();
821  '.($selected ? 'if (atleastoneselected) { jQuery("."+name+"select").val("'.$selected.'").trigger(\'change\'); jQuery("."+name+"confirmed").prop(\'disabled\', false); }' : '').'
822  '.($selected ? 'if (! atleastoneselected) { jQuery("."+name+"select").val("0").trigger(\'change\'); jQuery("."+name+"confirmed").prop(\'disabled\', true); } ' : '').'
823  }
824  else
825  {
826  jQuery("."+name).hide();
827  jQuery("."+name+"other").hide();
828  }
829  }
830 
831  jQuery(document).ready(function () {
832  initCheckForSelect(0, "' . $name.'", "'.$cssclass.'");
833  jQuery(".' . $cssclass.'").click(function() {
834  initCheckForSelect(1, "'.$name.'", "'.$cssclass.'");
835  });
836  jQuery(".' . $name.'select").change(function() {
837  var massaction = $( this ).val();
838  var urlform = $( this ).closest("form").attr("action").replace("#show_files","");
839  if (massaction == "builddoc")
840  {
841  urlform = urlform + "#show_files";
842  }
843  $( this ).closest("form").attr("action", urlform);
844  console.log("we select a mass action name='.$name.' massaction="+massaction+" - "+urlform);
845  /* Warning: if you set submit button to disabled, post using Enter will no more work if there is no other button */
846  if ($(this).val() != \'0\')
847  {
848  jQuery(".' . $name.'confirmed").prop(\'disabled\', false);
849  jQuery(".' . $name.'other").hide(); /* To disable if another div was open */
850  jQuery(".' . $name.'"+massaction).show();
851  }
852  else
853  {
854  jQuery(".' . $name.'confirmed").prop(\'disabled\', true);
855  jQuery(".' . $name.'other").hide(); /* To disable any div open */
856  }
857  });
858  });
859  </script>
860  ';
861  }
862 
863  return $ret;
864  }
865 
866  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
883  public function select_country($selected = '', $htmlname = 'country_id', $htmloption = '', $maxlength = 0, $morecss = 'minwidth300', $usecodeaskey = '', $showempty = 1, $disablefavorites = 0, $addspecialentries = 0, $exclude_country_code = array(), $hideflags = 0)
884  {
885  // phpcs:enable
886  global $conf, $langs, $mysoc;
887 
888  $langs->load("dict");
889 
890  $out = '';
891  $countryArray = array();
892  $favorite = array();
893  $label = array();
894  $atleastonefavorite = 0;
895 
896  $sql = "SELECT rowid, code as code_iso, code_iso as code_iso3, label, favorite, eec";
897  $sql .= " FROM ".$this->db->prefix()."c_country";
898  $sql .= " WHERE active > 0";
899  //$sql.= " ORDER BY code ASC";
900 
901  dol_syslog(get_class($this)."::select_country", LOG_DEBUG);
902  $resql = $this->db->query($sql);
903  if ($resql) {
904  $out .= '<select id="select'.$htmlname.'" class="flat maxwidth200onsmartphone selectcountry'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" '.$htmloption.'>';
905  $num = $this->db->num_rows($resql);
906  $i = 0;
907  if ($num) {
908  while ($i < $num) {
909  $obj = $this->db->fetch_object($resql);
910 
911  $countryArray[$i]['rowid'] = $obj->rowid;
912  $countryArray[$i]['code_iso'] = $obj->code_iso;
913  $countryArray[$i]['code_iso3'] = $obj->code_iso3;
914  $countryArray[$i]['label'] = ($obj->code_iso && $langs->transnoentitiesnoconv("Country".$obj->code_iso) != "Country".$obj->code_iso ? $langs->transnoentitiesnoconv("Country".$obj->code_iso) : ($obj->label != '-' ? $obj->label : ''));
915  $countryArray[$i]['favorite'] = $obj->favorite;
916  $countryArray[$i]['eec'] = $obj->eec;
917  $favorite[$i] = $obj->favorite;
918  $label[$i] = dol_string_unaccent($countryArray[$i]['label']);
919  $i++;
920  }
921 
922  if (empty($disablefavorites)) {
923  $array1_sort_order = SORT_DESC;
924  $array2_sort_order = SORT_ASC;
925  array_multisort($favorite, $array1_sort_order, $label, $array2_sort_order, $countryArray);
926  } else {
927  $countryArray = dol_sort_array($countryArray, 'label');
928  }
929 
930  if ($showempty) {
931  if (is_numeric($showempty)) {
932  $out .= '<option value="">&nbsp;</option>'."\n";
933  } else {
934  $out .= '<option value="">'.$langs->trans($showempty).'</option>'."\n";
935  }
936  }
937 
938  if ($addspecialentries) { // Add dedicated entries for groups of countries
939  //if ($showempty) $out.= '<option value="" disabled class="selectoptiondisabledwhite">--------------</option>';
940  $out .= '<option value="special_allnotme"'.($selected == 'special_allnotme' ? ' selected' : '').'>'.$langs->trans("CountriesExceptMe", $langs->transnoentitiesnoconv("Country".$mysoc->country_code)).'</option>';
941  $out .= '<option value="special_eec"'.($selected == 'special_eec' ? ' selected' : '').'>'.$langs->trans("CountriesInEEC").'</option>';
942  if ($mysoc->isInEEC()) {
943  $out .= '<option value="special_eecnotme"'.($selected == 'special_eecnotme' ? ' selected' : '').'>'.$langs->trans("CountriesInEECExceptMe", $langs->transnoentitiesnoconv("Country".$mysoc->country_code)).'</option>';
944  }
945  $out .= '<option value="special_noteec"'.($selected == 'special_noteec' ? ' selected' : '').'>'.$langs->trans("CountriesNotInEEC").'</option>';
946  $out .= '<option value="" disabled class="selectoptiondisabledwhite">------------</option>';
947  }
948 
949  foreach ($countryArray as $row) {
950  //if (empty($showempty) && empty($row['rowid'])) continue;
951  if (empty($row['rowid'])) {
952  continue;
953  }
954  if (is_array($exclude_country_code) && count($exclude_country_code) && in_array($row['code_iso'], $exclude_country_code)) {
955  continue; // exclude some countries
956  }
957 
958  if (empty($disablefavorites) && $row['favorite'] && $row['code_iso']) {
959  $atleastonefavorite++;
960  }
961  if (empty($row['favorite']) && $atleastonefavorite) {
962  $atleastonefavorite = 0;
963  $out .= '<option value="" disabled class="selectoptiondisabledwhite">------------</option>';
964  }
965 
966  $labeltoshow = '';
967  if ($row['label']) {
968  $labeltoshow .= dol_trunc($row['label'], $maxlength, 'middle');
969  } else {
970  $labeltoshow .= '&nbsp;';
971  }
972  if ($row['code_iso']) {
973  $labeltoshow .= ' <span class="opacitymedium">('.$row['code_iso'].')</span>';
974  if (empty($hideflags)) {
975  $tmpflag = picto_from_langcode($row['code_iso'], 'class="saturatemedium paddingrightonly"', 1);
976  $labeltoshow = $tmpflag.' '.$labeltoshow;
977  }
978  }
979 
980  if ($selected && $selected != '-1' && ($selected == $row['rowid'] || $selected == $row['code_iso'] || $selected == $row['code_iso3'] || $selected == $row['label'])) {
981  $out .= '<option value="'.($usecodeaskey ? ($usecodeaskey == 'code2' ? $row['code_iso'] : $row['code_iso3']) : $row['rowid']).'" selected data-html="'.dol_escape_htmltag($labeltoshow).'" data-eec="'.((int) $row['eec']).'">';
982  } else {
983  $out .= '<option value="'.($usecodeaskey ? ($usecodeaskey == 'code2' ? $row['code_iso'] : $row['code_iso3']) : $row['rowid']).'" data-html="'.dol_escape_htmltag($labeltoshow).'" data-eec="'.((int) $row['eec']).'">';
984  }
985  $out .= $labeltoshow;
986  $out .= '</option>'."\n";
987  }
988  }
989  $out .= '</select>';
990  } else {
991  dol_print_error($this->db);
992  }
993 
994  // Make select dynamic
995  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
996  $out .= ajax_combobox('select'.$htmlname, array(), 0, 0, 'resolve');
997 
998  return $out;
999  }
1000 
1001  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1015  public function select_incoterms($selected = '', $location_incoterms = '', $page = '', $htmlname = 'incoterm_id', $htmloption = '', $forcecombo = 1, $events = array(), $disableautocomplete = 0)
1016  {
1017  // phpcs:enable
1018  global $conf, $langs;
1019 
1020  $langs->load("dict");
1021 
1022  $out = '';
1023  $moreattrib = '';
1024  $incotermArray = array();
1025 
1026  $sql = "SELECT rowid, code";
1027  $sql .= " FROM ".$this->db->prefix()."c_incoterms";
1028  $sql .= " WHERE active > 0";
1029  $sql .= " ORDER BY code ASC";
1030 
1031  dol_syslog(get_class($this)."::select_incoterm", LOG_DEBUG);
1032  $resql = $this->db->query($sql);
1033  if ($resql) {
1034  if ($conf->use_javascript_ajax && !$forcecombo) {
1035  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
1036  $out .= ajax_combobox($htmlname, $events);
1037  }
1038 
1039  if (!empty($page)) {
1040  $out .= '<form method="post" action="'.$page.'">';
1041  $out .= '<input type="hidden" name="action" value="set_incoterms">';
1042  $out .= '<input type="hidden" name="token" value="'.newToken().'">';
1043  }
1044 
1045  $out .= '<select id="'.$htmlname.'" class="flat selectincoterm width75" name="'.$htmlname.'" '.$htmloption.'>';
1046  $out .= '<option value="0">&nbsp;</option>';
1047  $num = $this->db->num_rows($resql);
1048  $i = 0;
1049  if ($num) {
1050  while ($i < $num) {
1051  $obj = $this->db->fetch_object($resql);
1052  $incotermArray[$i]['rowid'] = $obj->rowid;
1053  $incotermArray[$i]['code'] = $obj->code;
1054  $i++;
1055  }
1056 
1057  foreach ($incotermArray as $row) {
1058  if ($selected && ($selected == $row['rowid'] || $selected == $row['code'])) {
1059  $out .= '<option value="'.$row['rowid'].'" selected>';
1060  } else {
1061  $out .= '<option value="'.$row['rowid'].'">';
1062  }
1063 
1064  if ($row['code']) {
1065  $out .= $row['code'];
1066  }
1067 
1068  $out .= '</option>';
1069  }
1070  }
1071  $out .= '</select>';
1072 
1073  if ($conf->use_javascript_ajax && empty($disableautocomplete)) {
1074  $out .= ajax_multiautocompleter('location_incoterms', '', DOL_URL_ROOT.'/core/ajax/locationincoterms.php')."\n";
1075  $moreattrib .= ' autocomplete="off"';
1076  }
1077  $out .= '<input id="location_incoterms" class="maxwidthonsmartphone type="text" name="location_incoterms" value="'.$location_incoterms.'">'."\n";
1078 
1079  if (!empty($page)) {
1080  $out .= '<input type="submit" class="button valignmiddle smallpaddingimp nomargintop nomarginbottom" value="'.$langs->trans("Modify").'"></form>';
1081  }
1082  } else {
1083  dol_print_error($this->db);
1084  }
1085 
1086  return $out;
1087  }
1088 
1089  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1101  public function select_type_of_lines($selected = '', $htmlname = 'type', $showempty = 0, $hidetext = 0, $forceall = 0)
1102  {
1103  // phpcs:enable
1104  global $langs, $conf;
1105 
1106  // If product & services are enabled or both disabled.
1107  if ($forceall == 1 || (empty($forceall) && !empty($conf->product->enabled) && !empty($conf->service->enabled))
1108  || (empty($forceall) && empty($conf->product->enabled) && empty($conf->service->enabled))) {
1109  if (empty($hidetext)) {
1110  print $langs->trans("Type").': ';
1111  }
1112  print '<select class="flat" id="select_'.$htmlname.'" name="'.$htmlname.'">';
1113  if ($showempty) {
1114  print '<option value="-1"';
1115  if ($selected == -1) {
1116  print ' selected';
1117  }
1118  print '>&nbsp;</option>';
1119  }
1120 
1121  print '<option value="0"';
1122  if (0 == $selected || ($selected == -1 && getDolGlobalString('MAIN_FREE_PRODUCT_CHECKED_BY_DEFAULT') == 'product')) {
1123  print ' selected';
1124  }
1125  print '>'.$langs->trans("Product");
1126 
1127  print '<option value="1"';
1128  if (1 == $selected || ($selected == -1 && getDolGlobalString('MAIN_FREE_PRODUCT_CHECKED_BY_DEFAULT') == 'service')) {
1129  print ' selected';
1130  }
1131  print '>'.$langs->trans("Service");
1132 
1133  print '</select>';
1134  print ajax_combobox('select_'.$htmlname);
1135  //if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
1136  }
1137  if ((empty($forceall) && empty($conf->product->enabled) && !empty($conf->service->enabled)) || $forceall == 3) {
1138  print $langs->trans("Service");
1139  print '<input type="hidden" name="'.$htmlname.'" value="1">';
1140  }
1141  if ((empty($forceall) && !empty($conf->product->enabled) && empty($conf->service->enabled)) || $forceall == 2) {
1142  print $langs->trans("Product");
1143  print '<input type="hidden" name="'.$htmlname.'" value="0">';
1144  }
1145  if ($forceall < 0) { // This should happened only for contracts when both predefined product and service are disabled.
1146  print '<input type="hidden" name="'.$htmlname.'" value="1">'; // By default we set on service for contract. If CONTRACT_SUPPORT_PRODUCTS is set, forceall should be 1 not -1
1147  }
1148  }
1149 
1150  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1156  public function load_cache_types_fees()
1157  {
1158  // phpcs:enable
1159  global $langs;
1160 
1161  $num = count($this->cache_types_fees);
1162  if ($num > 0) {
1163  return 0; // Cache already loaded
1164  }
1165 
1166  dol_syslog(__METHOD__, LOG_DEBUG);
1167 
1168  $langs->load("trips");
1169 
1170  $sql = "SELECT c.code, c.label";
1171  $sql .= " FROM ".$this->db->prefix()."c_type_fees as c";
1172  $sql .= " WHERE active > 0";
1173 
1174  $resql = $this->db->query($sql);
1175  if ($resql) {
1176  $num = $this->db->num_rows($resql);
1177  $i = 0;
1178 
1179  while ($i < $num) {
1180  $obj = $this->db->fetch_object($resql);
1181 
1182  // Si traduction existe, on l'utilise, sinon on prend le libelle par defaut
1183  $label = ($obj->code != $langs->trans($obj->code) ? $langs->trans($obj->code) : $langs->trans($obj->label));
1184  $this->cache_types_fees[$obj->code] = $label;
1185  $i++;
1186  }
1187 
1188  asort($this->cache_types_fees);
1189 
1190  return $num;
1191  } else {
1192  dol_print_error($this->db);
1193  return -1;
1194  }
1195  }
1196 
1197  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1206  public function select_type_fees($selected = '', $htmlname = 'type', $showempty = 0)
1207  {
1208  // phpcs:enable
1209  global $user, $langs;
1210 
1211  dol_syslog(__METHOD__." selected=".$selected.", htmlname=".$htmlname, LOG_DEBUG);
1212 
1213  $this->load_cache_types_fees();
1214 
1215  print '<select id="select_'.$htmlname.'" class="flat" name="'.$htmlname.'">';
1216  if ($showempty) {
1217  print '<option value="-1"';
1218  if ($selected == -1) {
1219  print ' selected';
1220  }
1221  print '>&nbsp;</option>';
1222  }
1223 
1224  foreach ($this->cache_types_fees as $key => $value) {
1225  print '<option value="'.$key.'"';
1226  if ($key == $selected) {
1227  print ' selected';
1228  }
1229  print '>';
1230  print $value;
1231  print '</option>';
1232  }
1233 
1234  print '</select>';
1235  if ($user->admin) {
1236  print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1237  }
1238  }
1239 
1240 
1241  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1263  public function select_company($selected = '', $htmlname = 'socid', $filter = '', $showempty = '', $showtype = 0, $forcecombo = 0, $events = array(), $limit = 0, $morecss = 'minwidth100', $moreparam = '', $selected_input_value = '', $hidelabel = 1, $ajaxoptions = array(), $multiple = false, $excludeids = array(), $showcode = 0)
1264  {
1265  // phpcs:enable
1266  global $conf, $user, $langs;
1267 
1268  $out = '';
1269 
1270  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->COMPANY_USE_SEARCH_TO_SELECT) && !$forcecombo) {
1271  if (is_null($ajaxoptions)) {
1272  $ajaxoptions = array();
1273  }
1274 
1275  require_once DOL_DOCUMENT_ROOT . '/core/lib/ajax.lib.php';
1276 
1277  // No immediate load of all database
1278  $placeholder = '';
1279  if ($selected && empty($selected_input_value)) {
1280  require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
1281  $societetmp = new Societe($this->db);
1282  $societetmp->fetch($selected);
1283  $selected_input_value = $societetmp->name;
1284  unset($societetmp);
1285  }
1286 
1287  // mode 1
1288  $urloption = 'htmlname='.urlencode(str_replace('.', '_', $htmlname)).'&outjson=1&filter='.urlencode($filter).(empty($excludeids) ? '' : '&excludeids='.join(',', $excludeids)).($showtype ? '&showtype='.urlencode($showtype) : '').($showcode ? '&showcode='.urlencode($showcode) : '');
1289 
1290  $out .= '<style type="text/css">.ui-autocomplete { z-index: 1003; }</style>';
1291  if (empty($hidelabel)) {
1292  print $langs->trans("RefOrLabel").' : ';
1293  } elseif ($hidelabel > 1) {
1294  $placeholder = $langs->trans("RefOrLabel");
1295  if ($hidelabel == 2) {
1296  $out .= img_picto($langs->trans("Search"), 'search');
1297  }
1298  }
1299  $out .= '<input type="text" class="'.$morecss.'" name="search_'.$htmlname.'" id="search_'.$htmlname.'" value="'.$selected_input_value.'"'.($placeholder ? ' placeholder="'.dol_escape_htmltag($placeholder).'"' : '').' '.(!empty($conf->global->THIRDPARTY_SEARCH_AUTOFOCUS) ? 'autofocus' : '').' />';
1300  if ($hidelabel == 3) {
1301  $out .= img_picto($langs->trans("Search"), 'search');
1302  }
1303 
1304  $out .= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/societe/ajax/company.php', $urloption, $conf->global->COMPANY_USE_SEARCH_TO_SELECT, 0, $ajaxoptions);
1305  } else {
1306  // Immediate load of all database
1307  $out .= $this->select_thirdparty_list($selected, $htmlname, $filter, $showempty, $showtype, $forcecombo, $events, '', 0, $limit, $morecss, $moreparam, $multiple, $excludeids, $showcode);
1308  }
1309 
1310  return $out;
1311  }
1312 
1313  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1335  public function select_thirdparty_list($selected = '', $htmlname = 'socid', $filter = '', $showempty = '', $showtype = 0, $forcecombo = 0, $events = array(), $filterkey = '', $outputmode = 0, $limit = 0, $morecss = 'minwidth100', $moreparam = '', $multiple = false, $excludeids = array(), $showcode = 0)
1336  {
1337  // phpcs:enable
1338  global $conf, $user, $langs;
1339  global $hookmanager;
1340 
1341  $out = '';
1342  $num = 0;
1343  $outarray = array();
1344 
1345  if ($selected === '') {
1346  $selected = array();
1347  } elseif (!is_array($selected)) {
1348  $selected = array($selected);
1349  }
1350 
1351  // Clean $filter that may contains sql conditions so sql code
1352  if (function_exists('testSqlAndScriptInject')) {
1353  if (testSqlAndScriptInject($filter, 3) > 0) {
1354  $filter = '';
1355  }
1356  }
1357 
1358  // We search companies
1359  $sql = "SELECT s.rowid, s.nom as name, s.name_alias, s.tva_intra, s.client, s.fournisseur, s.code_client, s.code_fournisseur";
1360  if (!empty($conf->global->COMPANY_SHOW_ADDRESS_SELECTLIST)) {
1361  $sql .= ", s.address, s.zip, s.town";
1362  $sql .= ", dictp.code as country_code";
1363  }
1364  $sql .= " FROM ".$this->db->prefix()."societe as s";
1365  if (!empty($conf->global->COMPANY_SHOW_ADDRESS_SELECTLIST)) {
1366  $sql .= " LEFT JOIN ".$this->db->prefix()."c_country as dictp ON dictp.rowid = s.fk_pays";
1367  }
1368  if (empty($user->rights->societe->client->voir) && !$user->socid) {
1369  $sql .= ", ".$this->db->prefix()."societe_commerciaux as sc";
1370  }
1371  $sql .= " WHERE s.entity IN (".getEntity('societe').")";
1372  if (!empty($user->socid)) {
1373  $sql .= " AND s.rowid = ".((int) $user->socid);
1374  }
1375  if ($filter) {
1376  $sql .= " AND (".$filter.")";
1377  }
1378  if (empty($user->rights->societe->client->voir) && !$user->socid) {
1379  $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
1380  }
1381  if (!empty($conf->global->COMPANY_HIDE_INACTIVE_IN_COMBOBOX)) {
1382  $sql .= " AND s.status <> 0";
1383  }
1384  if (!empty($excludeids)) {
1385  $sql .= " AND s.rowid NOT IN (".$this->db->sanitize(join(',', $excludeids)).")";
1386  }
1387  // Add where from hooks
1388  $parameters = array();
1389  $reshook = $hookmanager->executeHooks('selectThirdpartyListWhere', $parameters); // Note that $action and $object may have been modified by hook
1390  $sql .= $hookmanager->resPrint;
1391  // Add criteria
1392  if ($filterkey && $filterkey != '') {
1393  $sql .= " AND (";
1394  $prefix = empty($conf->global->COMPANY_DONOTSEARCH_ANYWHERE) ? '%' : ''; // Can use index if COMPANY_DONOTSEARCH_ANYWHERE is on
1395  // For natural search
1396  $scrit = explode(' ', $filterkey);
1397  $i = 0;
1398  if (count($scrit) > 1) {
1399  $sql .= "(";
1400  }
1401  foreach ($scrit as $crit) {
1402  if ($i > 0) {
1403  $sql .= " AND ";
1404  }
1405  $sql .= "(s.nom LIKE '".$this->db->escape($prefix.$crit)."%')";
1406  $i++;
1407  }
1408  if (count($scrit) > 1) {
1409  $sql .= ")";
1410  }
1411  if (!empty($conf->barcode->enabled)) {
1412  $sql .= " OR s.barcode LIKE '".$this->db->escape($prefix.$filterkey)."%'";
1413  }
1414  $sql .= " OR s.code_client LIKE '".$this->db->escape($prefix.$filterkey)."%' OR s.code_fournisseur LIKE '".$this->db->escape($prefix.$filterkey)."%'";
1415  $sql .= " OR s.name_alias LIKE '".$this->db->escape($prefix.$filterkey)."%' OR s.tva_intra LIKE '".$this->db->escape($prefix.$filterkey)."%'";
1416  $sql .= ")";
1417  }
1418  $sql .= $this->db->order("nom", "ASC");
1419  $sql .= $this->db->plimit($limit, 0);
1420 
1421  // Build output string
1422  dol_syslog(get_class($this)."::select_thirdparty_list", LOG_DEBUG);
1423  $resql = $this->db->query($sql);
1424  if ($resql) {
1425  if (!$forcecombo) {
1426  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
1427  $out .= ajax_combobox($htmlname, $events, getDolGlobalString("COMPANY_USE_SEARCH_TO_SELECT"));
1428  }
1429 
1430  // Construct $out and $outarray
1431  $out .= '<select id="'.$htmlname.'" class="flat'.($morecss ? ' '.$morecss : '').'"'.($moreparam ? ' '.$moreparam : '').' name="'.$htmlname.($multiple ? '[]' : '').'" '.($multiple ? 'multiple' : '').'>'."\n";
1432 
1433  $textifempty = (($showempty && !is_numeric($showempty)) ? $langs->trans($showempty) : '');
1434  if (!empty($conf->global->COMPANY_USE_SEARCH_TO_SELECT)) {
1435  // Do not use textifempty = ' ' or '&nbsp;' here, or search on key will search on ' key'.
1436  //if (! empty($conf->use_javascript_ajax) || $forcecombo) $textifempty='';
1437  if ($showempty && !is_numeric($showempty)) {
1438  $textifempty = $langs->trans($showempty);
1439  } else {
1440  $textifempty .= $langs->trans("All");
1441  }
1442  }
1443  if ($showempty) {
1444  $out .= '<option value="-1" data-html="'.dol_escape_htmltag('<span class="opacitymedium">'.($textifempty ? $textifempty : '&nbsp;').'</span>').'">'.$textifempty.'</option>'."\n";
1445  }
1446 
1447  $companytemp = new Societe($this->db);
1448 
1449  $num = $this->db->num_rows($resql);
1450  $i = 0;
1451  if ($num) {
1452  while ($i < $num) {
1453  $obj = $this->db->fetch_object($resql);
1454  $label = '';
1455  if ($showcode || !empty($conf->global->SOCIETE_ADD_REF_IN_LIST)) {
1456  if (($obj->client) && (!empty($obj->code_client))) {
1457  $label = $obj->code_client.' - ';
1458  }
1459  if (($obj->fournisseur) && (!empty($obj->code_fournisseur))) {
1460  $label .= $obj->code_fournisseur.' - ';
1461  }
1462  $label .= ' '.$obj->name;
1463  } else {
1464  $label = $obj->name;
1465  }
1466 
1467  if (!empty($obj->name_alias)) {
1468  $label .= ' ('.$obj->name_alias.')';
1469  }
1470 
1471  if (!empty($conf->global->SOCIETE_SHOW_VAT_IN_LIST) && !empty($obj->tva_intra)) {
1472  $label .= ' - '.$obj->tva_intra.'';
1473  }
1474 
1475  $labelhtml = $label;
1476 
1477  if ($showtype) {
1478  $companytemp->id = $obj->rowid;
1479  $companytemp->client = $obj->client;
1480  $companytemp->fournisseur = $obj->fournisseur;
1481  $tmptype = $companytemp->getTypeUrl(1, '', 0, 'span');
1482  if ($tmptype) {
1483  $labelhtml .= ' '.$tmptype;
1484  }
1485 
1486  if ($obj->client || $obj->fournisseur) {
1487  $label .= ' (';
1488  }
1489  if ($obj->client == 1 || $obj->client == 3) {
1490  $label .= $langs->trans("Customer");
1491  }
1492  if ($obj->client == 2 || $obj->client == 3) {
1493  $label .= ($obj->client == 3 ? ', ' : '').$langs->trans("Prospect");
1494  }
1495  if ($obj->fournisseur) {
1496  $label .= ($obj->client ? ', ' : '').$langs->trans("Supplier");
1497  }
1498  if ($obj->client || $obj->fournisseur) {
1499  $label .= ')';
1500  }
1501  }
1502 
1503  if (!empty($conf->global->COMPANY_SHOW_ADDRESS_SELECTLIST)) {
1504  $s = ($obj->address ? ' - '.$obj->address : '').($obj->zip ? ' - '.$obj->zip : '').($obj->town ? ' '.$obj->town : '');
1505  if (!empty($obj->country_code)) {
1506  $s .= ', '.$langs->trans('Country'.$obj->country_code);
1507  }
1508  $label .= $s;
1509  $labelhtml .= $s;
1510  }
1511 
1512  if (empty($outputmode)) {
1513  if (in_array($obj->rowid, $selected)) {
1514  $out .= '<option value="'.$obj->rowid.'" selected data-html="'.dol_escape_htmltag($labelhtml).'">'.$label.'</option>';
1515  } else {
1516  $out .= '<option value="'.$obj->rowid.'" data-html="'.dol_escape_htmltag($labelhtml).'">'.$label.'</option>';
1517  }
1518  } else {
1519  array_push($outarray, array('key'=>$obj->rowid, 'value'=>$label, 'label'=>$label, 'labelhtml'=>$labelhtml));
1520  }
1521 
1522  $i++;
1523  if (($i % 10) == 0) {
1524  $out .= "\n";
1525  }
1526  }
1527  }
1528  $out .= '</select>'."\n";
1529  } else {
1530  dol_print_error($this->db);
1531  }
1532 
1533  $this->result = array('nbofthirdparties'=>$num);
1534 
1535  if ($outputmode) {
1536  return $outarray;
1537  }
1538  return $out;
1539  }
1540 
1541 
1542  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1553  public function select_remises($selected, $htmlname, $filter, $socid, $maxvalue = 0)
1554  {
1555  // phpcs:enable
1556  global $langs, $conf;
1557 
1558  // On recherche les remises
1559  $sql = "SELECT re.rowid, re.amount_ht, re.amount_tva, re.amount_ttc,";
1560  $sql .= " re.description, re.fk_facture_source";
1561  $sql .= " FROM ".$this->db->prefix()."societe_remise_except as re";
1562  $sql .= " WHERE re.fk_soc = ".(int) $socid;
1563  $sql .= " AND re.entity = ".$conf->entity;
1564  if ($filter) {
1565  $sql .= " AND ".$filter;
1566  }
1567  $sql .= " ORDER BY re.description ASC";
1568 
1569  dol_syslog(get_class($this)."::select_remises", LOG_DEBUG);
1570  $resql = $this->db->query($sql);
1571  if ($resql) {
1572  print '<select id="select_'.$htmlname.'" class="flat maxwidthonsmartphone" name="'.$htmlname.'">';
1573  $num = $this->db->num_rows($resql);
1574 
1575  $qualifiedlines = $num;
1576 
1577  $i = 0;
1578  if ($num) {
1579  print '<option value="0">&nbsp;</option>';
1580  while ($i < $num) {
1581  $obj = $this->db->fetch_object($resql);
1582  $desc = dol_trunc($obj->description, 40);
1583  if (preg_match('/\(CREDIT_NOTE\)/', $desc)) {
1584  $desc = preg_replace('/\(CREDIT_NOTE\)/', $langs->trans("CreditNote"), $desc);
1585  }
1586  if (preg_match('/\(DEPOSIT\)/', $desc)) {
1587  $desc = preg_replace('/\(DEPOSIT\)/', $langs->trans("Deposit"), $desc);
1588  }
1589  if (preg_match('/\(EXCESS RECEIVED\)/', $desc)) {
1590  $desc = preg_replace('/\(EXCESS RECEIVED\)/', $langs->trans("ExcessReceived"), $desc);
1591  }
1592  if (preg_match('/\(EXCESS PAID\)/', $desc)) {
1593  $desc = preg_replace('/\(EXCESS PAID\)/', $langs->trans("ExcessPaid"), $desc);
1594  }
1595 
1596  $selectstring = '';
1597  if ($selected > 0 && $selected == $obj->rowid) {
1598  $selectstring = ' selected';
1599  }
1600 
1601  $disabled = '';
1602  if ($maxvalue > 0 && $obj->amount_ttc > $maxvalue) {
1603  $qualifiedlines--;
1604  $disabled = ' disabled';
1605  }
1606 
1607  if (!empty($conf->global->MAIN_SHOW_FACNUMBER_IN_DISCOUNT_LIST) && !empty($obj->fk_facture_source)) {
1608  $tmpfac = new Facture($this->db);
1609  if ($tmpfac->fetch($obj->fk_facture_source) > 0) {
1610  $desc = $desc.' - '.$tmpfac->ref;
1611  }
1612  }
1613 
1614  print '<option value="'.$obj->rowid.'"'.$selectstring.$disabled.'>'.$desc.' ('.price($obj->amount_ht).' '.$langs->trans("HT").' - '.price($obj->amount_ttc).' '.$langs->trans("TTC").')</option>';
1615  $i++;
1616  }
1617  }
1618  print '</select>';
1619  print ajax_combobox('select_'.$htmlname);
1620 
1621  return $qualifiedlines;
1622  } else {
1623  dol_print_error($this->db);
1624  return -1;
1625  }
1626  }
1627 
1628  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1649  public function select_contacts($socid, $selected = '', $htmlname = 'contactid', $showempty = 0, $exclude = '', $limitto = '', $showfunction = 0, $morecss = '', $showsoc = 0, $forcecombo = 0, $events = array(), $options_only = false, $moreparam = '', $htmlid = '')
1650  {
1651  // phpcs:enable
1652  print $this->selectcontacts($socid, $selected, $htmlname, $showempty, $exclude, $limitto, $showfunction, $morecss, $options_only, $showsoc, $forcecombo, $events, $moreparam, $htmlid);
1653  return $this->num;
1654  }
1655 
1680  public function selectcontacts($socid, $selected = '', $htmlname = 'contactid', $showempty = 0, $exclude = '', $limitto = '', $showfunction = 0, $morecss = '', $options_only = false, $showsoc = 0, $forcecombo = 0, $events = array(), $moreparam = '', $htmlid = '', $multiple = false, $disableifempty = 0)
1681  {
1682  global $conf, $langs, $hookmanager, $action;
1683 
1684  $langs->load('companies');
1685 
1686  if (empty($htmlid)) {
1687  $htmlid = $htmlname;
1688  }
1689  $num = 0;
1690 
1691  if ($selected === '') {
1692  $selected = array();
1693  } elseif (!is_array($selected)) {
1694  $selected = array($selected);
1695  }
1696  $out = '';
1697 
1698  if (!is_object($hookmanager)) {
1699  include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
1700  $hookmanager = new HookManager($this->db);
1701  }
1702 
1703  // We search third parties
1704  $sql = "SELECT sp.rowid, sp.lastname, sp.statut, sp.firstname, sp.poste, sp.email, sp.phone, sp.phone_perso, sp.phone_mobile, sp.town AS contact_town";
1705  if ($showsoc > 0 || !empty($conf->global->CONTACT_SHOW_EMAIL_PHONE_TOWN_SELECTLIST)) {
1706  $sql .= ", s.nom as company, s.town AS company_town";
1707  }
1708  $sql .= " FROM ".$this->db->prefix()."socpeople as sp";
1709  if ($showsoc > 0 || !empty($conf->global->CONTACT_SHOW_EMAIL_PHONE_TOWN_SELECTLIST)) {
1710  $sql .= " LEFT OUTER JOIN ".$this->db->prefix()."societe as s ON s.rowid=sp.fk_soc";
1711  }
1712  $sql .= " WHERE sp.entity IN (".getEntity('contact').")";
1713  if ($socid > 0 || $socid == -1) {
1714  $sql .= " AND sp.fk_soc = ".((int) $socid);
1715  }
1716  if (!empty($conf->global->CONTACT_HIDE_INACTIVE_IN_COMBOBOX)) {
1717  $sql .= " AND sp.statut <> 0";
1718  }
1719  // Add where from hooks
1720  $parameters = array();
1721  $reshook = $hookmanager->executeHooks('selectContactListWhere', $parameters); // Note that $action and $object may have been modified by hook
1722  $sql .= $hookmanager->resPrint;
1723  $sql .= " ORDER BY sp.lastname ASC";
1724 
1725  dol_syslog(get_class($this)."::selectcontacts", LOG_DEBUG);
1726  $resql = $this->db->query($sql);
1727  if ($resql) {
1728  $num = $this->db->num_rows($resql);
1729 
1730  if ($htmlname != 'none' && !$options_only) {
1731  $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" id="'.$htmlid.'" name="'.$htmlname.(($num || empty($disableifempty)) ? '' : ' disabled').($multiple ? '[]' : '').'" '.($multiple ? 'multiple' : '').' '.(!empty($moreparam) ? $moreparam : '').'>';
1732  }
1733 
1734  if ($showempty && ! is_numeric($showempty)) {
1735  $textforempty = $showempty;
1736  $out .= '<option class="optiongrey" value="-1"'.(in_array(-1, $selected) ? ' selected' : '').'>'.$textforempty.'</option>';
1737  } else {
1738  if (($showempty == 1 || ($showempty == 3 && $num > 1)) && ! $multiple) {
1739  $out .= '<option value="0"'.(in_array(0, $selected) ? ' selected' : '').'>&nbsp;</option>';
1740  }
1741  if ($showempty == 2) {
1742  $out .= '<option value="0"'.(in_array(0, $selected) ? ' selected' : '').'>-- '.$langs->trans("Internal").' --</option>';
1743  }
1744  }
1745 
1746  $i = 0;
1747  if ($num) {
1748  include_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
1749  $contactstatic = new Contact($this->db);
1750 
1751  while ($i < $num) {
1752  $obj = $this->db->fetch_object($resql);
1753 
1754  // Set email (or phones) and town extended infos
1755  $extendedInfos = '';
1756  if (!empty($conf->global->CONTACT_SHOW_EMAIL_PHONE_TOWN_SELECTLIST)) {
1757  $extendedInfos = array();
1758  $email = trim($obj->email);
1759  if (!empty($email)) {
1760  $extendedInfos[] = $email;
1761  } else {
1762  $phone = trim($obj->phone);
1763  $phone_perso = trim($obj->phone_perso);
1764  $phone_mobile = trim($obj->phone_mobile);
1765  if (!empty($phone)) {
1766  $extendedInfos[] = $phone;
1767  }
1768  if (!empty($phone_perso)) {
1769  $extendedInfos[] = $phone_perso;
1770  }
1771  if (!empty($phone_mobile)) {
1772  $extendedInfos[] = $phone_mobile;
1773  }
1774  }
1775  $contact_town = trim($obj->contact_town);
1776  $company_town = trim($obj->company_town);
1777  if (!empty($contact_town)) {
1778  $extendedInfos[] = $contact_town;
1779  } elseif (!empty($company_town)) {
1780  $extendedInfos[] = $company_town;
1781  }
1782  $extendedInfos = implode(' - ', $extendedInfos);
1783  if (!empty($extendedInfos)) {
1784  $extendedInfos = ' - '.$extendedInfos;
1785  }
1786  }
1787 
1788  $contactstatic->id = $obj->rowid;
1789  $contactstatic->lastname = $obj->lastname;
1790  $contactstatic->firstname = $obj->firstname;
1791  if ($obj->statut == 1) {
1792  if ($htmlname != 'none') {
1793  $disabled = 0;
1794  if (is_array($exclude) && count($exclude) && in_array($obj->rowid, $exclude)) {
1795  $disabled = 1;
1796  }
1797  if (is_array($limitto) && count($limitto) && !in_array($obj->rowid, $limitto)) {
1798  $disabled = 1;
1799  }
1800  if (!empty($selected) && in_array($obj->rowid, $selected)) {
1801  $out .= '<option value="'.$obj->rowid.'"';
1802  if ($disabled) {
1803  $out .= ' disabled';
1804  }
1805  $out .= ' selected>';
1806  $out .= $contactstatic->getFullName($langs).$extendedInfos;
1807  if ($showfunction && $obj->poste) {
1808  $out .= ' ('.$obj->poste.')';
1809  }
1810  if (($showsoc > 0) && $obj->company) {
1811  $out .= ' - ('.$obj->company.')';
1812  }
1813  $out .= '</option>';
1814  } else {
1815  $out .= '<option value="'.$obj->rowid.'"';
1816  if ($disabled) {
1817  $out .= ' disabled';
1818  }
1819  $out .= '>';
1820  $out .= $contactstatic->getFullName($langs).$extendedInfos;
1821  if ($showfunction && $obj->poste) {
1822  $out .= ' ('.$obj->poste.')';
1823  }
1824  if (($showsoc > 0) && $obj->company) {
1825  $out .= ' - ('.$obj->company.')';
1826  }
1827  $out .= '</option>';
1828  }
1829  } else {
1830  if (in_array($obj->rowid, $selected)) {
1831  $out .= $contactstatic->getFullName($langs).$extendedInfos;
1832  if ($showfunction && $obj->poste) {
1833  $out .= ' ('.$obj->poste.')';
1834  }
1835  if (($showsoc > 0) && $obj->company) {
1836  $out .= ' - ('.$obj->company.')';
1837  }
1838  }
1839  }
1840  }
1841  $i++;
1842  }
1843  } else {
1844  $labeltoshow = ($socid != -1) ? ($langs->trans($socid ? "NoContactDefinedForThirdParty" : "NoContactDefined")) : $langs->trans('SelectAThirdPartyFirst');
1845  $out .= '<option class="disabled" value="-1"'.(($showempty == 2 || $multiple) ? '' : ' selected').' disabled="disabled">';
1846  $out .= $labeltoshow;
1847  $out .= '</option>';
1848  }
1849 
1850  $parameters = array(
1851  'socid'=>$socid,
1852  'htmlname'=>$htmlname,
1853  'resql'=>$resql,
1854  'out'=>&$out,
1855  'showfunction'=>$showfunction,
1856  'showsoc'=>$showsoc,
1857  );
1858 
1859  $reshook = $hookmanager->executeHooks('afterSelectContactOptions', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1860 
1861  if ($htmlname != 'none' && !$options_only) {
1862  $out .= '</select>';
1863  }
1864 
1865  if ($conf->use_javascript_ajax && !$forcecombo && !$options_only) {
1866  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
1867  $out .= ajax_combobox($htmlid, $events, getDolGlobalString("CONTACT_USE_SEARCH_TO_SELECT"));
1868  }
1869 
1870  $this->num = $num;
1871  return $out;
1872  } else {
1873  dol_print_error($this->db);
1874  return -1;
1875  }
1876  }
1877 
1878  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1894  public function select_users($selected = '', $htmlname = 'userid', $show_empty = 0, $exclude = null, $disabled = 0, $include = '', $enableonly = '', $force_entity = '0')
1895  {
1896  // phpcs:enable
1897  print $this->select_dolusers($selected, $htmlname, $show_empty, $exclude, $disabled, $include, $enableonly, $force_entity);
1898  }
1899 
1900  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1925  public function select_dolusers($selected = '', $htmlname = 'userid', $show_empty = 0, $exclude = null, $disabled = 0, $include = '', $enableonly = '', $force_entity = '0', $maxlength = 0, $showstatus = 0, $morefilter = '', $show_every = 0, $enableonlytext = '', $morecss = '', $noactive = 0, $outputmode = 0, $multiple = false, $forcecombo = 0)
1926  {
1927  // phpcs:enable
1928  global $conf, $user, $langs, $hookmanager;
1929  global $action;
1930 
1931  // If no preselected user defined, we take current user
1932  if ((is_numeric($selected) && ($selected < -2 || empty($selected))) && empty($conf->global->SOCIETE_DISABLE_DEFAULT_SALESREPRESENTATIVE)) {
1933  $selected = $user->id;
1934  }
1935 
1936  if ($selected === '') {
1937  $selected = array();
1938  } elseif (!is_array($selected)) {
1939  $selected = array($selected);
1940  }
1941 
1942  $excludeUsers = null;
1943  $includeUsers = null;
1944 
1945  // Permettre l'exclusion d'utilisateurs
1946  if (is_array($exclude)) {
1947  $excludeUsers = implode(",", $exclude);
1948  }
1949  // Permettre l'inclusion d'utilisateurs
1950  if (is_array($include)) {
1951  $includeUsers = implode(",", $include);
1952  } elseif ($include == 'hierarchy') {
1953  // Build list includeUsers to have only hierarchy
1954  $includeUsers = implode(",", $user->getAllChildIds(0));
1955  } elseif ($include == 'hierarchyme') {
1956  // Build list includeUsers to have only hierarchy and current user
1957  $includeUsers = implode(",", $user->getAllChildIds(1));
1958  }
1959 
1960  $out = '';
1961  $outarray = array();
1962 
1963  // Forge request to select users
1964  $sql = "SELECT DISTINCT u.rowid, u.lastname as lastname, u.firstname, u.statut as status, u.login, u.admin, u.entity, u.photo";
1965  if (!empty($conf->multicompany->enabled) && $conf->entity == 1 && $user->admin && !$user->entity) {
1966  $sql .= ", e.label";
1967  }
1968  $sql .= " FROM ".$this->db->prefix()."user as u";
1969  if (!empty($conf->multicompany->enabled) && $conf->entity == 1 && $user->admin && !$user->entity) {
1970  $sql .= " LEFT JOIN ".$this->db->prefix()."entity as e ON e.rowid = u.entity";
1971  if ($force_entity) {
1972  $sql .= " WHERE u.entity IN (0, ".$this->db->sanitize($force_entity).")";
1973  } else {
1974  $sql .= " WHERE u.entity IS NOT NULL";
1975  }
1976  } else {
1977  if (!empty($conf->multicompany->enabled) && !empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) {
1978  $sql .= " LEFT JOIN ".$this->db->prefix()."usergroup_user as ug";
1979  $sql .= " ON ug.fk_user = u.rowid";
1980  $sql .= " WHERE ug.entity = ".$conf->entity;
1981  } else {
1982  $sql .= " WHERE u.entity IN (0, ".$conf->entity.")";
1983  }
1984  }
1985  if (!empty($user->socid)) {
1986  $sql .= " AND u.fk_soc = ".((int) $user->socid);
1987  }
1988  if (is_array($exclude) && $excludeUsers) {
1989  $sql .= " AND u.rowid NOT IN (".$this->db->sanitize($excludeUsers).")";
1990  }
1991  if ($includeUsers) {
1992  $sql .= " AND u.rowid IN (".$this->db->sanitize($includeUsers).")";
1993  }
1994  if (!empty($conf->global->USER_HIDE_INACTIVE_IN_COMBOBOX) || $noactive) {
1995  $sql .= " AND u.statut <> 0";
1996  }
1997  if (!empty($morefilter)) {
1998  $sql .= " ".$morefilter;
1999  }
2000 
2001  //Add hook to filter on user (for exemple on usergroup define in custom modules)
2002  $reshook = $hookmanager->executeHooks('addSQLWhereFilterOnSelectUsers', array(), $this, $action);
2003  if (!empty($reshook)) {
2004  $sql .= $hookmanager->resPrint;
2005  }
2006 
2007  if (empty($conf->global->MAIN_FIRSTNAME_NAME_POSITION)) { // MAIN_FIRSTNAME_NAME_POSITION is 0 means firstname+lastname
2008  $sql .= " ORDER BY u.statut DESC, u.firstname ASC, u.lastname ASC";
2009  } else {
2010  $sql .= " ORDER BY u.statut DESC, u.lastname ASC, u.firstname ASC";
2011  }
2012 
2013  dol_syslog(get_class($this)."::select_dolusers", LOG_DEBUG);
2014 
2015  $resql = $this->db->query($sql);
2016  if ($resql) {
2017  $num = $this->db->num_rows($resql);
2018  $i = 0;
2019  if ($num) {
2020  // do not use maxwidthonsmartphone by default. Set it by caller so auto size to 100% will work when not defined
2021  $out .= '<select class="flat'.($morecss ? ' '.$morecss : ' minwidth200').'" id="'.$htmlname.'" name="'.$htmlname.($multiple ? '[]' : '').'" '.($multiple ? 'multiple' : '').' '.($disabled ? ' disabled' : '').'>';
2022  if ($show_empty && !$multiple) {
2023  $textforempty = ' ';
2024  if (!empty($conf->use_javascript_ajax)) {
2025  $textforempty = '&nbsp;'; // If we use ajaxcombo, we need &nbsp; here to avoid to have an empty element that is too small.
2026  }
2027  if (!is_numeric($show_empty)) {
2028  $textforempty = $show_empty;
2029  }
2030  $out .= '<option class="optiongrey" value="'.($show_empty < 0 ? $show_empty : -1).'"'.((empty($selected) || in_array(-1, $selected)) ? ' selected' : '').'>'.$textforempty.'</option>'."\n";
2031  }
2032  if ($show_every) {
2033  $out .= '<option value="-2"'.((in_array(-2, $selected)) ? ' selected' : '').'>-- '.$langs->trans("Everybody").' --</option>'."\n";
2034  }
2035 
2036  $userstatic = new User($this->db);
2037 
2038  while ($i < $num) {
2039  $obj = $this->db->fetch_object($resql);
2040 
2041  $userstatic->id = $obj->rowid;
2042  $userstatic->lastname = $obj->lastname;
2043  $userstatic->firstname = $obj->firstname;
2044  $userstatic->photo = $obj->photo;
2045  $userstatic->statut = $obj->status;
2046  $userstatic->entity = $obj->entity;
2047  $userstatic->admin = $obj->admin;
2048 
2049  $disableline = '';
2050  if (is_array($enableonly) && count($enableonly) && !in_array($obj->rowid, $enableonly)) {
2051  $disableline = ($enableonlytext ? $enableonlytext : '1');
2052  }
2053 
2054  $labeltoshow = '';
2055 
2056  // $fullNameMode is 0=Lastname+Firstname (MAIN_FIRSTNAME_NAME_POSITION=1), 1=Firstname+Lastname (MAIN_FIRSTNAME_NAME_POSITION=0)
2057  $fullNameMode = 0;
2058  if (empty($conf->global->MAIN_FIRSTNAME_NAME_POSITION)) {
2059  $fullNameMode = 1; //Firstname+lastname
2060  }
2061  $labeltoshow .= $userstatic->getFullName($langs, $fullNameMode, -1, $maxlength);
2062  if (empty($obj->firstname) && empty($obj->lastname)) {
2063  $labeltoshow .= $obj->login;
2064  }
2065 
2066  // Complete name with more info
2067  $moreinfo = '';
2068  if (!empty($conf->global->MAIN_SHOW_LOGIN)) {
2069  $moreinfo .= ($moreinfo ? ' - ' : ' (').$obj->login;
2070  }
2071  if ($showstatus >= 0) {
2072  if ($obj->status == 1 && $showstatus == 1) {
2073  $moreinfo .= ($moreinfo ? ' - ' : ' (').$langs->trans('Enabled');
2074  }
2075  if ($obj->status == 0 && $showstatus == 1) {
2076  $moreinfo .= ($moreinfo ? ' - ' : ' (').$langs->trans('Disabled');
2077  }
2078  }
2079  if (!empty($conf->multicompany->enabled) && empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE) && $conf->entity == 1 && $user->admin && !$user->entity) {
2080  if (!$obj->entity) {
2081  $moreinfo .= ($moreinfo ? ' - ' : ' (').$langs->trans("AllEntities");
2082  } else {
2083  if ($obj->entity != $conf->entity) {
2084  $moreinfo .= ($moreinfo ? ' - ' : ' (').($obj->label ? $obj->label : $langs->trans("EntityNameNotDefined"));
2085  }
2086  }
2087  }
2088  $moreinfo .= ($moreinfo ? ')' : '');
2089  if ($disableline && $disableline != '1') {
2090  $moreinfo .= ' - '.$disableline; // This is text from $enableonlytext parameter
2091  }
2092  $labeltoshow .= $moreinfo;
2093 
2094  $out .= '<option value="'.$obj->rowid.'"';
2095  if ($disableline) {
2096  $out .= ' disabled';
2097  }
2098  if ((is_object($selected) && $selected->id == $obj->rowid) || (!is_object($selected) && in_array($obj->rowid, $selected))) {
2099  $out .= ' selected';
2100  }
2101  $out .= ' data-html="';
2102  $outhtml = '';
2103  // if (!empty($obj->photo)) {
2104  $outhtml .= $userstatic->getNomUrl(-3, '', 0, 1, 24, 1, 'login', '', 1).' ';
2105  // }
2106  if ($showstatus >= 0 && $obj->status == 0) {
2107  $outhtml .= '<strike class="opacitymediumxxx">';
2108  }
2109  $outhtml .= $labeltoshow;
2110  if ($showstatus >= 0 && $obj->status == 0) {
2111  $outhtml .= '</strike>';
2112  }
2113  $out .= dol_escape_htmltag($outhtml);
2114  $out .= '">';
2115  $out .= $labeltoshow;
2116  $out .= '</option>';
2117 
2118  $outarray[$userstatic->id] = $userstatic->getFullName($langs, $fullNameMode, -1, $maxlength).$moreinfo;
2119 
2120  $i++;
2121  }
2122  } else {
2123  $out .= '<select class="flat" id="'.$htmlname.'" name="'.$htmlname.'" disabled>';
2124  $out .= '<option value="">'.$langs->trans("None").'</option>';
2125  }
2126  $out .= '</select>';
2127 
2128  if ($num && !$forcecombo) {
2129  // Enhance with select2
2130  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
2131  $out .= ajax_combobox($htmlname);
2132  }
2133  } else {
2134  dol_print_error($this->db);
2135  }
2136 
2137  if ($outputmode) {
2138  return $outarray;
2139  }
2140 
2141  return $out;
2142  }
2143 
2144 
2145  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2168  public function select_dolusers_forevent($action = '', $htmlname = 'userid', $show_empty = 0, $exclude = null, $disabled = 0, $include = '', $enableonly = '', $force_entity = '0', $maxlength = 0, $showstatus = 0, $morefilter = '', $showproperties = 0, $listofuserid = array(), $listofcontactid = array(), $listofotherid = array())
2169  {
2170  // phpcs:enable
2171  global $conf, $user, $langs;
2172 
2173  $userstatic = new User($this->db);
2174  $out = '';
2175 
2176 
2177  $assignedtouser = array();
2178  if (!empty($_SESSION['assignedtouser'])) {
2179  $assignedtouser = json_decode($_SESSION['assignedtouser'], true);
2180  }
2181  $nbassignetouser = count($assignedtouser);
2182 
2183  //if ($nbassignetouser && $action != 'view') $out .= '<br>';
2184  if ($nbassignetouser) {
2185  $out .= '<ul class="attendees">';
2186  }
2187  $i = 0;
2188  $ownerid = 0;
2189  foreach ($assignedtouser as $key => $value) {
2190  if ($value['id'] == $ownerid) {
2191  continue;
2192  }
2193 
2194  $out .= '<li>';
2195  $userstatic->fetch($value['id']);
2196  $out .= $userstatic->getNomUrl(-1);
2197  if ($i == 0) {
2198  $ownerid = $value['id'];
2199  $out .= ' ('.$langs->trans("Owner").')';
2200  }
2201  if ($nbassignetouser > 1 && $action != 'view') {
2202  $out .= ' <input type="image" style="border: 0px;" src="'.img_picto($langs->trans("Remove"), 'delete', '', 0, 1).'" value="'.$userstatic->id.'" class="removedassigned reposition" id="removedassigned_'.$userstatic->id.'" name="removedassigned_'.$userstatic->id.'">';
2203  }
2204  // Show my availability
2205  if ($showproperties) {
2206  if ($ownerid == $value['id'] && is_array($listofuserid) && count($listofuserid) && in_array($ownerid, array_keys($listofuserid))) {
2207  $out .= '<div class="myavailability inline-block">';
2208  $out .= '<span class="hideonsmartphone">&nbsp;-&nbsp;<span class="opacitymedium">'.$langs->trans("Availability").':</span> </span><input id="transparency" class="paddingrightonly" '.($action == 'view' ? 'disabled' : '').' type="checkbox" name="transparency"'.($listofuserid[$ownerid]['transparency'] ? ' checked' : '').'><label for="transparency">'.$langs->trans("Busy").'</label>';
2209  $out .= '</div>';
2210  }
2211  }
2212  //$out.=' '.($value['mandatory']?$langs->trans("Mandatory"):$langs->trans("Optional"));
2213  //$out.=' '.($value['transparency']?$langs->trans("Busy"):$langs->trans("NotBusy"));
2214 
2215  $out .= '</li>';
2216  $i++;
2217  }
2218  if ($nbassignetouser) {
2219  $out .= '</ul>';
2220  }
2221 
2222  // Method with no ajax
2223  if ($action != 'view') {
2224  $out .= '<input type="hidden" class="removedassignedhidden" name="removedassigned" value="">';
2225  $out .= '<script type="text/javascript">jQuery(document).ready(function () {';
2226  $out .= 'jQuery(".removedassigned").click(function() { jQuery(".removedassignedhidden").val(jQuery(this).val()); });';
2227  $out .= 'jQuery(".assignedtouser").change(function() { console.log(jQuery(".assignedtouser option:selected").val());';
2228  $out .= ' if (jQuery(".assignedtouser option:selected").val() > 0) { jQuery("#'.$action.'assignedtouser").attr("disabled", false); }';
2229  $out .= ' else { jQuery("#'.$action.'assignedtouser").attr("disabled", true); }';
2230  $out .= '});';
2231  $out .= '})</script>';
2232  $out .= $this->select_dolusers('', $htmlname, $show_empty, $exclude, $disabled, $include, $enableonly, $force_entity, $maxlength, $showstatus, $morefilter);
2233  $out .= ' <input type="submit" disabled class="button valignmiddle smallpaddingimp reposition" id="'.$action.'assignedtouser" name="'.$action.'assignedtouser" value="'.dol_escape_htmltag($langs->trans("Add")).'">';
2234  $out .= '<br>';
2235  }
2236 
2237  return $out;
2238  }
2239 
2240 
2241  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2269  public function select_produits($selected = '', $htmlname = 'productid', $filtertype = '', $limit = 0, $price_level = 0, $status = 1, $finished = 2, $selected_input_value = '', $hidelabel = 0, $ajaxoptions = array(), $socid = 0, $showempty = '1', $forcecombo = 0, $morecss = '', $hidepriceinlabel = 0, $warehouseStatus = '', $selected_combinations = null, $nooutput = 0, $status_purchase = -1)
2270  {
2271  // phpcs:enable
2272  global $langs, $conf;
2273 
2274  $out = '';
2275 
2276  // check parameters
2277  $price_level = (!empty($price_level) ? $price_level : 0);
2278  if (is_null($ajaxoptions)) {
2279  $ajaxoptions = array();
2280  }
2281 
2282  if (strval($filtertype) === '' && (!empty($conf->product->enabled) || !empty($conf->service->enabled))) {
2283  if (!empty($conf->product->enabled) && empty($conf->service->enabled)) {
2284  $filtertype = '0';
2285  } elseif (empty($conf->product->enabled) && !empty($conf->service->enabled)) {
2286  $filtertype = '1';
2287  }
2288  }
2289 
2290  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->PRODUIT_USE_SEARCH_TO_SELECT)) {
2291  $placeholder = '';
2292 
2293  if ($selected && empty($selected_input_value)) {
2294  require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
2295  $producttmpselect = new Product($this->db);
2296  $producttmpselect->fetch($selected);
2297  $selected_input_value = $producttmpselect->ref;
2298  unset($producttmpselect);
2299  }
2300  // handle case where product or service module is disabled + no filter specified
2301  if ($filtertype == '') {
2302  if (empty($conf->product->enabled)) { // when product module is disabled, show services only
2303  $filtertype = 1;
2304  } elseif (empty($conf->service->enabled)) { // when service module is disabled, show products only
2305  $filtertype = 0;
2306  }
2307  }
2308  // mode=1 means customers products
2309  $urloption = 'htmlname='.$htmlname.'&outjson=1&price_level='.$price_level.'&type='.$filtertype.'&mode=1&status='.$status.'&status_purchase='.$status_purchase.'&finished='.$finished.'&hidepriceinlabel='.$hidepriceinlabel.'&warehousestatus='.$warehouseStatus;
2310  //Price by customer
2311  if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES) && !empty($socid)) {
2312  $urloption .= '&socid='.$socid;
2313  }
2314  $out .= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/product/ajax/products.php', $urloption, $conf->global->PRODUIT_USE_SEARCH_TO_SELECT, 1, $ajaxoptions);
2315 
2316  if (!empty($conf->variants->enabled) && is_array($selected_combinations)) {
2317  // Code to automatically insert with javascript the select of attributes under the select of product
2318  // when a parent of variant has been selected.
2319  $out .= '
2320  <!-- script to auto show attributes select tags if a variant was selected -->
2321  <script>
2322  // auto show attributes fields
2323  selected = '.json_encode($selected_combinations).';
2324  combvalues = {};
2325 
2326  jQuery(document).ready(function () {
2327 
2328  jQuery("input[name=\'prod_entry_mode\']").change(function () {
2329  if (jQuery(this).val() == \'free\') {
2330  jQuery(\'div#attributes_box\').empty();
2331  }
2332  });
2333 
2334  jQuery("input#'.$htmlname.'").change(function () {
2335 
2336  if (!jQuery(this).val()) {
2337  jQuery(\'div#attributes_box\').empty();
2338  return;
2339  }
2340 
2341  console.log("A change has started. We get variants fields to inject html select");
2342 
2343  jQuery.getJSON("'.DOL_URL_ROOT.'/variants/ajax/getCombinations.php", {
2344  id: jQuery(this).val()
2345  }, function (data) {
2346  jQuery(\'div#attributes_box\').empty();
2347 
2348  jQuery.each(data, function (key, val) {
2349 
2350  combvalues[val.id] = val.values;
2351 
2352  var span = jQuery(document.createElement(\'div\')).css({
2353  \'display\': \'table-row\'
2354  });
2355 
2356  span.append(
2357  jQuery(document.createElement(\'div\')).text(val.label).css({
2358  \'font-weight\': \'bold\',
2359  \'display\': \'table-cell\'
2360  })
2361  );
2362 
2363  var html = jQuery(document.createElement(\'select\')).attr(\'name\', \'combinations[\' + val.id + \']\').css({
2364  \'margin-left\': \'15px\',
2365  \'white-space\': \'pre\'
2366  }).append(
2367  jQuery(document.createElement(\'option\')).val(\'\')
2368  );
2369 
2370  jQuery.each(combvalues[val.id], function (key, val) {
2371  var tag = jQuery(document.createElement(\'option\')).val(val.id).html(val.value);
2372 
2373  if (selected[val.fk_product_attribute] == val.id) {
2374  tag.attr(\'selected\', \'selected\');
2375  }
2376 
2377  html.append(tag);
2378  });
2379 
2380  span.append(html);
2381  jQuery(\'div#attributes_box\').append(span);
2382  });
2383  })
2384  });
2385 
2386  '.($selected ? 'jQuery("input#'.$htmlname.'").change();' : '').'
2387  });
2388  </script>
2389  ';
2390  }
2391 
2392  if (empty($hidelabel)) {
2393  $out .= $langs->trans("RefOrLabel").' : ';
2394  } elseif ($hidelabel > 1) {
2395  $placeholder = ' placeholder="'.$langs->trans("RefOrLabel").'"';
2396  if ($hidelabel == 2) {
2397  $out .= img_picto($langs->trans("Search"), 'search');
2398  }
2399  }
2400  $out .= '<input type="text" class="minwidth100'.($morecss ? ' '.$morecss : '').'" name="search_'.$htmlname.'" id="search_'.$htmlname.'" value="'.$selected_input_value.'"'.$placeholder.' '.(!empty($conf->global->PRODUCT_SEARCH_AUTOFOCUS) ? 'autofocus' : '').' />';
2401  if ($hidelabel == 3) {
2402  $out .= img_picto($langs->trans("Search"), 'search');
2403  }
2404  } else {
2405  $out .= $this->select_produits_list($selected, $htmlname, $filtertype, $limit, $price_level, '', $status, $finished, 0, $socid, $showempty, $forcecombo, $morecss, $hidepriceinlabel, $warehouseStatus, $status_purchase);
2406  }
2407 
2408  if (empty($nooutput)) {
2409  print $out;
2410  } else {
2411  return $out;
2412  }
2413  }
2414 
2415  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2416 
2431  public function select_bom($selected = '', $htmlname = 'bom_id', $limit = 0, $status = 1, $type = 1, $showempty = '1', $morecss = '', $nooutput = '', $forcecombo = 0)
2432  {
2433  // phpcs:enable
2434  global $conf, $user, $langs, $db;
2435 
2436  require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
2437 
2438  $error = 0;
2439  $out = '';
2440 
2441  if (!$forcecombo) {
2442  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
2443  $events = array();
2444  $out .= ajax_combobox($htmlname, $events, getDolGlobalInt("PRODUIT_USE_SEARCH_TO_SELECT"));
2445  }
2446 
2447  $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" id="'.$htmlname.'">';
2448 
2449  $sql = 'SELECT b.rowid, b.ref, b.label, b.fk_product';
2450  $sql.= ' FROM '.MAIN_DB_PREFIX.'bom_bom as b';
2451  $sql.= ' WHERE b.entity IN ('.getEntity('bom').')';
2452  if (!empty($status)) $sql.= ' AND status = '. (int) $status;
2453  if (!empty($type)) $sql.= ' AND status = '. (int) $type;
2454  if (!empty($limit)) $sql.= 'LIMIT '. (int) $limit;
2455  $resql = $db->query($sql);
2456  if ($resql) {
2457  if ($showempty) {
2458  $out .= '<option value="-1"';
2459  if (empty($selected)) $out .= ' selected';
2460  $out .= '>&nbsp;</option>';
2461  }
2462  while ($obj = $db->fetch_object($resql)) {
2463  $product = new Product($db);
2464  $res = $product->fetch($obj->fk_product);
2465  if ($obj->rowid == $selected) $out .= '<option value="'.$obj->rowid.'" selected>'.$obj->ref.' - '. $product->label .' - '.$obj->label.'</option>';
2466  $out .= '<option value="'.$obj->rowid.'">'.$obj->ref.' - '.$product->label .' - '. $obj->label.'</option>';
2467  }
2468  } else {
2469  $error++;
2470  dol_print_error($db);
2471  }
2472  if (empty($nooutput)) {
2473  print $out;
2474  } else {
2475  return $out;
2476  }
2477  }
2478 
2479  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2505  public function select_produits_list($selected = '', $htmlname = 'productid', $filtertype = '', $limit = 20, $price_level = 0, $filterkey = '', $status = 1, $finished = 2, $outputmode = 0, $socid = 0, $showempty = '1', $forcecombo = 0, $morecss = '', $hidepriceinlabel = 0, $warehouseStatus = '', $status_purchase = -1)
2506  {
2507  // phpcs:enable
2508  global $langs, $conf;
2509  global $hookmanager;
2510 
2511  $out = '';
2512  $outarray = array();
2513 
2514  // Units
2515  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
2516  $langs->load('other');
2517  }
2518 
2519  $warehouseStatusArray = array();
2520  if (!empty($warehouseStatus)) {
2521  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
2522  if (preg_match('/warehouseclosed/', $warehouseStatus)) {
2523  $warehouseStatusArray[] = Entrepot::STATUS_CLOSED;
2524  }
2525  if (preg_match('/warehouseopen/', $warehouseStatus)) {
2526  $warehouseStatusArray[] = Entrepot::STATUS_OPEN_ALL;
2527  }
2528  if (preg_match('/warehouseinternal/', $warehouseStatus)) {
2529  $warehouseStatusArray[] = Entrepot::STATUS_OPEN_INTERNAL;
2530  }
2531  }
2532 
2533  $selectFields = " p.rowid, p.ref, p.label, p.description, p.barcode, p.fk_country, p.fk_product_type, p.price, p.price_ttc, p.price_base_type, p.tva_tx, p.default_vat_code, p.duration, p.fk_price_expression";
2534  if (count($warehouseStatusArray)) {
2535  $selectFieldsGrouped = ", sum(".$this->db->ifsql("e.statut IS NULL", "0", "ps.reel").") as stock"; // e.statut is null if there is no record in stock
2536  } else {
2537  $selectFieldsGrouped = ", ".$this->db->ifsql("p.stock IS NULL", 0, "p.stock")." AS stock";
2538  }
2539 
2540  $sql = "SELECT ";
2541  $sql .= $selectFields.$selectFieldsGrouped;
2542 
2543  if (!empty($conf->global->PRODUCT_SORT_BY_CATEGORY)) {
2544  //Product category
2545  $sql .= ", (SELECT ".$this->db->prefix()."categorie_product.fk_categorie
2546  FROM ".$this->db->prefix()."categorie_product
2547  WHERE ".$this->db->prefix()."categorie_product.fk_product=p.rowid
2548  LIMIT 1
2549  ) AS categorie_product_id ";
2550  }
2551 
2552  //Price by customer
2553  if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES) && !empty($socid)) {
2554  $sql .= ', pcp.rowid as idprodcustprice, pcp.price as custprice, pcp.price_ttc as custprice_ttc,';
2555  $sql .= ' pcp.price_base_type as custprice_base_type, pcp.tva_tx as custtva_tx, pcp.default_vat_code as custdefault_vat_code, pcp.ref_customer as custref';
2556  $selectFields .= ", idprodcustprice, custprice, custprice_ttc, custprice_base_type, custtva_tx, custdefault_vat_code, custref";
2557  }
2558  // Units
2559  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
2560  $sql .= ", u.label as unit_long, u.short_label as unit_short, p.weight, p.weight_units, p.length, p.length_units, p.width, p.width_units, p.height, p.height_units, p.surface, p.surface_units, p.volume, p.volume_units";
2561  $selectFields .= ', unit_long, unit_short, p.weight, p.weight_units, p.length, p.length_units, p.width, p.width_units, p.height, p.height_units, p.surface, p.surface_units, p.volume, p.volume_units';
2562  }
2563 
2564  // Multilang : we add translation
2565  if (!empty($conf->global->MAIN_MULTILANGS)) {
2566  $sql .= ", pl.label as label_translated";
2567  $sql .= ", pl.description as description_translated";
2568  $selectFields .= ", label_translated";
2569  $selectFields .= ", description_translated";
2570  }
2571  // Price by quantity
2572  if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY) || !empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES)) {
2573  $sql .= ", (SELECT pp.rowid FROM ".$this->db->prefix()."product_price as pp WHERE pp.fk_product = p.rowid";
2574  if ($price_level >= 1 && !empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES)) {
2575  $sql .= " AND price_level = ".((int) $price_level);
2576  }
2577  $sql .= " ORDER BY date_price";
2578  $sql .= " DESC LIMIT 1) as price_rowid";
2579  $sql .= ", (SELECT pp.price_by_qty FROM ".$this->db->prefix()."product_price as pp WHERE pp.fk_product = p.rowid"; // price_by_qty is 1 if some prices by qty exists in subtable
2580  if ($price_level >= 1 && !empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES)) {
2581  $sql .= " AND price_level = ".((int) $price_level);
2582  }
2583  $sql .= " ORDER BY date_price";
2584  $sql .= " DESC LIMIT 1) as price_by_qty";
2585  $selectFields .= ", price_rowid, price_by_qty";
2586  }
2587  $sql .= " FROM ".$this->db->prefix()."product as p";
2588  if (count($warehouseStatusArray)) {
2589  $sql .= " LEFT JOIN ".$this->db->prefix()."product_stock as ps on ps.fk_product = p.rowid";
2590  $sql .= " LEFT JOIN ".$this->db->prefix()."entrepot as e on ps.fk_entrepot = e.rowid AND e.entity IN (".getEntity('stock').")";
2591  $sql .= ' AND e.statut IN ('.$this->db->sanitize($this->db->escape(implode(',', $warehouseStatusArray))).')'; // Return line if product is inside the selected stock. If not, an empty line will be returned so we will count 0.
2592  }
2593 
2594  // include search in supplier ref
2595  if (!empty($conf->global->MAIN_SEARCH_PRODUCT_BY_FOURN_REF)) {
2596  $sql .= " LEFT JOIN ".$this->db->prefix()."product_fournisseur_price as pfp ON p.rowid = pfp.fk_product";
2597  }
2598 
2599  //Price by customer
2600  if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES) && !empty($socid)) {
2601  $sql .= " LEFT JOIN ".$this->db->prefix()."product_customer_price as pcp ON pcp.fk_soc=".((int) $socid)." AND pcp.fk_product=p.rowid";
2602  }
2603  // Units
2604  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
2605  $sql .= " LEFT JOIN ".$this->db->prefix()."c_units u ON u.rowid = p.fk_unit";
2606  }
2607  // Multilang : we add translation
2608  if (!empty($conf->global->MAIN_MULTILANGS)) {
2609  $sql .= " LEFT JOIN ".$this->db->prefix()."product_lang as pl ON pl.fk_product = p.rowid ";
2610  if (!empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE) && !empty($socid)) {
2611  require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
2612  $soc = new Societe($this->db);
2613  $result = $soc->fetch($socid);
2614  if ($result > 0 && !empty($soc->default_lang)) {
2615  $sql .= " AND pl.lang = '".$this->db->escape($soc->default_lang)."'";
2616  } else {
2617  $sql .= " AND pl.lang = '".$this->db->escape($langs->getDefaultLang())."'";
2618  }
2619  } else {
2620  $sql .= " AND pl.lang = '".$this->db->escape($langs->getDefaultLang())."'";
2621  }
2622  }
2623 
2624  if (!empty($conf->global->PRODUIT_ATTRIBUTES_HIDECHILD)) {
2625  $sql .= " LEFT JOIN ".$this->db->prefix()."product_attribute_combination pac ON pac.fk_product_child = p.rowid";
2626  }
2627 
2628  $sql .= ' WHERE p.entity IN ('.getEntity('product').')';
2629 
2630  if (!empty($conf->global->PRODUIT_ATTRIBUTES_HIDECHILD)) {
2631  $sql .= " AND pac.rowid IS NULL";
2632  }
2633 
2634  if ($finished == 0) {
2635  $sql .= " AND p.finished = ".((int) $finished);
2636  } elseif ($finished == 1) {
2637  $sql .= " AND p.finished = ".((int) $finished);
2638  if ($status >= 0) {
2639  $sql .= " AND p.tosell = ".((int) $status);
2640  }
2641  } elseif ($status >= 0) {
2642  $sql .= " AND p.tosell = ".((int) $status);
2643  }
2644  if ($status_purchase >= 0) {
2645  $sql .= " AND p.tobuy = ".((int) $status_purchase);
2646  }
2647  // Filter by product type
2648  if (strval($filtertype) != '') {
2649  $sql .= " AND p.fk_product_type = ".((int) $filtertype);
2650  } elseif (empty($conf->product->enabled)) { // when product module is disabled, show services only
2651  $sql .= " AND p.fk_product_type = 1";
2652  } elseif (empty($conf->service->enabled)) { // when service module is disabled, show products only
2653  $sql .= " AND p.fk_product_type = 0";
2654  }
2655  // Add where from hooks
2656  $parameters = array();
2657  $reshook = $hookmanager->executeHooks('selectProductsListWhere', $parameters); // Note that $action and $object may have been modified by hook
2658  $sql .= $hookmanager->resPrint;
2659  // Add criteria on ref/label
2660  if ($filterkey != '') {
2661  $sql .= ' AND (';
2662  $prefix = empty($conf->global->PRODUCT_DONOTSEARCH_ANYWHERE) ? '%' : ''; // Can use index if PRODUCT_DONOTSEARCH_ANYWHERE is on
2663  // For natural search
2664  $scrit = explode(' ', $filterkey);
2665  $i = 0;
2666  if (count($scrit) > 1) {
2667  $sql .= "(";
2668  }
2669  foreach ($scrit as $crit) {
2670  if ($i > 0) {
2671  $sql .= " AND ";
2672  }
2673  $sql .= "(p.ref LIKE '".$this->db->escape($prefix.$crit)."%' OR p.label LIKE '".$this->db->escape($prefix.$crit)."%'";
2674  if (!empty($conf->global->MAIN_MULTILANGS)) {
2675  $sql .= " OR pl.label LIKE '".$this->db->escape($prefix.$crit)."%'";
2676  }
2677  if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES) && ! empty($socid)) {
2678  $sql .= " OR pcp.ref_customer LIKE '".$this->db->escape($prefix.$crit)."%'";
2679  }
2680  if (!empty($conf->global->PRODUCT_AJAX_SEARCH_ON_DESCRIPTION)) {
2681  $sql .= " OR p.description LIKE '".$this->db->escape($prefix.$crit)."%'";
2682  if (!empty($conf->global->MAIN_MULTILANGS)) {
2683  $sql .= " OR pl.description LIKE '".$this->db->escape($prefix.$crit)."%'";
2684  }
2685  }
2686  if (!empty($conf->global->MAIN_SEARCH_PRODUCT_BY_FOURN_REF)) {
2687  $sql .= " OR pfp.ref_fourn LIKE '".$this->db->escape($prefix.$crit)."%'";
2688  }
2689  $sql .= ")";
2690  $i++;
2691  }
2692  if (count($scrit) > 1) {
2693  $sql .= ")";
2694  }
2695  if (!empty($conf->barcode->enabled)) {
2696  $sql .= " OR p.barcode LIKE '".$this->db->escape($prefix.$filterkey)."%'";
2697  }
2698  $sql .= ')';
2699  }
2700  if (count($warehouseStatusArray)) {
2701  $sql .= " GROUP BY ".$selectFields;
2702  }
2703 
2704  //Sort by category
2705  if (!empty($conf->global->PRODUCT_SORT_BY_CATEGORY)) {
2706  $sql .= " ORDER BY categorie_product_id ";
2707  //ASC OR DESC order
2708  ($conf->global->PRODUCT_SORT_BY_CATEGORY == 1) ? $sql .= "ASC" : $sql .= "DESC";
2709  } else {
2710  $sql .= $this->db->order("p.ref");
2711  }
2712 
2713  $sql .= $this->db->plimit($limit, 0);
2714 
2715  // Build output string
2716  dol_syslog(get_class($this)."::select_produits_list search products", LOG_DEBUG);
2717  $result = $this->db->query($sql);
2718  if ($result) {
2719  require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
2720  require_once DOL_DOCUMENT_ROOT.'/product/dynamic_price/class/price_parser.class.php';
2721  require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
2722 
2723  $num = $this->db->num_rows($result);
2724 
2725  $events = null;
2726 
2727  if (!$forcecombo) {
2728  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
2729  $out .= ajax_combobox($htmlname, $events, getDolGlobalInt("PRODUIT_USE_SEARCH_TO_SELECT"));
2730  }
2731 
2732  $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" id="'.$htmlname.'">';
2733 
2734  $textifempty = '';
2735  // Do not use textifempty = ' ' or '&nbsp;' here, or search on key will search on ' key'.
2736  //if (! empty($conf->use_javascript_ajax) || $forcecombo) $textifempty='';
2737  if (!empty($conf->global->PRODUIT_USE_SEARCH_TO_SELECT)) {
2738  if ($showempty && !is_numeric($showempty)) {
2739  $textifempty = $langs->trans($showempty);
2740  } else {
2741  $textifempty .= $langs->trans("All");
2742  }
2743  } else {
2744  if ($showempty && !is_numeric($showempty)) {
2745  $textifempty = $langs->trans($showempty);
2746  }
2747  }
2748  if ($showempty) {
2749  $out .= '<option value="-1" selected>'.($textifempty ? $textifempty : '&nbsp;').'</option>';
2750  }
2751 
2752  $i = 0;
2753  while ($num && $i < $num) {
2754  $opt = '';
2755  $optJson = array();
2756  $objp = $this->db->fetch_object($result);
2757 
2758  if ((!empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY) || !empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES)) && !empty($objp->price_by_qty) && $objp->price_by_qty == 1) { // Price by quantity will return many prices for the same product
2759  $sql = "SELECT rowid, quantity, price, unitprice, remise_percent, remise, price_base_type";
2760  $sql .= " FROM ".$this->db->prefix()."product_price_by_qty";
2761  $sql .= " WHERE fk_product_price = ".((int) $objp->price_rowid);
2762  $sql .= " ORDER BY quantity ASC";
2763 
2764  dol_syslog(get_class($this)."::select_produits_list search prices by qty", LOG_DEBUG);
2765  $result2 = $this->db->query($sql);
2766  if ($result2) {
2767  $nb_prices = $this->db->num_rows($result2);
2768  $j = 0;
2769  while ($nb_prices && $j < $nb_prices) {
2770  $objp2 = $this->db->fetch_object($result2);
2771 
2772  $objp->price_by_qty_rowid = $objp2->rowid;
2773  $objp->price_by_qty_price_base_type = $objp2->price_base_type;
2774  $objp->price_by_qty_quantity = $objp2->quantity;
2775  $objp->price_by_qty_unitprice = $objp2->unitprice;
2776  $objp->price_by_qty_remise_percent = $objp2->remise_percent;
2777  // For backward compatibility
2778  $objp->quantity = $objp2->quantity;
2779  $objp->price = $objp2->price;
2780  $objp->unitprice = $objp2->unitprice;
2781  $objp->remise_percent = $objp2->remise_percent;
2782 
2783  //$objp->tva_tx is not overwritten by $objp2 value
2784  //$objp->default_vat_code is not overwritten by $objp2 value
2785 
2786  $this->constructProductListOption($objp, $opt, $optJson, 0, $selected, $hidepriceinlabel, $filterkey);
2787 
2788  $j++;
2789 
2790  // Add new entry
2791  // "key" value of json key array is used by jQuery automatically as selected value
2792  // "label" value of json key array is used by jQuery automatically as text for combo box
2793  $out .= $opt;
2794  array_push($outarray, $optJson);
2795  }
2796  }
2797  } else {
2798  if (!empty($conf->dynamicprices->enabled) && !empty($objp->fk_price_expression)) {
2799  $price_product = new Product($this->db);
2800  $price_product->fetch($objp->rowid, '', '', 1);
2801  $priceparser = new PriceParser($this->db);
2802  $price_result = $priceparser->parseProduct($price_product);
2803  if ($price_result >= 0) {
2804  $objp->price = $price_result;
2805  $objp->unitprice = $price_result;
2806  //Calculate the VAT
2807  $objp->price_ttc = price2num($objp->price) * (1 + ($objp->tva_tx / 100));
2808  $objp->price_ttc = price2num($objp->price_ttc, 'MU');
2809  }
2810  }
2811 
2812  $this->constructProductListOption($objp, $opt, $optJson, $price_level, $selected, $hidepriceinlabel, $filterkey);
2813  // Add new entry
2814  // "key" value of json key array is used by jQuery automatically as selected value
2815  // "label" value of json key array is used by jQuery automatically as text for combo box
2816  $out .= $opt;
2817  array_push($outarray, $optJson);
2818  }
2819 
2820  $i++;
2821  }
2822 
2823  $out .= '</select>';
2824 
2825  $this->db->free($result);
2826 
2827  if (empty($outputmode)) {
2828  return $out;
2829  }
2830  return $outarray;
2831  } else {
2832  dol_print_error($this->db);
2833  }
2834  }
2835 
2851  protected function constructProductListOption(&$objp, &$opt, &$optJson, $price_level, $selected, $hidepriceinlabel = 0, $filterkey = '', $novirtualstock = 0)
2852  {
2853  global $langs, $conf, $user;
2854 
2855  $outkey = '';
2856  $outval = '';
2857  $outref = '';
2858  $outlabel = '';
2859  $outlabel_translated = '';
2860  $outdesc = '';
2861  $outdesc_translated = '';
2862  $outbarcode = '';
2863  $outorigin = '';
2864  $outtype = '';
2865  $outprice_ht = '';
2866  $outprice_ttc = '';
2867  $outpricebasetype = '';
2868  $outtva_tx = '';
2869  $outdefault_vat_code = '';
2870  $outqty = 1;
2871  $outdiscount = 0;
2872 
2873  $maxlengtharticle = (empty($conf->global->PRODUCT_MAX_LENGTH_COMBO) ? 48 : $conf->global->PRODUCT_MAX_LENGTH_COMBO);
2874 
2875  $label = $objp->label;
2876  if (!empty($objp->label_translated)) {
2877  $label = $objp->label_translated;
2878  }
2879  if (!empty($filterkey) && $filterkey != '') {
2880  $label = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $label, 1);
2881  }
2882 
2883  $outkey = $objp->rowid;
2884  $outref = $objp->ref;
2885  $outrefcust = empty($objp->custref) ? '' : $objp->custref;
2886  $outlabel = $objp->label;
2887  $outdesc = $objp->description;
2888  if (!empty($conf->global->MAIN_MULTILANGS)) {
2889  $outlabel_translated = $objp->label_translated;
2890  $outdesc_translated = $objp->description_translated;
2891  }
2892  $outbarcode = $objp->barcode;
2893  $outorigin = $objp->fk_country;
2894  $outpbq = empty($objp->price_by_qty_rowid) ? '' : $objp->price_by_qty_rowid;
2895 
2896  $outtype = $objp->fk_product_type;
2897  $outdurationvalue = $outtype == Product::TYPE_SERVICE ?substr($objp->duration, 0, dol_strlen($objp->duration) - 1) : '';
2898  $outdurationunit = $outtype == Product::TYPE_SERVICE ?substr($objp->duration, -1) : '';
2899 
2900  if ($outorigin && !empty($conf->global->PRODUCT_SHOW_ORIGIN_IN_COMBO)) {
2901  require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
2902  }
2903 
2904  // Units
2905  $outvalUnits = '';
2906  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
2907  if (!empty($objp->unit_short)) {
2908  $outvalUnits .= ' - '.$objp->unit_short;
2909  }
2910  }
2911  if (!empty($conf->global->PRODUCT_SHOW_DIMENSIONS_IN_COMBO)) {
2912  if (!empty($objp->weight) && $objp->weight_units !== null) {
2913  $unitToShow = showDimensionInBestUnit($objp->weight, $objp->weight_units, 'weight', $langs);
2914  $outvalUnits .= ' - '.$unitToShow;
2915  }
2916  if ((!empty($objp->length) || !empty($objp->width) || !empty($objp->height)) && $objp->length_units !== null) {
2917  $unitToShow = $objp->length.' x '.$objp->width.' x '.$objp->height.' '.measuringUnitString(0, 'size', $objp->length_units);
2918  $outvalUnits .= ' - '.$unitToShow;
2919  }
2920  if (!empty($objp->surface) && $objp->surface_units !== null) {
2921  $unitToShow = showDimensionInBestUnit($objp->surface, $objp->surface_units, 'surface', $langs);
2922  $outvalUnits .= ' - '.$unitToShow;
2923  }
2924  if (!empty($objp->volume) && $objp->volume_units !== null) {
2925  $unitToShow = showDimensionInBestUnit($objp->volume, $objp->volume_units, 'volume', $langs);
2926  $outvalUnits .= ' - '.$unitToShow;
2927  }
2928  }
2929  if ($outdurationvalue && $outdurationunit) {
2930  $da = array(
2931  'h' => $langs->trans('Hour'),
2932  'd' => $langs->trans('Day'),
2933  'w' => $langs->trans('Week'),
2934  'm' => $langs->trans('Month'),
2935  'y' => $langs->trans('Year')
2936  );
2937  if (isset($da[$outdurationunit])) {
2938  $outvalUnits .= ' - '.$outdurationvalue.' '.$langs->transnoentities($da[$outdurationunit].($outdurationvalue > 1 ? 's' : ''));
2939  }
2940  }
2941 
2942  $opt = '<option value="'.$objp->rowid.'"';
2943  $opt .= ($objp->rowid == $selected) ? ' selected' : '';
2944  if (!empty($objp->price_by_qty_rowid) && $objp->price_by_qty_rowid > 0) {
2945  $opt .= ' pbq="'.$objp->price_by_qty_rowid.'" data-pbq="'.$objp->price_by_qty_rowid.'" data-pbqup="'.$objp->price_by_qty_unitprice.'" data-pbqbase="'.$objp->price_by_qty_price_base_type.'" data-pbqqty="'.$objp->price_by_qty_quantity.'" data-pbqpercent="'.$objp->price_by_qty_remise_percent.'"';
2946  }
2947  if (!empty($conf->stock->enabled) && isset($objp->stock) && ($objp->fk_product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))) {
2948  if (!empty($user->rights->stock->lire)) {
2949  if ($objp->stock > 0) {
2950  $opt .= ' class="product_line_stock_ok"';
2951  } elseif ($objp->stock <= 0) {
2952  $opt .= ' class="product_line_stock_too_low"';
2953  }
2954  }
2955  }
2956  if (!empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE)) {
2957  $opt .= ' data-labeltrans="'.$outlabel_translated.'"';
2958  $opt .= ' data-desctrans="'.dol_escape_htmltag($outdesc_translated).'"';
2959  }
2960  $opt .= '>';
2961  $opt .= $objp->ref;
2962  if (! empty($objp->custref)) {
2963  $opt.= ' (' . $objp->custref . ')';
2964  }
2965  if ($outbarcode) {
2966  $opt .= ' ('.$outbarcode.')';
2967  }
2968  $opt .= ' - '.dol_trunc($label, $maxlengtharticle);
2969  if ($outorigin && !empty($conf->global->PRODUCT_SHOW_ORIGIN_IN_COMBO)) {
2970  $opt .= ' ('.getCountry($outorigin, 1).')';
2971  }
2972 
2973  $objRef = $objp->ref;
2974  if (! empty($objp->custref)) {
2975  $objRef .= ' (' . $objp->custref . ')';
2976  }
2977  if (!empty($filterkey) && $filterkey != '') {
2978  $objRef = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $objRef, 1);
2979  }
2980  $outval .= $objRef;
2981  if ($outbarcode) {
2982  $outval .= ' ('.$outbarcode.')';
2983  }
2984  $outval .= ' - '.dol_trunc($label, $maxlengtharticle);
2985  if ($outorigin && !empty($conf->global->PRODUCT_SHOW_ORIGIN_IN_COMBO)) {
2986  $outval .= ' ('.getCountry($outorigin, 1).')';
2987  }
2988 
2989  // Units
2990  $opt .= $outvalUnits;
2991  $outval .= $outvalUnits;
2992 
2993  $found = 0;
2994 
2995  // Multiprice
2996  // If we need a particular price level (from 1 to n)
2997  if (empty($hidepriceinlabel) && $price_level >= 1 && (!empty($conf->global->PRODUIT_MULTIPRICES) || !empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES))) {
2998  $sql = "SELECT price, price_ttc, price_base_type, tva_tx, default_vat_code";
2999  $sql .= " FROM ".$this->db->prefix()."product_price";
3000  $sql .= " WHERE fk_product = ".((int) $objp->rowid);
3001  $sql .= " AND entity IN (".getEntity('productprice').")";
3002  $sql .= " AND price_level = ".((int) $price_level);
3003  $sql .= " ORDER BY date_price DESC, rowid DESC"; // Warning DESC must be both on date_price and rowid.
3004  $sql .= " LIMIT 1";
3005 
3006  dol_syslog(get_class($this).'::constructProductListOption search price for product '.$objp->rowid.' AND level '.$price_level.'', LOG_DEBUG);
3007  $result2 = $this->db->query($sql);
3008  if ($result2) {
3009  $objp2 = $this->db->fetch_object($result2);
3010  if ($objp2) {
3011  $found = 1;
3012  if ($objp2->price_base_type == 'HT') {
3013  $opt .= ' - '.price($objp2->price, 1, $langs, 0, 0, -1, $conf->currency).' '.$langs->trans("HT");
3014  $outval .= ' - '.price($objp2->price, 0, $langs, 0, 0, -1, $conf->currency).' '.$langs->transnoentities("HT");
3015  } else {
3016  $opt .= ' - '.price($objp2->price_ttc, 1, $langs, 0, 0, -1, $conf->currency).' '.$langs->trans("TTC");
3017  $outval .= ' - '.price($objp2->price_ttc, 0, $langs, 0, 0, -1, $conf->currency).' '.$langs->transnoentities("TTC");
3018  }
3019  $outprice_ht = price($objp2->price);
3020  $outprice_ttc = price($objp2->price_ttc);
3021  $outpricebasetype = $objp2->price_base_type;
3022  if (!empty($conf->global->PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL)) { // using this option is a bug. kept for backward compatibility
3023  $outtva_tx = $objp2->tva_tx; // We use the vat rate on line of multiprice
3024  $outdefault_vat_code = $objp2->default_vat_code; // We use the vat code on line of multiprice
3025  } else {
3026  $outtva_tx = $objp->tva_tx; // We use the vat rate of product, not the one on line of multiprice
3027  $outdefault_vat_code = $objp->default_vat_code; // We use the vat code or product, not the one on line of multiprice
3028  }
3029  }
3030  } else {
3031  dol_print_error($this->db);
3032  }
3033  }
3034 
3035  // Price by quantity
3036  if (empty($hidepriceinlabel) && !empty($objp->quantity) && $objp->quantity >= 1 && (!empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY) || !empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES))) {
3037  $found = 1;
3038  $outqty = $objp->quantity;
3039  $outdiscount = $objp->remise_percent;
3040  if ($objp->quantity == 1) {
3041  $opt .= ' - '.price($objp->unitprice, 1, $langs, 0, 0, -1, $conf->currency)."/";
3042  $outval .= ' - '.price($objp->unitprice, 0, $langs, 0, 0, -1, $conf->currency)."/";
3043  $opt .= $langs->trans("Unit"); // Do not use strtolower because it breaks utf8 encoding
3044  $outval .= $langs->transnoentities("Unit");
3045  } else {
3046  $opt .= ' - '.price($objp->price, 1, $langs, 0, 0, -1, $conf->currency)."/".$objp->quantity;
3047  $outval .= ' - '.price($objp->price, 0, $langs, 0, 0, -1, $conf->currency)."/".$objp->quantity;
3048  $opt .= $langs->trans("Units"); // Do not use strtolower because it breaks utf8 encoding
3049  $outval .= $langs->transnoentities("Units");
3050  }
3051 
3052  $outprice_ht = price($objp->unitprice);
3053  $outprice_ttc = price($objp->unitprice * (1 + ($objp->tva_tx / 100)));
3054  $outpricebasetype = $objp->price_base_type;
3055  $outtva_tx = $objp->tva_tx; // This value is the value on product when constructProductListOption is called by select_produits_list even if other field $objp-> are from table price_by_qty
3056  $outdefault_vat_code = $objp->default_vat_code; // This value is the value on product when constructProductListOption is called by select_produits_list even if other field $objp-> are from table price_by_qty
3057  }
3058  if (empty($hidepriceinlabel) && !empty($objp->quantity) && $objp->quantity >= 1) {
3059  $opt .= " (".price($objp->unitprice, 1, $langs, 0, 0, -1, $conf->currency)."/".$langs->trans("Unit").")"; // Do not use strtolower because it breaks utf8 encoding
3060  $outval .= " (".price($objp->unitprice, 0, $langs, 0, 0, -1, $conf->currency)."/".$langs->transnoentities("Unit").")"; // Do not use strtolower because it breaks utf8 encoding
3061  }
3062  if (empty($hidepriceinlabel) && !empty($objp->remise_percent) && $objp->remise_percent >= 1) {
3063  $opt .= " - ".$langs->trans("Discount")." : ".vatrate($objp->remise_percent).' %';
3064  $outval .= " - ".$langs->transnoentities("Discount")." : ".vatrate($objp->remise_percent).' %';
3065  }
3066 
3067  // Price by customer
3068  if (empty($hidepriceinlabel) && !empty($conf->global->PRODUIT_CUSTOMER_PRICES)) {
3069  if (!empty($objp->idprodcustprice)) {
3070  $found = 1;
3071 
3072  if ($objp->custprice_base_type == 'HT') {
3073  $opt .= ' - '.price($objp->custprice, 1, $langs, 0, 0, -1, $conf->currency).' '.$langs->trans("HT");
3074  $outval .= ' - '.price($objp->custprice, 0, $langs, 0, 0, -1, $conf->currency).' '.$langs->transnoentities("HT");
3075  } else {
3076  $opt .= ' - '.price($objp->custprice_ttc, 1, $langs, 0, 0, -1, $conf->currency).' '.$langs->trans("TTC");
3077  $outval .= ' - '.price($objp->custprice_ttc, 0, $langs, 0, 0, -1, $conf->currency).' '.$langs->transnoentities("TTC");
3078  }
3079 
3080  $outprice_ht = price($objp->custprice);
3081  $outprice_ttc = price($objp->custprice_ttc);
3082  $outpricebasetype = $objp->custprice_base_type;
3083  $outtva_tx = $objp->custtva_tx;
3084  $outdefault_vat_code = $objp->custdefault_vat_code;
3085  }
3086  }
3087 
3088  // If level no defined or multiprice not found, we used the default price
3089  if (empty($hidepriceinlabel) && !$found) {
3090  if ($objp->price_base_type == 'HT') {
3091  $opt .= ' - '.price($objp->price, 1, $langs, 0, 0, -1, $conf->currency).' '.$langs->trans("HT");
3092  $outval .= ' - '.price($objp->price, 0, $langs, 0, 0, -1, $conf->currency).' '.$langs->transnoentities("HT");
3093  } else {
3094  $opt .= ' - '.price($objp->price_ttc, 1, $langs, 0, 0, -1, $conf->currency).' '.$langs->trans("TTC");
3095  $outval .= ' - '.price($objp->price_ttc, 0, $langs, 0, 0, -1, $conf->currency).' '.$langs->transnoentities("TTC");
3096  }
3097  $outprice_ht = price($objp->price);
3098  $outprice_ttc = price($objp->price_ttc);
3099  $outpricebasetype = $objp->price_base_type;
3100  $outtva_tx = $objp->tva_tx;
3101  $outdefault_vat_code = $objp->default_vat_code;
3102  }
3103 
3104  if (!empty($conf->stock->enabled) && isset($objp->stock) && ($objp->fk_product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))) {
3105  if (!empty($user->rights->stock->lire)) {
3106  $opt .= ' - '.$langs->trans("Stock").': '.price(price2num($objp->stock, 'MS'));
3107 
3108  if ($objp->stock > 0) {
3109  $outval .= ' - <span class="product_line_stock_ok">';
3110  } elseif ($objp->stock <= 0) {
3111  $outval .= ' - <span class="product_line_stock_too_low">';
3112  }
3113  $outval .= $langs->transnoentities("Stock").': '.price(price2num($objp->stock, 'MS'));
3114  $outval .= '</span>';
3115  if (empty($novirtualstock) && !empty($conf->global->STOCK_SHOW_VIRTUAL_STOCK_IN_PRODUCTS_COMBO)) { // Warning, this option may slow down combo list generation
3116  $langs->load("stocks");
3117 
3118  $tmpproduct = new Product($this->db);
3119  $tmpproduct->fetch($objp->rowid, '', '', '', 1, 1, 1); // Load product without lang and prices arrays (we just need to make ->virtual_stock() after)
3120  $tmpproduct->load_virtual_stock();
3121  $virtualstock = $tmpproduct->stock_theorique;
3122 
3123  $opt .= ' - '.$langs->trans("VirtualStock").':'.$virtualstock;
3124 
3125  $outval .= ' - '.$langs->transnoentities("VirtualStock").':';
3126  if ($virtualstock > 0) {
3127  $outval .= '<span class="product_line_stock_ok">';
3128  } elseif ($virtualstock <= 0) {
3129  $outval .= '<span class="product_line_stock_too_low">';
3130  }
3131  $outval .= $virtualstock;
3132  $outval .= '</span>';
3133 
3134  unset($tmpproduct);
3135  }
3136  }
3137  }
3138 
3139  $opt .= "</option>\n";
3140  $optJson = array(
3141  'key'=>$outkey,
3142  'value'=>$outref,
3143  'label'=>$outval,
3144  'label2'=>$outlabel,
3145  'desc'=>$outdesc,
3146  'type'=>$outtype,
3147  'price_ht'=>price2num($outprice_ht),
3148  'price_ttc'=>price2num($outprice_ttc),
3149  'pricebasetype'=>$outpricebasetype,
3150  'tva_tx'=>$outtva_tx,
3151  'default_vat_code'=>$outdefault_vat_code,
3152  'qty'=>$outqty,
3153  'discount'=>$outdiscount,
3154  'duration_value'=>$outdurationvalue,
3155  'duration_unit'=>$outdurationunit,
3156  'pbq'=>$outpbq,
3157  'labeltrans'=>$outlabel_translated,
3158  'desctrans'=>$outdesc_translated,
3159  'ref_customer'=>$outrefcust
3160  );
3161  }
3162 
3163  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3179  public function select_produits_fournisseurs($socid, $selected = '', $htmlname = 'productid', $filtertype = '', $filtre = '', $ajaxoptions = array(), $hidelabel = 0, $alsoproductwithnosupplierprice = 0, $morecss = '', $placeholder = '')
3180  {
3181  // phpcs:enable
3182  global $langs, $conf;
3183  global $price_level, $status, $finished;
3184 
3185  if (!isset($status)) {
3186  $status = 1;
3187  }
3188 
3189  $selected_input_value = '';
3190  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->PRODUIT_USE_SEARCH_TO_SELECT)) {
3191  if ($selected > 0) {
3192  require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
3193  $producttmpselect = new Product($this->db);
3194  $producttmpselect->fetch($selected);
3195  $selected_input_value = $producttmpselect->ref;
3196  unset($producttmpselect);
3197  }
3198 
3199  // mode=2 means suppliers products
3200  $urloption = ($socid > 0 ? 'socid='.$socid.'&' : '').'htmlname='.$htmlname.'&outjson=1&price_level='.$price_level.'&type='.$filtertype.'&mode=2&status='.$status.'&finished='.$finished.'&alsoproductwithnosupplierprice='.$alsoproductwithnosupplierprice;
3201  print ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/product/ajax/products.php', $urloption, $conf->global->PRODUIT_USE_SEARCH_TO_SELECT, 0, $ajaxoptions);
3202  print ($hidelabel ? '' : $langs->trans("RefOrLabel").' : ').'<input type="text" class="minwidth300" name="search_'.$htmlname.'" id="search_'.$htmlname.'" value="'.$selected_input_value.'"'.($placeholder ? ' placeholder="'.$placeholder.'"' : '').'>';
3203  } else {
3204  print $this->select_produits_fournisseurs_list($socid, $selected, $htmlname, $filtertype, $filtre, '', $status, 0, 0, $alsoproductwithnosupplierprice, $morecss, 0, $placeholder);
3205  }
3206  }
3207 
3208  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3227  public function select_produits_fournisseurs_list($socid, $selected = '', $htmlname = 'productid', $filtertype = '', $filtre = '', $filterkey = '', $statut = -1, $outputmode = 0, $limit = 100, $alsoproductwithnosupplierprice = 0, $morecss = '', $showstockinlist = 0, $placeholder = '')
3228  {
3229  // phpcs:enable
3230  global $langs, $conf, $user;
3231  global $hookmanager;
3232 
3233  $out = '';
3234  $outarray = array();
3235 
3236  $maxlengtharticle = (empty($conf->global->PRODUCT_MAX_LENGTH_COMBO) ? 48 : $conf->global->PRODUCT_MAX_LENGTH_COMBO);
3237 
3238  $langs->load('stocks');
3239  // Units
3240  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
3241  $langs->load('other');
3242  }
3243 
3244  $sql = "SELECT p.rowid, p.ref, p.label, p.price, p.duration, p.fk_product_type, p.stock,";
3245  $sql .= " pfp.ref_fourn, pfp.rowid as idprodfournprice, pfp.price as fprice, pfp.quantity, pfp.remise_percent, pfp.remise, pfp.unitprice,";
3246  $sql .= " pfp.fk_supplier_price_expression, pfp.fk_product, pfp.tva_tx, pfp.default_vat_code, pfp.fk_soc, s.nom as name,";
3247  $sql .= " pfp.supplier_reputation";
3248  // if we use supplier description of the products
3249  if (!empty($conf->global->PRODUIT_FOURN_TEXTS)) {
3250  $sql .= " ,pfp.desc_fourn as description";
3251  } else {
3252  $sql .= " ,p.description";
3253  }
3254  // Units
3255  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
3256  $sql .= ", u.label as unit_long, u.short_label as unit_short, p.weight, p.weight_units, p.length, p.length_units, p.width, p.width_units, p.height, p.height_units, p.surface, p.surface_units, p.volume, p.volume_units";
3257  }
3258  if (!empty($conf->barcode->enabled)) {
3259  $sql .= ", pfp.barcode";
3260  }
3261  $sql .= " FROM ".$this->db->prefix()."product as p";
3262  $sql .= " LEFT JOIN ".$this->db->prefix()."product_fournisseur_price as pfp ON ( p.rowid = pfp.fk_product AND pfp.entity IN (".getEntity('product').") )";
3263  if ($socid > 0) {
3264  $sql .= " AND pfp.fk_soc = ".((int) $socid);
3265  }
3266  $sql .= " LEFT JOIN ".$this->db->prefix()."societe as s ON pfp.fk_soc = s.rowid";
3267  // Units
3268  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
3269  $sql .= " LEFT JOIN ".$this->db->prefix()."c_units u ON u.rowid = p.fk_unit";
3270  }
3271  $sql .= " WHERE p.entity IN (".getEntity('product').")";
3272  if ($statut != -1) {
3273  $sql .= " AND p.tobuy = ".((int) $statut);
3274  }
3275  if (strval($filtertype) != '') {
3276  $sql .= " AND p.fk_product_type = ".((int) $filtertype);
3277  }
3278  if (!empty($filtre)) {
3279  $sql .= " ".$filtre;
3280  }
3281  // Add where from hooks
3282  $parameters = array();
3283  $reshook = $hookmanager->executeHooks('selectSuppliersProductsListWhere', $parameters); // Note that $action and $object may have been modified by hook
3284  $sql .= $hookmanager->resPrint;
3285  // Add criteria on ref/label
3286  if ($filterkey != '') {
3287  $sql .= ' AND (';
3288  $prefix = empty($conf->global->PRODUCT_DONOTSEARCH_ANYWHERE) ? '%' : ''; // Can use index if PRODUCT_DONOTSEARCH_ANYWHERE is on
3289  // For natural search
3290  $scrit = explode(' ', $filterkey);
3291  $i = 0;
3292  if (count($scrit) > 1) {
3293  $sql .= "(";
3294  }
3295  foreach ($scrit as $crit) {
3296  if ($i > 0) {
3297  $sql .= " AND ";
3298  }
3299  $sql .= "(pfp.ref_fourn LIKE '".$this->db->escape($prefix.$crit)."%' OR p.ref LIKE '".$this->db->escape($prefix.$crit)."%' OR p.label LIKE '".$this->db->escape($prefix.$crit)."%'";
3300  if (!empty($conf->global->PRODUIT_FOURN_TEXTS)) {
3301  $sql .= " OR pfp.desc_fourn LIKE '".$this->db->escape($prefix.$crit)."%'";
3302  }
3303  $sql .= ")";
3304  $i++;
3305  }
3306  if (count($scrit) > 1) {
3307  $sql .= ")";
3308  }
3309  if (!empty($conf->barcode->enabled)) {
3310  $sql .= " OR p.barcode LIKE '".$this->db->escape($prefix.$filterkey)."%'";
3311  $sql .= " OR pfp.barcode LIKE '".$this->db->escape($prefix.$filterkey)."%'";
3312  }
3313  $sql .= ')';
3314  }
3315  $sql .= " ORDER BY pfp.ref_fourn DESC, pfp.quantity ASC";
3316  $sql .= $this->db->plimit($limit, 0);
3317 
3318  // Build output string
3319 
3320  dol_syslog(get_class($this)."::select_produits_fournisseurs_list", LOG_DEBUG);
3321  $result = $this->db->query($sql);
3322  if ($result) {
3323  require_once DOL_DOCUMENT_ROOT.'/product/dynamic_price/class/price_parser.class.php';
3324  require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
3325 
3326  $num = $this->db->num_rows($result);
3327 
3328  //$out.='<select class="flat" id="select'.$htmlname.'" name="'.$htmlname.'">'; // remove select to have id same with combo and ajax
3329  $out .= '<select class="flat '.($morecss ? ' '.$morecss : '').'" id="'.$htmlname.'" name="'.$htmlname.'">';
3330  if (!$selected) {
3331  $out .= '<option value="-1" selected>'.($placeholder ? $placeholder : '&nbsp;').'</option>';
3332  } else {
3333  $out .= '<option value="-1">'.($placeholder ? $placeholder : '&nbsp;').'</option>';
3334  }
3335 
3336  $i = 0;
3337  while ($i < $num) {
3338  $objp = $this->db->fetch_object($result);
3339 
3340  $outkey = $objp->idprodfournprice; // id in table of price
3341  if (!$outkey && $alsoproductwithnosupplierprice) {
3342  $outkey = 'idprod_'.$objp->rowid; // id of product
3343  }
3344 
3345  $outref = $objp->ref;
3346  $outval = '';
3347  $outbarcode = $objp->barcode;
3348  $outqty = 1;
3349  $outdiscount = 0;
3350  $outtype = $objp->fk_product_type;
3351  $outdurationvalue = $outtype == Product::TYPE_SERVICE ?substr($objp->duration, 0, dol_strlen($objp->duration) - 1) : '';
3352  $outdurationunit = $outtype == Product::TYPE_SERVICE ?substr($objp->duration, -1) : '';
3353 
3354  // Units
3355  $outvalUnits = '';
3356  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
3357  if (!empty($objp->unit_short)) {
3358  $outvalUnits .= ' - '.$objp->unit_short;
3359  }
3360  if (!empty($objp->weight) && $objp->weight_units !== null) {
3361  $unitToShow = showDimensionInBestUnit($objp->weight, $objp->weight_units, 'weight', $langs);
3362  $outvalUnits .= ' - '.$unitToShow;
3363  }
3364  if ((!empty($objp->length) || !empty($objp->width) || !empty($objp->height)) && $objp->length_units !== null) {
3365  $unitToShow = $objp->length.' x '.$objp->width.' x '.$objp->height.' '.measuringUnitString(0, 'size', $objp->length_units);
3366  $outvalUnits .= ' - '.$unitToShow;
3367  }
3368  if (!empty($objp->surface) && $objp->surface_units !== null) {
3369  $unitToShow = showDimensionInBestUnit($objp->surface, $objp->surface_units, 'surface', $langs);
3370  $outvalUnits .= ' - '.$unitToShow;
3371  }
3372  if (!empty($objp->volume) && $objp->volume_units !== null) {
3373  $unitToShow = showDimensionInBestUnit($objp->volume, $objp->volume_units, 'volume', $langs);
3374  $outvalUnits .= ' - '.$unitToShow;
3375  }
3376  if ($outdurationvalue && $outdurationunit) {
3377  $da = array(
3378  'h' => $langs->trans('Hour'),
3379  'd' => $langs->trans('Day'),
3380  'w' => $langs->trans('Week'),
3381  'm' => $langs->trans('Month'),
3382  'y' => $langs->trans('Year')
3383  );
3384  if (isset($da[$outdurationunit])) {
3385  $outvalUnits .= ' - '.$outdurationvalue.' '.$langs->transnoentities($da[$outdurationunit].($outdurationvalue > 1 ? 's' : ''));
3386  }
3387  }
3388  }
3389 
3390  $objRef = $objp->ref;
3391  if ($filterkey && $filterkey != '') {
3392  $objRef = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $objRef, 1);
3393  }
3394  $objRefFourn = $objp->ref_fourn;
3395  if ($filterkey && $filterkey != '') {
3396  $objRefFourn = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $objRefFourn, 1);
3397  }
3398  $label = $objp->label;
3399  if ($filterkey && $filterkey != '') {
3400  $label = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $label, 1);
3401  }
3402 
3403  $optlabel = $objp->ref;
3404  if (!empty($objp->idprodfournprice) && ($objp->ref != $objp->ref_fourn)) {
3405  $optlabel .= ' <span class="opacitymedium">('.$objp->ref_fourn.')</span>';
3406  }
3407  if (!empty($conf->barcode->enabled) && !empty($objp->barcode)) {
3408  $optlabel .= ' ('.$outbarcode.')';
3409  }
3410  $optlabel .= ' - '.dol_trunc($label, $maxlengtharticle);
3411 
3412  $outvallabel = $objRef;
3413  if (!empty($objp->idprodfournprice) && ($objp->ref != $objp->ref_fourn)) {
3414  $outvallabel .= ' ('.$objRefFourn.')';
3415  }
3416  if (!empty($conf->barcode->enabled) && !empty($objp->barcode)) {
3417  $outvallabel .= ' ('.$outbarcode.')';
3418  }
3419  $outvallabel .= ' - '.dol_trunc($label, $maxlengtharticle);
3420 
3421  // Units
3422  $optlabel .= $outvalUnits;
3423  $outvallabel .= $outvalUnits;
3424 
3425  if (!empty($objp->idprodfournprice)) {
3426  $outqty = $objp->quantity;
3427  $outdiscount = $objp->remise_percent;
3428  if (!empty($conf->dynamicprices->enabled) && !empty($objp->fk_supplier_price_expression)) {
3429  $prod_supplier = new ProductFournisseur($this->db);
3430  $prod_supplier->product_fourn_price_id = $objp->idprodfournprice;
3431  $prod_supplier->id = $objp->fk_product;
3432  $prod_supplier->fourn_qty = $objp->quantity;
3433  $prod_supplier->fourn_tva_tx = $objp->tva_tx;
3434  $prod_supplier->fk_supplier_price_expression = $objp->fk_supplier_price_expression;
3435  $priceparser = new PriceParser($this->db);
3436  $price_result = $priceparser->parseProductSupplier($prod_supplier);
3437  if ($price_result >= 0) {
3438  $objp->fprice = $price_result;
3439  if ($objp->quantity >= 1) {
3440  $objp->unitprice = $objp->fprice / $objp->quantity; // Replace dynamically unitprice
3441  }
3442  }
3443  }
3444  if ($objp->quantity == 1) {
3445  $optlabel .= ' - '.price($objp->fprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 1, $langs, 0, 0, -1, $conf->currency)."/";
3446  $outvallabel .= ' - '.price($objp->fprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 0, $langs, 0, 0, -1, $conf->currency)."/";
3447  $optlabel .= $langs->trans("Unit"); // Do not use strtolower because it breaks utf8 encoding
3448  $outvallabel .= $langs->transnoentities("Unit");
3449  } else {
3450  $optlabel .= ' - '.price($objp->fprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 1, $langs, 0, 0, -1, $conf->currency)."/".$objp->quantity;
3451  $outvallabel .= ' - '.price($objp->fprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 0, $langs, 0, 0, -1, $conf->currency)."/".$objp->quantity;
3452  $optlabel .= ' '.$langs->trans("Units"); // Do not use strtolower because it breaks utf8 encoding
3453  $outvallabel .= ' '.$langs->transnoentities("Units");
3454  }
3455 
3456  if ($objp->quantity > 1) {
3457  $optlabel .= " (".price($objp->unitprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 1, $langs, 0, 0, -1, $conf->currency)."/".$langs->trans("Unit").")"; // Do not use strtolower because it breaks utf8 encoding
3458  $outvallabel .= " (".price($objp->unitprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 0, $langs, 0, 0, -1, $conf->currency)."/".$langs->transnoentities("Unit").")"; // Do not use strtolower because it breaks utf8 encoding
3459  }
3460  if ($objp->remise_percent >= 1) {
3461  $optlabel .= " - ".$langs->trans("Discount")." : ".vatrate($objp->remise_percent).' %';
3462  $outvallabel .= " - ".$langs->transnoentities("Discount")." : ".vatrate($objp->remise_percent).' %';
3463  }
3464  if ($objp->duration) {
3465  $optlabel .= " - ".$objp->duration;
3466  $outvallabel .= " - ".$objp->duration;
3467  }
3468  if (!$socid) {
3469  $optlabel .= " - ".dol_trunc($objp->name, 8);
3470  $outvallabel .= " - ".dol_trunc($objp->name, 8);
3471  }
3472  if ($objp->supplier_reputation) {
3473  //TODO dictionary
3474  $reputations = array(''=>$langs->trans('Standard'), 'FAVORITE'=>$langs->trans('Favorite'), 'NOTTHGOOD'=>$langs->trans('NotTheGoodQualitySupplier'), 'DONOTORDER'=>$langs->trans('DoNotOrderThisProductToThisSupplier'));
3475 
3476  $optlabel .= " - ".$reputations[$objp->supplier_reputation];
3477  $outvallabel .= " - ".$reputations[$objp->supplier_reputation];
3478  }
3479  } else {
3480  if (empty($alsoproductwithnosupplierprice)) { // No supplier price defined for couple product/supplier
3481  $optlabel .= " - <span class='opacitymedium'>".$langs->trans("NoPriceDefinedForThisSupplier").'</span>';
3482  $outvallabel .= ' - '.$langs->transnoentities("NoPriceDefinedForThisSupplier");
3483  } else // No supplier price defined for product, even on other suppliers
3484  {
3485  $optlabel .= " - <span class='opacitymedium'>".$langs->trans("NoPriceDefinedForThisSupplier").'</span>';
3486  $outvallabel .= ' - '.$langs->transnoentities("NoPriceDefinedForThisSupplier");
3487  }
3488  }
3489 
3490  if (!empty($conf->stock->enabled) && $showstockinlist && isset($objp->stock) && ($objp->fk_product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))) {
3491  $novirtualstock = ($showstockinlist == 2);
3492 
3493  if (!empty($user->rights->stock->lire)) {
3494  $outvallabel .= ' - '.$langs->trans("Stock").': '.price(price2num($objp->stock, 'MS'));
3495 
3496  if ($objp->stock > 0) {
3497  $optlabel .= ' - <span class="product_line_stock_ok">';
3498  } elseif ($objp->stock <= 0) {
3499  $optlabel .= ' - <span class="product_line_stock_too_low">';
3500  }
3501  $optlabel .= $langs->transnoentities("Stock").':'.price(price2num($objp->stock, 'MS'));
3502  $optlabel .= '</span>';
3503  if (empty($novirtualstock) && !empty($conf->global->STOCK_SHOW_VIRTUAL_STOCK_IN_PRODUCTS_COMBO)) { // Warning, this option may slow down combo list generation
3504  $langs->load("stocks");
3505 
3506  $tmpproduct = new Product($this->db);
3507  $tmpproduct->fetch($objp->rowid, '', '', '', 1, 1, 1); // Load product without lang and prices arrays (we just need to make ->virtual_stock() after)
3508  $tmpproduct->load_virtual_stock();
3509  $virtualstock = $tmpproduct->stock_theorique;
3510 
3511  $outvallabel .= ' - '.$langs->trans("VirtualStock").':'.$virtualstock;
3512 
3513  $optlabel .= ' - '.$langs->transnoentities("VirtualStock").':';
3514  if ($virtualstock > 0) {
3515  $optlabel .= '<span class="product_line_stock_ok">';
3516  } elseif ($virtualstock <= 0) {
3517  $optlabel .= '<span class="product_line_stock_too_low">';
3518  }
3519  $optlabel .= $virtualstock;
3520  $optlabel .= '</span>';
3521 
3522  unset($tmpproduct);
3523  }
3524  }
3525  }
3526 
3527  $opt = '<option value="'.$outkey.'"';
3528  if ($selected && $selected == $objp->idprodfournprice) {
3529  $opt .= ' selected';
3530  }
3531  if (empty($objp->idprodfournprice) && empty($alsoproductwithnosupplierprice)) {
3532  $opt .= ' disabled';
3533  }
3534  if (!empty($objp->idprodfournprice) && $objp->idprodfournprice > 0) {
3535  $opt .= ' data-product-id="'.$objp->rowid.'" data-price-id="'.$objp->idprodfournprice.'" data-qty="'.$objp->quantity.'" data-up="'.$objp->unitprice.'" data-discount="'.$outdiscount.'" data-tvatx="'.$objp->tva_tx.'"';
3536  }
3537  $opt .= ' data-description="'.dol_escape_htmltag($objp->description, 0, 1).'"';
3538  $opt .= ' data-html="'.dol_escape_htmltag($optlabel).'"';
3539  $opt .= '>';
3540 
3541  $opt .= $optlabel;
3542  $outval .= $outvallabel;
3543 
3544  $opt .= "</option>\n";
3545 
3546  // Add new entry
3547  // "key" value of json key array is used by jQuery automatically as selected value. Example: 'type' = product or service, 'price_ht' = unit price without tax
3548  // "label" value of json key array is used by jQuery automatically as text for combo box
3549  $out .= $opt;
3550  array_push(
3551  $outarray,
3552  array('key'=>$outkey,
3553  'value'=>$outref,
3554  'label'=>$outval,
3555  'qty'=>$outqty,
3556  'price_qty_ht'=>price2num($objp->fprice, 'MU'), // Keep higher resolution for price for the min qty
3557  'price_unit_ht'=>price2num($objp->unitprice, 'MU'), // This is used to fill the Unit Price
3558  'price_ht'=>price2num($objp->unitprice, 'MU'), // This is used to fill the Unit Price (for compatibility)
3559  'tva_tx'=>$objp->tva_tx,
3560  'default_vat_code'=>$objp->default_vat_code,
3561  'discount'=>$outdiscount,
3562  'type'=>$outtype,
3563  'duration_value'=>$outdurationvalue,
3564  'duration_unit'=>$outdurationunit,
3565  'disabled'=>(empty($objp->idprodfournprice) ? true : false),
3566  'description'=>$objp->description
3567  )
3568  );
3569  // Exemple of var_dump $outarray
3570  // array(1) {[0]=>array(6) {[key"]=>string(1) "2" ["value"]=>string(3) "ppp"
3571  // ["label"]=>string(76) "ppp (<strong>f</strong>ff2) - ppp - 20,00 Euros/1unité (20,00 Euros/unité)"
3572  // ["qty"]=>string(1) "1" ["discount"]=>string(1) "0" ["disabled"]=>bool(false)
3573  //}
3574  //var_dump($outval); var_dump(utf8_check($outval)); var_dump(json_encode($outval));
3575  //$outval=array('label'=>'ppp (<strong>f</strong>ff2) - ppp - 20,00 Euros/ Unité (20,00 Euros/unité)');
3576  //var_dump($outval); var_dump(utf8_check($outval)); var_dump(json_encode($outval));
3577 
3578  $i++;
3579  }
3580  $out .= '</select>';
3581 
3582  $this->db->free($result);
3583 
3584  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
3585  $out .= ajax_combobox($htmlname);
3586 
3587  if (empty($outputmode)) {
3588  return $out;
3589  }
3590  return $outarray;
3591  } else {
3592  dol_print_error($this->db);
3593  }
3594  }
3595 
3596  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3605  public function select_product_fourn_price($productid, $htmlname = 'productfournpriceid', $selected_supplier = '')
3606  {
3607  // phpcs:enable
3608  global $langs, $conf;
3609 
3610  $langs->load('stocks');
3611 
3612  $sql = "SELECT p.rowid, p.ref, p.label, p.price, p.duration, pfp.fk_soc,";
3613  $sql .= " pfp.ref_fourn, pfp.rowid as idprodfournprice, pfp.price as fprice, pfp.remise_percent, pfp.quantity, pfp.unitprice,";
3614  $sql .= " pfp.fk_supplier_price_expression, pfp.fk_product, pfp.tva_tx, s.nom as name";
3615  $sql .= " FROM ".$this->db->prefix()."product as p";
3616  $sql .= " LEFT JOIN ".$this->db->prefix()."product_fournisseur_price as pfp ON p.rowid = pfp.fk_product";
3617  $sql .= " LEFT JOIN ".$this->db->prefix()."societe as s ON pfp.fk_soc = s.rowid";
3618  $sql .= " WHERE pfp.entity IN (".getEntity('productsupplierprice').")";
3619  $sql .= " AND p.tobuy = 1";
3620  $sql .= " AND s.fournisseur = 1";
3621  $sql .= " AND p.rowid = ".((int) $productid);
3622  $sql .= " ORDER BY s.nom, pfp.ref_fourn DESC";
3623 
3624  dol_syslog(get_class($this)."::select_product_fourn_price", LOG_DEBUG);
3625  $result = $this->db->query($sql);
3626 
3627  if ($result) {
3628  $num = $this->db->num_rows($result);
3629 
3630  $form = '<select class="flat" id="select_'.$htmlname.'" name="'.$htmlname.'">';
3631 
3632  if (!$num) {
3633  $form .= '<option value="0">-- '.$langs->trans("NoSupplierPriceDefinedForThisProduct").' --</option>';
3634  } else {
3635  require_once DOL_DOCUMENT_ROOT.'/product/dynamic_price/class/price_parser.class.php';
3636  $form .= '<option value="0">&nbsp;</option>';
3637 
3638  $i = 0;
3639  while ($i < $num) {
3640  $objp = $this->db->fetch_object($result);
3641 
3642  $opt = '<option value="'.$objp->idprodfournprice.'"';
3643  //if there is only one supplier, preselect it
3644  if ($num == 1 || ($selected_supplier > 0 && $objp->fk_soc == $selected_supplier)) {
3645  $opt .= ' selected';
3646  }
3647  $opt .= '>'.$objp->name.' - '.$objp->ref_fourn.' - ';
3648 
3649  if (!empty($conf->dynamicprices->enabled) && !empty($objp->fk_supplier_price_expression)) {
3650  $prod_supplier = new ProductFournisseur($this->db);
3651  $prod_supplier->product_fourn_price_id = $objp->idprodfournprice;
3652  $prod_supplier->id = $productid;
3653  $prod_supplier->fourn_qty = $objp->quantity;
3654  $prod_supplier->fourn_tva_tx = $objp->tva_tx;
3655  $prod_supplier->fk_supplier_price_expression = $objp->fk_supplier_price_expression;
3656  $priceparser = new PriceParser($this->db);
3657  $price_result = $priceparser->parseProductSupplier($prod_supplier);
3658  if ($price_result >= 0) {
3659  $objp->fprice = $price_result;
3660  if ($objp->quantity >= 1) {
3661  $objp->unitprice = $objp->fprice / $objp->quantity;
3662  }
3663  }
3664  }
3665  if ($objp->quantity == 1) {
3666  $opt .= price($objp->fprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 1, $langs, 0, 0, -1, $conf->currency)."/";
3667  }
3668 
3669  $opt .= $objp->quantity.' ';
3670 
3671  if ($objp->quantity == 1) {
3672  $opt .= $langs->trans("Unit");
3673  } else {
3674  $opt .= $langs->trans("Units");
3675  }
3676  if ($objp->quantity > 1) {
3677  $opt .= " - ";
3678  $opt .= price($objp->unitprice * (!empty($conf->global->DISPLAY_DISCOUNTED_SUPPLIER_PRICE) ? (1 - $objp->remise_percent / 100) : 1), 1, $langs, 0, 0, -1, $conf->currency)."/".$langs->trans("Unit");
3679  }
3680  if ($objp->duration) {
3681  $opt .= " - ".$objp->duration;
3682  }
3683  $opt .= "</option>\n";
3684 
3685  $form .= $opt;
3686  $i++;
3687  }
3688  }
3689 
3690  $form .= '</select>';
3691  $this->db->free($result);
3692  return $form;
3693  } else {
3694  dol_print_error($this->db);
3695  }
3696  }
3697 
3698  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3708  public function select_address($selected, $socid, $htmlname = 'address_id', $showempty = 0)
3709  {
3710  // phpcs:enable
3711  // looking for users
3712  $sql = "SELECT a.rowid, a.label";
3713  $sql .= " FROM ".$this->db->prefix()."societe_address as a";
3714  $sql .= " WHERE a.fk_soc = ".((int) $socid);
3715  $sql .= " ORDER BY a.label ASC";
3716 
3717  dol_syslog(get_class($this)."::select_address", LOG_DEBUG);
3718  $resql = $this->db->query($sql);
3719  if ($resql) {
3720  print '<select class="flat" id="select_'.$htmlname.'" name="'.$htmlname.'">';
3721  if ($showempty) {
3722  print '<option value="0">&nbsp;</option>';
3723  }
3724  $num = $this->db->num_rows($resql);
3725  $i = 0;
3726  if ($num) {
3727  while ($i < $num) {
3728  $obj = $this->db->fetch_object($resql);
3729 
3730  if ($selected && $selected == $obj->rowid) {
3731  print '<option value="'.$obj->rowid.'" selected>'.$obj->label.'</option>';
3732  } else {
3733  print '<option value="'.$obj->rowid.'">'.$obj->label.'</option>';
3734  }
3735  $i++;
3736  }
3737  }
3738  print '</select>';
3739  return $num;
3740  } else {
3741  dol_print_error($this->db);
3742  }
3743  }
3744 
3745  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3752  {
3753  // phpcs:enable
3754  global $langs;
3755 
3756  $num = count($this->cache_conditions_paiements);
3757  if ($num > 0) {
3758  return 0; // Cache already loaded
3759  }
3760 
3761  dol_syslog(__METHOD__, LOG_DEBUG);
3762 
3763  $sql = "SELECT rowid, code, libelle as label, deposit_percent";
3764  $sql .= " FROM ".$this->db->prefix().'c_payment_term';
3765  $sql .= " WHERE entity IN (".getEntity('c_payment_term').")";
3766  $sql .= " AND active > 0";
3767  $sql .= " ORDER BY sortorder";
3768 
3769  $resql = $this->db->query($sql);
3770  if ($resql) {
3771  $num = $this->db->num_rows($resql);
3772  $i = 0;
3773  while ($i < $num) {
3774  $obj = $this->db->fetch_object($resql);
3775 
3776  // Si traduction existe, on l'utilise, sinon on prend le libelle par defaut
3777  $label = ($langs->trans("PaymentConditionShort".$obj->code) != ("PaymentConditionShort".$obj->code) ? $langs->trans("PaymentConditionShort".$obj->code) : ($obj->label != '-' ? $obj->label : ''));
3778  $this->cache_conditions_paiements[$obj->rowid]['code'] = $obj->code;
3779  $this->cache_conditions_paiements[$obj->rowid]['label'] = $label;
3780  $this->cache_conditions_paiements[$obj->rowid]['deposit_percent'] = $obj->deposit_percent;
3781  $i++;
3782  }
3783 
3784  //$this->cache_conditions_paiements=dol_sort_array($this->cache_conditions_paiements, 'label', 'asc', 0, 0, 1); // We use the field sortorder of table
3785 
3786  return $num;
3787  } else {
3788  dol_print_error($this->db);
3789  return -1;
3790  }
3791  }
3792 
3793  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3799  public function load_cache_availability()
3800  {
3801  // phpcs:enable
3802  global $langs;
3803 
3804  $num = count($this->cache_availability); // TODO Use $conf->cache['availability'] instead of $this->cache_availability
3805  if ($num > 0) {
3806  return 0; // Cache already loaded
3807  }
3808 
3809  dol_syslog(__METHOD__, LOG_DEBUG);
3810 
3811  $langs->load('propal');
3812 
3813  $sql = "SELECT rowid, code, label, position";
3814  $sql .= " FROM ".$this->db->prefix().'c_availability';
3815  $sql .= " WHERE active > 0";
3816 
3817  $resql = $this->db->query($sql);
3818  if ($resql) {
3819  $num = $this->db->num_rows($resql);
3820  $i = 0;
3821  while ($i < $num) {
3822  $obj = $this->db->fetch_object($resql);
3823 
3824  // Si traduction existe, on l'utilise, sinon on prend le libelle par defaut
3825  $label = ($langs->trans("AvailabilityType".$obj->code) != ("AvailabilityType".$obj->code) ? $langs->trans("AvailabilityType".$obj->code) : ($obj->label != '-' ? $obj->label : ''));
3826  $this->cache_availability[$obj->rowid]['code'] = $obj->code;
3827  $this->cache_availability[$obj->rowid]['label'] = $label;
3828  $this->cache_availability[$obj->rowid]['position'] = $obj->position;
3829  $i++;
3830  }
3831 
3832  $this->cache_availability = dol_sort_array($this->cache_availability, 'position', 'asc', 0, 0, 1);
3833 
3834  return $num;
3835  } else {
3836  dol_print_error($this->db);
3837  return -1;
3838  }
3839  }
3840 
3851  public function selectAvailabilityDelay($selected = '', $htmlname = 'availid', $filtertype = '', $addempty = 0, $morecss = '')
3852  {
3853  global $langs, $user;
3854 
3855  $this->load_cache_availability();
3856 
3857  dol_syslog(__METHOD__." selected=".$selected.", htmlname=".$htmlname, LOG_DEBUG);
3858 
3859  print '<select id="'.$htmlname.'" class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'">';
3860  if ($addempty) {
3861  print '<option value="0">&nbsp;</option>';
3862  }
3863  foreach ($this->cache_availability as $id => $arrayavailability) {
3864  if ($selected == $id) {
3865  print '<option value="'.$id.'" selected>';
3866  } else {
3867  print '<option value="'.$id.'">';
3868  }
3869  print dol_escape_htmltag($arrayavailability['label']);
3870  print '</option>';
3871  }
3872  print '</select>';
3873  if ($user->admin) {
3874  print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
3875  }
3876  print ajax_combobox($htmlname);
3877  }
3878 
3884  public function loadCacheInputReason()
3885  {
3886  global $langs;
3887 
3888  $num = count($this->cache_demand_reason); // TODO Use $conf->cache['input_reason'] instead of $this->cache_demand_reason
3889  if ($num > 0) {
3890  return 0; // Cache already loaded
3891  }
3892 
3893  $sql = "SELECT rowid, code, label";
3894  $sql .= " FROM ".$this->db->prefix().'c_input_reason';
3895  $sql .= " WHERE active > 0";
3896 
3897  $resql = $this->db->query($sql);
3898  if ($resql) {
3899  $num = $this->db->num_rows($resql);
3900  $i = 0;
3901  $tmparray = array();
3902  while ($i < $num) {
3903  $obj = $this->db->fetch_object($resql);
3904 
3905  // Si traduction existe, on l'utilise, sinon on prend le libelle par defaut
3906  $label = ($obj->label != '-' ? $obj->label : '');
3907  if ($langs->trans("DemandReasonType".$obj->code) != ("DemandReasonType".$obj->code)) {
3908  $label = $langs->trans("DemandReasonType".$obj->code); // So translation key DemandReasonTypeSRC_XXX will work
3909  }
3910  if ($langs->trans($obj->code) != $obj->code) {
3911  $label = $langs->trans($obj->code); // So translation key SRC_XXX will work
3912  }
3913 
3914  $tmparray[$obj->rowid]['id'] = $obj->rowid;
3915  $tmparray[$obj->rowid]['code'] = $obj->code;
3916  $tmparray[$obj->rowid]['label'] = $label;
3917  $i++;
3918  }
3919 
3920  $this->cache_demand_reason = dol_sort_array($tmparray, 'label', 'asc', 0, 0, 1);
3921 
3922  unset($tmparray);
3923  return $num;
3924  } else {
3925  dol_print_error($this->db);
3926  return -1;
3927  }
3928  }
3929 
3942  public function selectInputReason($selected = '', $htmlname = 'demandreasonid', $exclude = '', $addempty = 0, $morecss = '', $notooltip = 0)
3943  {
3944  global $langs, $user;
3945 
3946  $this->loadCacheInputReason();
3947 
3948  print '<select class="flat'.($morecss ? ' '.$morecss : '').'" id="select_'.$htmlname.'" name="'.$htmlname.'">';
3949  if ($addempty) {
3950  print '<option value="0"'.(empty($selected) ? ' selected' : '').'>&nbsp;</option>';
3951  }
3952  foreach ($this->cache_demand_reason as $id => $arraydemandreason) {
3953  if ($arraydemandreason['code'] == $exclude) {
3954  continue;
3955  }
3956 
3957  if ($selected && ($selected == $arraydemandreason['id'] || $selected == $arraydemandreason['code'])) {
3958  print '<option value="'.$arraydemandreason['id'].'" selected>';
3959  } else {
3960  print '<option value="'.$arraydemandreason['id'].'">';
3961  }
3962  $label = $arraydemandreason['label']; // Translation of label was already done into the ->loadCacheInputReason
3963  print $langs->trans($label);
3964  print '</option>';
3965  }
3966  print '</select>';
3967  if ($user->admin && empty($notooltip)) {
3968  print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
3969  }
3970  print ajax_combobox('select_'.$htmlname);
3971  }
3972 
3973  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3979  public function load_cache_types_paiements()
3980  {
3981  // phpcs:enable
3982  global $langs;
3983 
3984  $num = count($this->cache_types_paiements); // TODO Use $conf->cache['payment_mode'] instead of $this->cache_types_paiements
3985  if ($num > 0) {
3986  return $num; // Cache already loaded
3987  }
3988 
3989  dol_syslog(__METHOD__, LOG_DEBUG);
3990 
3991  $this->cache_types_paiements = array();
3992 
3993  $sql = "SELECT id, code, libelle as label, type, active";
3994  $sql .= " FROM ".$this->db->prefix()."c_paiement";
3995  $sql .= " WHERE entity IN (".getEntity('c_paiement').")";
3996 
3997  $resql = $this->db->query($sql);
3998  if ($resql) {
3999  $num = $this->db->num_rows($resql);
4000  $i = 0;
4001  while ($i < $num) {
4002  $obj = $this->db->fetch_object($resql);
4003 
4004  // Si traduction existe, on l'utilise, sinon on prend le libelle par defaut
4005  $label = ($langs->transnoentitiesnoconv("PaymentTypeShort".$obj->code) != ("PaymentTypeShort".$obj->code) ? $langs->transnoentitiesnoconv("PaymentTypeShort".$obj->code) : ($obj->label != '-' ? $obj->label : ''));
4006  $this->cache_types_paiements[$obj->id]['id'] = $obj->id;
4007  $this->cache_types_paiements[$obj->id]['code'] = $obj->code;
4008  $this->cache_types_paiements[$obj->id]['label'] = $label;
4009  $this->cache_types_paiements[$obj->id]['type'] = $obj->type;
4010  $this->cache_types_paiements[$obj->id]['active'] = $obj->active;
4011  $i++;
4012  }
4013 
4014  $this->cache_types_paiements = dol_sort_array($this->cache_types_paiements, 'label', 'asc', 0, 0, 1);
4015 
4016  return $num;
4017  } else {
4018  dol_print_error($this->db);
4019  return -1;
4020  }
4021  }
4022 
4023 
4024  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4041  public function select_conditions_paiements($selected = 0, $htmlname = 'condid', $filtertype = -1, $addempty = 0, $noinfoadmin = 0, $morecss = '', $deposit_percent = -1)
4042  {
4043  // phpcs:enable
4044  print $this->getSelectConditionsPaiements($selected, $htmlname, $filtertype, $addempty, $noinfoadmin, $morecss, $deposit_percent = -1);
4045  }
4046 
4047 
4064  public function getSelectConditionsPaiements($selected = 0, $htmlname = 'condid', $filtertype = -1, $addempty = 0, $noinfoadmin = 0, $morecss = '', $deposit_percent = -1)
4065  {
4066  global $langs, $user, $conf;
4067 
4068  $out = '';
4069  dol_syslog(__METHOD__." selected=".$selected.", htmlname=".$htmlname, LOG_DEBUG);
4070 
4072 
4073  // Set default value if not already set by caller
4074  if (empty($selected) && !empty($conf->global->MAIN_DEFAULT_PAYMENT_TERM_ID)) {
4075  $selected = $conf->global->MAIN_DEFAULT_PAYMENT_TERM_ID;
4076  }
4077 
4078  $out.= '<select id="'.$htmlname.'" class="flat selectpaymentterms'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'">';
4079  if ($addempty) {
4080  $out.= '<option value="0">&nbsp;</option>';
4081  }
4082 
4083  $selectedDepositPercent = null;
4084 
4085  foreach ($this->cache_conditions_paiements as $id => $arrayconditions) {
4086  if ($filtertype <= 0 && ! empty($arrayconditions['deposit_percent'])) {
4087  continue;
4088  }
4089 
4090  if ($selected == $id) {
4091  $selectedDepositPercent = $deposit_percent > 0 ? $deposit_percent : $arrayconditions['deposit_percent'];
4092  $out .= '<option value="'.$id.'" data-deposit_percent="' . $arrayconditions['deposit_percent'] . '" selected>';
4093  } else {
4094  $out .= '<option value="'.$id.'" data-deposit_percent="' . $arrayconditions['deposit_percent'] . '">';
4095  }
4096  $label = $arrayconditions['label'];
4097 
4098  if (! empty($arrayconditions['deposit_percent'])) {
4099  $label = str_replace('__DEPOSIT_PERCENT__', $deposit_percent > 0 ? $deposit_percent : $arrayconditions['deposit_percent'], $label);
4100  }
4101 
4102  $out.= $label;
4103  $out.= '</option>';
4104  }
4105  $out.= '</select>';
4106  if ($user->admin && empty($noinfoadmin)) {
4107  $out.= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
4108  }
4109  $out.= ajax_combobox($htmlname);
4110 
4111  if ($deposit_percent >= 0) {
4112  $out .= ' <span id="'.$htmlname.'_deposit_percent_container"' . (empty($selectedDepositPercent) ? ' style="display: none"' : '') . '>';
4113  $out .= $langs->trans('DepositPercent') . ' : ';
4114  $out .= '<input id="'.$htmlname.'_deposit_percent" name="'.$htmlname.'_deposit_percent" class="maxwidth50" value="' . strval($deposit_percent) . '" />';
4115  $out .= '</span>';
4116  $out .= '
4117  <script>
4118  $(document).ready(function () {
4119  $("#' . $htmlname . '").change(function () {
4120  let $selected = $(this).find("option:selected");
4121  let depositPercent = $selected.attr("data-deposit_percent");
4122 
4123  if (depositPercent.length > 0) {
4124  $("#'.$htmlname.'_deposit_percent_container").show().find("#'.$htmlname.'_deposit_percent").val(depositPercent);
4125  } else {
4126  $("#'.$htmlname.'_deposit_percent_container").hide();
4127  }
4128 
4129  return true;
4130  });
4131  });
4132  </script>';
4133  }
4134 
4135  return $out;
4136  }
4137 
4138 
4139  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4156  public function select_types_paiements($selected = '', $htmlname = 'paiementtype', $filtertype = '', $format = 0, $empty = 1, $noadmininfo = 0, $maxlength = 0, $active = 1, $morecss = '', $nooutput = 0)
4157  {
4158  // phpcs:enable
4159  global $langs, $user, $conf;
4160 
4161  $out = '';
4162 
4163  dol_syslog(__METHOD__." ".$selected.", ".$htmlname.", ".$filtertype.", ".$format, LOG_DEBUG);
4164 
4165  $filterarray = array();
4166  if ($filtertype == 'CRDT') {
4167  $filterarray = array(0, 2, 3);
4168  } elseif ($filtertype == 'DBIT') {
4169  $filterarray = array(1, 2, 3);
4170  } elseif ($filtertype != '' && $filtertype != '-1') {
4171  $filterarray = explode(',', $filtertype);
4172  }
4173 
4174  $this->load_cache_types_paiements();
4175 
4176  // Set default value if not already set by caller
4177  if (empty($selected) && !empty($conf->global->MAIN_DEFAULT_PAYMENT_TYPE_ID)) {
4178  $selected = $conf->global->MAIN_DEFAULT_PAYMENT_TYPE_ID;
4179  }
4180 
4181  $out .= '<select id="select'.$htmlname.'" class="flat selectpaymenttypes'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'">';
4182  if ($empty) {
4183  $out .= '<option value="">&nbsp;</option>';
4184  }
4185  foreach ($this->cache_types_paiements as $id => $arraytypes) {
4186  // If not good status
4187  if ($active >= 0 && $arraytypes['active'] != $active) {
4188  continue;
4189  }
4190 
4191  // On passe si on a demande de filtrer sur des modes de paiments particuliers
4192  if (count($filterarray) && !in_array($arraytypes['type'], $filterarray)) {
4193  continue;
4194  }
4195 
4196  // We discard empty line if showempty is on because an empty line has already been output.
4197  if ($empty && empty($arraytypes['code'])) {
4198  continue;
4199  }
4200 
4201  if ($format == 0) {
4202  $out .= '<option value="'.$id.'"';
4203  } elseif ($format == 1) {
4204  $out .= '<option value="'.$arraytypes['code'].'"';
4205  } elseif ($format == 2) {
4206  $out .= '<option value="'.$arraytypes['code'].'"';
4207  } elseif ($format == 3) {
4208  $out .= '<option value="'.$id.'"';
4209  }
4210  // Print attribute selected or not
4211  if ($format == 1 || $format == 2) {
4212  if ($selected == $arraytypes['code']) {
4213  $out .= ' selected';
4214  }
4215  } else {
4216  if ($selected == $id) {
4217  $out .= ' selected';
4218  }
4219  }
4220  $out .= '>';
4221  $value = '';
4222  if ($format == 0) {
4223  $value = ($maxlength ?dol_trunc($arraytypes['label'], $maxlength) : $arraytypes['label']);
4224  } elseif ($format == 1) {
4225  $value = $arraytypes['code'];
4226  } elseif ($format == 2) {
4227  $value = ($maxlength ?dol_trunc($arraytypes['label'], $maxlength) : $arraytypes['label']);
4228  } elseif ($format == 3) {
4229  $value = $arraytypes['code'];
4230  }
4231  $out .= $value ? $value : '&nbsp;';
4232  $out .= '</option>';
4233  }
4234  $out .= '</select>';
4235  if ($user->admin && !$noadmininfo) {
4236  $out .= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
4237  }
4238  $out .= ajax_combobox('select'.$htmlname);
4239 
4240  if (empty($nooutput)) {
4241  print $out;
4242  } else {
4243  return $out;
4244  }
4245  }
4246 
4247 
4256  public function selectPriceBaseType($selected = '', $htmlname = 'price_base_type', $addjscombo = 0)
4257  {
4258  global $langs;
4259 
4260  $return = '<select class="flat maxwidth100" id="select_'.$htmlname.'" name="'.$htmlname.'">';
4261  $options = array(
4262  'HT'=>$langs->trans("HT"),
4263  'TTC'=>$langs->trans("TTC")
4264  );
4265  foreach ($options as $id => $value) {
4266  if ($selected == $id) {
4267  $return .= '<option value="'.$id.'" selected>'.$value;
4268  } else {
4269  $return .= '<option value="'.$id.'">'.$value;
4270  }
4271  $return .= '</option>';
4272  }
4273  $return .= '</select>';
4274  if ($addjscombo) {
4275  $return .= ajax_combobox('select_'.$htmlname);
4276  }
4277 
4278  return $return;
4279  }
4280 
4281  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4287  public function load_cache_transport_mode()
4288  {
4289  // phpcs:enable
4290  global $langs;
4291 
4292  $num = count($this->cache_transport_mode); // TODO Use $conf->cache['payment_mode'] instead of $this->cache_transport_mode
4293  if ($num > 0) {
4294  return $num; // Cache already loaded
4295  }
4296 
4297  dol_syslog(__METHOD__, LOG_DEBUG);
4298 
4299  $this->cache_transport_mode = array();
4300 
4301  $sql = "SELECT rowid, code, label, active";
4302  $sql .= " FROM ".$this->db->prefix()."c_transport_mode";
4303  $sql .= " WHERE entity IN (".getEntity('c_transport_mode').")";
4304 
4305  $resql = $this->db->query($sql);
4306  if ($resql) {
4307  $num = $this->db->num_rows($resql);
4308  $i = 0;
4309  while ($i < $num) {
4310  $obj = $this->db->fetch_object($resql);
4311 
4312  // If traduction exist, we use it else we take the default label
4313  $label = ($langs->transnoentitiesnoconv("PaymentTypeShort".$obj->code) != ("PaymentTypeShort".$obj->code) ? $langs->transnoentitiesnoconv("PaymentTypeShort".$obj->code) : ($obj->label != '-' ? $obj->label : ''));
4314  $this->cache_transport_mode[$obj->rowid]['rowid'] = $obj->rowid;
4315  $this->cache_transport_mode[$obj->rowid]['code'] = $obj->code;
4316  $this->cache_transport_mode[$obj->rowid]['label'] = $label;
4317  $this->cache_transport_mode[$obj->rowid]['active'] = $obj->active;
4318  $i++;
4319  }
4320 
4321  $this->cache_transport_mode = dol_sort_array($this->cache_transport_mode, 'label', 'asc', 0, 0, 1);
4322 
4323  return $num;
4324  } else {
4325  dol_print_error($this->db);
4326  return -1;
4327  }
4328  }
4329 
4343  public function selectTransportMode($selected = '', $htmlname = 'transportmode', $format = 0, $empty = 1, $noadmininfo = 0, $maxlength = 0, $active = 1, $morecss = '')
4344  {
4345  global $langs, $user;
4346 
4347  dol_syslog(__METHOD__." ".$selected.", ".$htmlname.", ".$format, LOG_DEBUG);
4348 
4349  $this->load_cache_transport_mode();
4350 
4351  print '<select id="select'.$htmlname.'" class="flat selectmodetransport'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'">';
4352  if ($empty) {
4353  print '<option value="">&nbsp;</option>';
4354  }
4355  foreach ($this->cache_transport_mode as $id => $arraytypes) {
4356  // If not good status
4357  if ($active >= 0 && $arraytypes['active'] != $active) {
4358  continue;
4359  }
4360 
4361  // We discard empty line if showempty is on because an empty line has already been output.
4362  if ($empty && empty($arraytypes['code'])) {
4363  continue;
4364  }
4365 
4366  if ($format == 0) {
4367  print '<option value="'.$id.'"';
4368  } elseif ($format == 1) {
4369  print '<option value="'.$arraytypes['code'].'"';
4370  } elseif ($format == 2) {
4371  print '<option value="'.$arraytypes['code'].'"';
4372  } elseif ($format == 3) {
4373  print '<option value="'.$id.'"';
4374  }
4375  // If text is selected, we compare with code, else with id
4376  if (preg_match('/[a-z]/i', $selected) && $selected == $arraytypes['code']) {
4377  print ' selected';
4378  } elseif ($selected == $id) {
4379  print ' selected';
4380  }
4381  print '>';
4382  $value = '';
4383  if ($format == 0) {
4384  $value = ($maxlength ?dol_trunc($arraytypes['label'], $maxlength) : $arraytypes['label']);
4385  } elseif ($format == 1) {
4386  $value = $arraytypes['code'];
4387  } elseif ($format == 2) {
4388  $value = ($maxlength ?dol_trunc($arraytypes['label'], $maxlength) : $arraytypes['label']);
4389  } elseif ($format == 3) {
4390  $value = $arraytypes['code'];
4391  }
4392  print $value ? $value : '&nbsp;';
4393  print '</option>';
4394  }
4395  print '</select>';
4396  if ($user->admin && !$noadmininfo) {
4397  print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
4398  }
4399  }
4400 
4413  public function selectShippingMethod($selected = '', $htmlname = 'shipping_method_id', $filtre = '', $useempty = 0, $moreattrib = '', $noinfoadmin = 0, $morecss = '')
4414  {
4415  global $langs, $conf, $user;
4416 
4417  $langs->load("admin");
4418  $langs->load("deliveries");
4419 
4420  $sql = "SELECT rowid, code, libelle as label";
4421  $sql .= " FROM ".$this->db->prefix()."c_shipment_mode";
4422  $sql .= " WHERE active > 0";
4423  if ($filtre) {
4424  $sql .= " AND ".$filtre;
4425  }
4426  $sql .= " ORDER BY libelle ASC";
4427 
4428  dol_syslog(get_class($this)."::selectShippingMode", LOG_DEBUG);
4429  $result = $this->db->query($sql);
4430  if ($result) {
4431  $num = $this->db->num_rows($result);
4432  $i = 0;
4433  if ($num) {
4434  print '<select id="select'.$htmlname.'" class="flat selectshippingmethod'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'"'.($moreattrib ? ' '.$moreattrib : '').'>';
4435  if ($useempty == 1 || ($useempty == 2 && $num > 1)) {
4436  print '<option value="-1">&nbsp;</option>';
4437  }
4438  while ($i < $num) {
4439  $obj = $this->db->fetch_object($result);
4440  if ($selected == $obj->rowid) {
4441  print '<option value="'.$obj->rowid.'" selected>';
4442  } else {
4443  print '<option value="'.$obj->rowid.'">';
4444  }
4445  print ($langs->trans("SendingMethod".strtoupper($obj->code)) != "SendingMethod".strtoupper($obj->code)) ? $langs->trans("SendingMethod".strtoupper($obj->code)) : $obj->label;
4446  print '</option>';
4447  $i++;
4448  }
4449  print "</select>";
4450  if ($user->admin && empty($noinfoadmin)) {
4451  print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
4452  }
4453 
4454  print ajax_combobox('select'.$htmlname);
4455  } else {
4456  print $langs->trans("NoShippingMethodDefined");
4457  }
4458  } else {
4459  dol_print_error($this->db);
4460  }
4461  }
4462 
4472  public function formSelectShippingMethod($page, $selected = '', $htmlname = 'shipping_method_id', $addempty = 0)
4473  {
4474  global $langs;
4475 
4476  $langs->load("deliveries");
4477 
4478  if ($htmlname != "none") {
4479  print '<form method="POST" action="'.$page.'">';
4480  print '<input type="hidden" name="action" value="setshippingmethod">';
4481  print '<input type="hidden" name="token" value="'.newToken().'">';
4482  $this->selectShippingMethod($selected, $htmlname, '', $addempty);
4483  print '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
4484  print '</form>';
4485  } else {
4486  if ($selected) {
4487  $code = $langs->getLabelFromKey($this->db, $selected, 'c_shipment_mode', 'rowid', 'code');
4488  print $langs->trans("SendingMethod".strtoupper($code));
4489  } else {
4490  print "&nbsp;";
4491  }
4492  }
4493  }
4494 
4503  public function selectSituationInvoices($selected = '', $socid = 0)
4504  {
4505  global $langs;
4506 
4507  $langs->load('bills');
4508 
4509  $opt = '<option value="" selected></option>';
4510  $sql = "SELECT rowid, ref, situation_cycle_ref, situation_counter, situation_final, fk_soc";
4511  $sql .= ' FROM '.$this->db->prefix().'facture';
4512  $sql .= ' WHERE entity IN ('.getEntity('invoice').')';
4513  $sql .= ' AND situation_counter >= 1';
4514  $sql .= ' AND fk_soc = '.(int) $socid;
4515  $sql .= ' AND type <> 2';
4516  $sql .= ' ORDER by situation_cycle_ref, situation_counter desc';
4517  $resql = $this->db->query($sql);
4518 
4519  if ($resql && $this->db->num_rows($resql) > 0) {
4520  // Last seen cycle
4521  $ref = 0;
4522  while ($obj = $this->db->fetch_object($resql)) {
4523  //Same cycle ?
4524  if ($obj->situation_cycle_ref != $ref) {
4525  // Just seen this cycle
4526  $ref = $obj->situation_cycle_ref;
4527  //not final ?
4528  if ($obj->situation_final != 1) {
4529  //Not prov?
4530  if (substr($obj->ref, 1, 4) != 'PROV') {
4531  if ($selected == $obj->rowid) {
4532  $opt .= '<option value="'.$obj->rowid.'" selected>'.$obj->ref.'</option>';
4533  } else {
4534  $opt .= '<option value="'.$obj->rowid.'">'.$obj->ref.'</option>';
4535  }
4536  }
4537  }
4538  }
4539  }
4540  } else {
4541  dol_syslog("Error sql=".$sql.", error=".$this->error, LOG_ERR);
4542  }
4543  if ($opt == '<option value ="" selected></option>') {
4544  $opt = '<option value ="0" selected>'.$langs->trans('NoSituations').'</option>';
4545  }
4546  return $opt;
4547  }
4548 
4558  public function selectUnits($selected = '', $htmlname = 'units', $showempty = 0, $unit_type = '')
4559  {
4560  global $langs;
4561 
4562  $langs->load('products');
4563 
4564  $return = '<select class="flat" id="'.$htmlname.'" name="'.$htmlname.'">';
4565 
4566  $sql = "SELECT rowid, label, code FROM ".$this->db->prefix()."c_units";
4567  $sql .= ' WHERE active > 0';
4568  if (!empty($unit_type)) {
4569  $sql .= " AND unit_type = '".$this->db->escape($unit_type)."'";
4570  }
4571  $sql .= " ORDER BY sortorder";
4572 
4573  $resql = $this->db->query($sql);
4574  if ($resql && $this->db->num_rows($resql) > 0) {
4575  if ($showempty) {
4576  $return .= '<option value="none"></option>';
4577  }
4578 
4579  while ($res = $this->db->fetch_object($resql)) {
4580  $unitLabel = $res->label;
4581  if (!empty($langs->tab_translate['unit'.$res->code])) { // check if Translation is available before
4582  $unitLabel = $langs->trans('unit'.$res->code) != $res->label ? $langs->trans('unit'.$res->code) : $res->label;
4583  }
4584 
4585  if ($selected == $res->rowid) {
4586  $return .= '<option value="'.$res->rowid.'" selected>'.$unitLabel.'</option>';
4587  } else {
4588  $return .= '<option value="'.$res->rowid.'">'.$unitLabel.'</option>';
4589  }
4590  }
4591  $return .= '</select>';
4592  }
4593  return $return;
4594  }
4595 
4596  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4611  public function select_comptes($selected = '', $htmlname = 'accountid', $status = 0, $filtre = '', $useempty = 0, $moreattrib = '', $showcurrency = 0, $morecss = '', $nooutput = 0)
4612  {
4613  // phpcs:enable
4614  global $langs, $conf;
4615 
4616  $out = '';
4617 
4618  $langs->load("admin");
4619  $num = 0;
4620 
4621  $sql = "SELECT rowid, label, bank, clos as status, currency_code";
4622  $sql .= " FROM ".$this->db->prefix()."bank_account";
4623  $sql .= " WHERE entity IN (".getEntity('bank_account').")";
4624  if ($status != 2) {
4625  $sql .= " AND clos = ".(int) $status;
4626  }
4627  if ($filtre) {
4628  $sql .= " AND ".$filtre;
4629  }
4630  $sql .= " ORDER BY label";
4631 
4632  dol_syslog(get_class($this)."::select_comptes", LOG_DEBUG);
4633  $result = $this->db->query($sql);
4634  if ($result) {
4635  $num = $this->db->num_rows($result);
4636  $i = 0;
4637  if ($num) {
4638  $out .= '<select id="select'.$htmlname.'" class="flat selectbankaccount'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'"'.($moreattrib ? ' '.$moreattrib : '').'>';
4639  if ($useempty == 1 || ($useempty == 2 && $num > 1)) {
4640  $out .= '<option value="-1">&nbsp;</option>';
4641  }
4642 
4643  while ($i < $num) {
4644  $obj = $this->db->fetch_object($result);
4645  if ($selected == $obj->rowid || ($useempty == 2 && $num == 1 && empty($selected))) {
4646  $out .= '<option value="'.$obj->rowid.'" data-currency-code="'.$obj->currency_code.'" selected>';
4647  } else {
4648  $out .= '<option value="'.$obj->rowid.'" data-currency-code="'.$obj->currency_code.'">';
4649  }
4650  $out .= trim($obj->label);
4651  if ($showcurrency) {
4652  $out .= ' ('.$obj->currency_code.')';
4653  }
4654  if ($status == 2 && $obj->status == 1) {
4655  $out .= ' ('.$langs->trans("Closed").')';
4656  }
4657  $out .= '</option>';
4658  $i++;
4659  }
4660  $out .= "</select>";
4661  $out .= ajax_combobox('select'.$htmlname);
4662  } else {
4663  if ($status == 0) {
4664  $out .= '<span class="opacitymedium">'.$langs->trans("NoActiveBankAccountDefined").'</span>';
4665  } else {
4666  $out .= '<span class="opacitymedium">'.$langs->trans("NoBankAccountFound").'</span>';
4667  }
4668  }
4669  } else {
4670  dol_print_error($this->db);
4671  }
4672 
4673  // Output or return
4674  if (empty($nooutput)) {
4675  print $out;
4676  } else {
4677  return $out;
4678  }
4679 
4680  return $num;
4681  }
4682 
4694  public function selectEstablishments($selected = '', $htmlname = 'entity', $status = 0, $filtre = '', $useempty = 0, $moreattrib = '')
4695  {
4696  global $langs, $conf;
4697 
4698  $langs->load("admin");
4699  $num = 0;
4700 
4701  $sql = "SELECT rowid, name, fk_country, status, entity";
4702  $sql .= " FROM ".$this->db->prefix()."establishment";
4703  $sql .= " WHERE 1=1";
4704  if ($status != 2) {
4705  $sql .= " AND status = ".(int) $status;
4706  }
4707  if ($filtre) {
4708  $sql .= " AND ".$filtre;
4709  }
4710  $sql .= " ORDER BY name";
4711 
4712  dol_syslog(get_class($this)."::select_establishment", LOG_DEBUG);
4713  $result = $this->db->query($sql);
4714  if ($result) {
4715  $num = $this->db->num_rows($result);
4716  $i = 0;
4717  if ($num) {
4718  print '<select id="select'.$htmlname.'" class="flat selectestablishment" name="'.$htmlname.'"'.($moreattrib ? ' '.$moreattrib : '').'>';
4719  if ($useempty == 1 || ($useempty == 2 && $num > 1)) {
4720  print '<option value="-1">&nbsp;</option>';
4721  }
4722 
4723  while ($i < $num) {
4724  $obj = $this->db->fetch_object($result);
4725  if ($selected == $obj->rowid) {
4726  print '<option value="'.$obj->rowid.'" selected>';
4727  } else {
4728  print '<option value="'.$obj->rowid.'">';
4729  }
4730  print trim($obj->name);
4731  if ($status == 2 && $obj->status == 1) {
4732  print ' ('.$langs->trans("Closed").')';
4733  }
4734  print '</option>';
4735  $i++;
4736  }
4737  print "</select>";
4738  } else {
4739  if ($status == 0) {
4740  print '<span class="opacitymedium">'.$langs->trans("NoActiveEstablishmentDefined").'</span>';
4741  } else {
4742  print '<span class="opacitymedium">'.$langs->trans("NoEstablishmentFound").'</span>';
4743  }
4744  }
4745  } else {
4746  dol_print_error($this->db);
4747  }
4748  }
4749 
4759  public function formSelectAccount($page, $selected = '', $htmlname = 'fk_account', $addempty = 0)
4760  {
4761  global $langs;
4762  if ($htmlname != "none") {
4763  print '<form method="POST" action="'.$page.'">';
4764  print '<input type="hidden" name="action" value="setbankaccount">';
4765  print '<input type="hidden" name="token" value="'.newToken().'">';
4766  print img_picto('', 'bank_account', 'class="pictofixedwidth"');
4767  $nbaccountfound = $this->select_comptes($selected, $htmlname, 0, '', $addempty);
4768  if ($nbaccountfound > 0) {
4769  print '<input type="submit" class="button smallpaddingimp valignmiddle" value="'.$langs->trans("Modify").'">';
4770  }
4771  print '</form>';
4772  } else {
4773  $langs->load('banks');
4774 
4775  if ($selected) {
4776  require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
4777  $bankstatic = new Account($this->db);
4778  $result = $bankstatic->fetch($selected);
4779  if ($result) {
4780  print $bankstatic->getNomUrl(1);
4781  }
4782  } else {
4783  print "&nbsp;";
4784  }
4785  }
4786  }
4787 
4788  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4807  public function select_all_categories($type, $selected = '', $htmlname = "parent", $maxlength = 64, $markafterid = 0, $outputmode = 0, $include = 0, $morecss = '')
4808  {
4809  // phpcs:enable
4810  global $conf, $langs;
4811  $langs->load("categories");
4812 
4813  include_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
4814 
4815  // For backward compatibility
4816  if (is_numeric($type)) {
4817  dol_syslog(__METHOD__.': using numeric value for parameter type is deprecated. Use string code instead.', LOG_WARNING);
4818  }
4819 
4820  if ($type === Categorie::TYPE_BANK_LINE) {
4821  // TODO Move this into common category feature
4822  $cate_arbo = array();
4823  $sql = "SELECT c.label, c.rowid";
4824  $sql .= " FROM ".$this->db->prefix()."bank_categ as c";
4825  $sql .= " WHERE entity = ".$conf->entity;
4826  $sql .= " ORDER BY c.label";
4827  $result = $this->db->query($sql);
4828  if ($result) {
4829  $num = $this->db->num_rows($result);
4830  $i = 0;
4831  while ($i < $num) {
4832  $objp = $this->db->fetch_object($result);
4833  if ($objp) {
4834  $cate_arbo[$objp->rowid] = array('id'=>$objp->rowid, 'fulllabel'=>$objp->label);
4835  }
4836  $i++;
4837  }
4838  $this->db->free($result);
4839  } else {
4840  dol_print_error($this->db);
4841  }
4842  } else {
4843  $cat = new Categorie($this->db);
4844  $cate_arbo = $cat->get_full_arbo($type, $markafterid, $include);
4845  }
4846 
4847  $output = '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" id="'.$htmlname.'">';
4848  $outarray = array();
4849  if (is_array($cate_arbo)) {
4850  if (!count($cate_arbo)) {
4851  $output .= '<option value="-1" disabled>'.$langs->trans("NoCategoriesDefined").'</option>';
4852  } else {
4853  $output .= '<option value="-1">&nbsp;</option>';
4854  foreach ($cate_arbo as $key => $value) {
4855  if ($cate_arbo[$key]['id'] == $selected || ($selected === 'auto' && count($cate_arbo) == 1)) {
4856  $add = 'selected ';
4857  } else {
4858  $add = '';
4859  }
4860  $output .= '<option '.$add.'value="'.$cate_arbo[$key]['id'].'">'.dol_trunc($cate_arbo[$key]['fulllabel'], $maxlength, 'middle').'</option>';
4861 
4862  $outarray[$cate_arbo[$key]['id']] = $cate_arbo[$key]['fulllabel'];
4863  }
4864  }
4865  }
4866  $output .= '</select>';
4867  $output .= "\n";
4868 
4869  if ($outputmode) {
4870  return $outarray;
4871  }
4872  return $output;
4873  }
4874 
4875  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4892  public function form_confirm($page, $title, $question, $action, $formquestion = '', $selectedchoice = "", $useajax = 0, $height = 170, $width = 500)
4893  {
4894  // phpcs:enable
4895  dol_syslog(__METHOD__.': using form_confirm is deprecated. Use formconfim instead.', LOG_WARNING);
4896  print $this->formconfirm($page, $title, $question, $action, $formquestion, $selectedchoice, $useajax, $height, $width);
4897  }
4898 
4925  public function formconfirm($page, $title, $question, $action, $formquestion = '', $selectedchoice = '', $useajax = 0, $height = 0, $width = 500, $disableformtag = 0, $labelbuttonyes = 'Yes', $labelbuttonno = 'No')
4926  {
4927  global $langs, $conf;
4928 
4929  $more = '<!-- formconfirm before calling page='.dol_escape_htmltag($page).' -->';
4930  $formconfirm = '';
4931  $inputok = array();
4932  $inputko = array();
4933 
4934  // Clean parameters
4935  $newselectedchoice = empty($selectedchoice) ? "no" : $selectedchoice;
4936  if ($conf->browser->layout == 'phone') {
4937  $width = '95%';
4938  }
4939 
4940  // Set height automatically if not defined
4941  if (empty($height)) {
4942  $height = 220;
4943  if (is_array($formquestion) && count($formquestion) > 2) {
4944  $height += ((count($formquestion) - 2) * 24);
4945  }
4946  }
4947 
4948  if (is_array($formquestion) && !empty($formquestion)) {
4949  // First add hidden fields and value
4950  foreach ($formquestion as $key => $input) {
4951  if (is_array($input) && !empty($input)) {
4952  if ($input['type'] == 'hidden') {
4953  $moreattr = (!empty($input['moreattr']) ? ' '.$input['moreattr'] : '');
4954  $morecss = (!empty($input['morecss']) ? ' '.$input['morecss'] : '');
4955 
4956  $more .= '<input type="hidden" id="'.dol_escape_htmltag($input['name']).'" name="'.dol_escape_htmltag($input['name']).'" value="'.dol_escape_htmltag($input['value']).'" class="'.$morecss.'"'.$moreattr.'>'."\n";
4957  }
4958  }
4959  }
4960 
4961  // Now add questions
4962  $moreonecolumn = '';
4963  $more .= '<div class="tagtable paddingtopbottomonly centpercent noborderspacing">'."\n";
4964  foreach ($formquestion as $key => $input) {
4965  if (is_array($input) && !empty($input)) {
4966  $size = (!empty($input['size']) ? ' size="'.$input['size'].'"' : ''); // deprecated. Use morecss instead.
4967  $moreattr = (!empty($input['moreattr']) ? ' '.$input['moreattr'] : '');
4968  $morecss = (!empty($input['morecss']) ? ' '.$input['morecss'] : '');
4969 
4970  if ($input['type'] == 'text') {
4971  $more .= '<div class="tagtr"><div class="tagtd'.(empty($input['tdclass']) ? '' : (' '.$input['tdclass'])).'">'.$input['label'].'</div><div class="tagtd"><input type="text" class="flat'.$morecss.'" id="'.dol_escape_htmltag($input['name']).'" name="'.dol_escape_htmltag($input['name']).'"'.$size.' value="'.$input['value'].'"'.$moreattr.' /></div></div>'."\n";
4972  } elseif ($input['type'] == 'password') {
4973  $more .= '<div class="tagtr"><div class="tagtd'.(empty($input['tdclass']) ? '' : (' '.$input['tdclass'])).'">'.$input['label'].'</div><div class="tagtd"><input type="password" class="flat'.$morecss.'" id="'.dol_escape_htmltag($input['name']).'" name="'.dol_escape_htmltag($input['name']).'"'.$size.' value="'.$input['value'].'"'.$moreattr.' /></div></div>'."\n";
4974  } elseif ($input['type'] == 'textarea') {
4975  /*$more .= '<div class="tagtr"><div class="tagtd'.(empty($input['tdclass']) ? '' : (' '.$input['tdclass'])).'">'.$input['label'].'</div><div class="tagtd">';
4976  $more .= '<textarea name="'.$input['name'].'" class="'.$morecss.'"'.$moreattr.'>';
4977  $more .= $input['value'];
4978  $more .= '</textarea>';
4979  $more .= '</div></div>'."\n";*/
4980  $moreonecolumn .= '<div class="margintoponly">';
4981  $moreonecolumn .= $input['label'].'<br>';
4982  $moreonecolumn .= '<textarea name="'.dol_escape_htmltag($input['name']).'" id="'.dol_escape_htmltag($input['name']).'" class="'.$morecss.'"'.$moreattr.'>';
4983  $moreonecolumn .= $input['value'];
4984  $moreonecolumn .= '</textarea>';
4985  $moreonecolumn .= '</div>';
4986  } elseif ($input['type'] == 'select') {
4987  if (empty($morecss)) {
4988  $morecss = 'minwidth100';
4989  }
4990 
4991  $show_empty = isset($input['select_show_empty']) ? $input['select_show_empty'] : 1;
4992  $key_in_label = isset($input['select_key_in_label']) ? $input['select_key_in_label'] : 0;
4993  $value_as_key = isset($input['select_value_as_key']) ? $input['select_value_as_key'] : 0;
4994  $translate = isset($input['select_translate']) ? $input['select_translate'] : 0;
4995  $maxlen = isset($input['select_maxlen']) ? $input['select_maxlen'] : 0;
4996  $disabled = isset($input['select_disabled']) ? $input['select_disabled'] : 0;
4997  $sort = isset($input['select_sort']) ? $input['select_sort'] : '';
4998 
4999  $more .= '<div class="tagtr"><div class="tagtd'.(empty($input['tdclass']) ? '' : (' '.$input['tdclass'])).'">';
5000  if (!empty($input['label'])) {
5001  $more .= $input['label'].'</div><div class="tagtd left">';
5002  }
5003  $more .= $this->selectarray($input['name'], $input['values'], isset($input['default'])?$input['default']:'', $show_empty, $key_in_label, $value_as_key, $moreattr, $translate, $maxlen, $disabled, $sort, $morecss);
5004  $more .= '</div></div>'."\n";
5005  } elseif ($input['type'] == 'checkbox') {
5006  $more .= '<div class="tagtr">';
5007  $more .= '<div class="tagtd'.(empty($input['tdclass']) ? '' : (' '.$input['tdclass'])).'">'.$input['label'].' </div><div class="tagtd">';
5008  $more .= '<input type="checkbox" class="flat'.$morecss.'" id="'.dol_escape_htmltag($input['name']).'" name="'.dol_escape_htmltag($input['name']).'"'.$moreattr;
5009  if (!is_bool($input['value']) && $input['value'] != 'false' && $input['value'] != '0' && $input['value'] != '') {
5010  $more .= ' checked';
5011  }
5012  if (is_bool($input['value']) && $input['value']) {
5013  $more .= ' checked';
5014  }
5015  if (isset($input['disabled'])) {
5016  $more .= ' disabled';
5017  }
5018  $more .= ' /></div>';
5019  $more .= '</div>'."\n";
5020  } elseif ($input['type'] == 'radio') {
5021  $i = 0;
5022  foreach ($input['values'] as $selkey => $selval) {
5023  $more .= '<div class="tagtr">';
5024  if ($i == 0) {
5025  $more .= '<div class="tagtd'.(empty($input['tdclass']) ? ' tdtop' : (' tdtop '.$input['tdclass'])).'">'.$input['label'].'</div>';
5026  } else {
5027  $more .= '<div clas="tagtd'.(empty($input['tdclass']) ? '' : (' "'.$input['tdclass'])).'">&nbsp;</div>';
5028  }
5029  $more .= '<div class="tagtd'.($i == 0 ? ' tdtop' : '').'"><input type="radio" class="flat'.$morecss.'" id="'.dol_escape_htmltag($input['name'].$selkey).'" name="'.dol_escape_htmltag($input['name']).'" value="'.$selkey.'"'.$moreattr;
5030  if (!empty($input['disabled'])) {
5031  $more .= ' disabled';
5032  }
5033  if (isset($input['default']) && $input['default'] === $selkey) {
5034  $more .= ' checked="checked"';
5035  }
5036  $more .= ' /> ';
5037  $more .= '<label for="'.dol_escape_htmltag($input['name'].$selkey).'" class="valignmiddle">'.$selval.'</label>';
5038  $more .= '</div></div>'."\n";
5039  $i++;
5040  }
5041  } elseif ($input['type'] == 'date') {
5042  $more .= '<div class="tagtr"><div class="tagtd'.(empty($input['tdclass']) ? '' : (' '.$input['tdclass'])).'">'.$input['label'].'</div>';
5043  $more .= '<div class="tagtd">';
5044  $addnowlink = (empty($input['datenow']) ? 0 : 1);
5045  $more .= $this->selectDate($input['value'], $input['name'], 0, 0, 0, '', 1, $addnowlink);
5046  $more .= '</div></div>'."\n";
5047  $formquestion[] = array('name'=>$input['name'].'day');
5048  $formquestion[] = array('name'=>$input['name'].'month');
5049  $formquestion[] = array('name'=>$input['name'].'year');
5050  $formquestion[] = array('name'=>$input['name'].'hour');
5051  $formquestion[] = array('name'=>$input['name'].'min');
5052  } elseif ($input['type'] == 'other') {
5053  $more .= '<div class="tagtr"><div class="tagtd'.(empty($input['tdclass']) ? '' : (' '.$input['tdclass'])).'">';
5054  if (!empty($input['label'])) {
5055  $more .= $input['label'].'</div><div class="tagtd">';
5056  }
5057  $more .= $input['value'];
5058  $more .= '</div></div>'."\n";
5059  } elseif ($input['type'] == 'onecolumn') {
5060  $moreonecolumn .= '<div class="margintoponly">';
5061  $moreonecolumn .= $input['value'];
5062  $moreonecolumn .= '</div>'."\n";
5063  } elseif ($input['type'] == 'hidden') {
5064  // Do nothing more, already added by a previous loop
5065  } elseif ($input['type'] == 'separator') {
5066  $more .= '<br>';
5067  } else {
5068  $more .= 'Error type '.$input['type'].' for the confirm box is not a supported type';
5069  }
5070  }
5071  }
5072  $more .= '</div>'."\n";
5073  $more .= $moreonecolumn;
5074  }
5075 
5076  // JQUERY method dialog is broken with smartphone, we use standard HTML.
5077  // Note: When using dol_use_jmobile or no js, you must also check code for button use a GET url with action=xxx and check that you also output the confirm code when action=xxx
5078  // See page product/card.php for example
5079  if (!empty($conf->dol_use_jmobile)) {
5080  $useajax = 0;
5081  }
5082  if (empty($conf->use_javascript_ajax)) {
5083  $useajax = 0;
5084  }
5085 
5086  if ($useajax) {
5087  $autoOpen = true;
5088  $dialogconfirm = 'dialog-confirm';
5089  $button = '';
5090  if (!is_numeric($useajax)) {
5091  $button = $useajax;
5092  $useajax = 1;
5093  $autoOpen = false;
5094  $dialogconfirm .= '-'.$button;
5095  }
5096  $pageyes = $page.(preg_match('/\?/', $page) ? '&' : '?').'action='.urlencode($action).'&confirm=yes';
5097  $pageno = ($useajax == 2 ? $page.(preg_match('/\?/', $page) ? '&' : '?').'action='.urlencode($action).'&confirm=no' : '');
5098 
5099  // Add input fields into list of fields to read during submit (inputok and inputko)
5100  if (is_array($formquestion)) {
5101  foreach ($formquestion as $key => $input) {
5102  //print "xx ".$key." rr ".is_array($input)."<br>\n";
5103  // Add name of fields to propagate with the GET when submitting the form with button OK.
5104  if (is_array($input) && isset($input['name'])) {
5105  if (strpos($input['name'], ',') > 0) {
5106  $inputok = array_merge($inputok, explode(',', $input['name']));
5107  } else {
5108  array_push($inputok, $input['name']);
5109  }
5110  }
5111  // Add name of fields to propagate with the GET when submitting the form with button KO.
5112  if (isset($input['inputko']) && $input['inputko'] == 1) {
5113  array_push($inputko, $input['name']);
5114  }
5115  }
5116  }
5117 
5118  // Show JQuery confirm box.
5119  $formconfirm .= '<div id="'.$dialogconfirm.'" title="'.dol_escape_htmltag($title).'" style="display: none;">';
5120  if (is_array($formquestion) && !empty($formquestion['text'])) {
5121  $formconfirm .= '<div class="confirmtext">'.$formquestion['text'].'</div>'."\n";
5122  }
5123  if (!empty($more)) {
5124  $formconfirm .= '<div class="confirmquestions">'.$more.'</div>'."\n";
5125  }
5126  $formconfirm .= ($question ? '<div class="confirmmessage">'.img_help('', '').' '.$question.'</div>' : '');
5127  $formconfirm .= '</div>'."\n";
5128 
5129  $formconfirm .= "\n<!-- begin code of popup for formconfirm page=".$page." -->\n";
5130  $formconfirm .= '<script type="text/javascript">'."\n";
5131  $formconfirm .= "/* Code for the jQuery('#dialogforpopup').dialog() */\n";
5132  $formconfirm .= 'jQuery(document).ready(function() {
5133  $(function() {
5134  $( "#'.$dialogconfirm.'" ).dialog(
5135  {
5136  autoOpen: '.($autoOpen ? "true" : "false").',';
5137  if ($newselectedchoice == 'no') {
5138  $formconfirm .= '
5139  open: function() {
5140  $(this).parent().find("button.ui-button:eq(2)").focus();
5141  },';
5142  }
5143 
5144  $jsforcursor = '';
5145  if (empty($useajax)) {
5146  $jsforcursor = '// The call to urljump can be slow, so we set the wait cursor'."\n";
5147  $jsforcursor .= 'jQuery("html,body,#id-container").addClass("cursorwait");'."\n";
5148  }
5149 
5150  $formconfirm .= '
5151  resizable: false,
5152  height: "'.$height.'",
5153  width: "'.$width.'",
5154  modal: true,
5155  closeOnEscape: false,
5156  buttons: {
5157  "'.dol_escape_js($langs->transnoentities($labelbuttonyes)).'": function() {
5158  var options = "&token='.urlencode(newToken()).'";
5159  var inputok = '.json_encode($inputok).'; /* List of fields into form */
5160  var pageyes = "'.dol_escape_js(!empty($pageyes) ? $pageyes : '').'";
5161 
5162  if (inputok.length > 0) {
5163  $.each(inputok, function(i, inputname) {
5164  var more = "";
5165  var inputvalue;
5166  if ($("input[name=\'" + inputname + "\']").attr("type") == "radio") {
5167  inputvalue = $("input[name=\'" + inputname + "\']:checked").val();
5168  } else {
5169  if ($("#" + inputname).attr("type") == "checkbox") { more = ":checked"; }
5170  inputvalue = $("#" + inputname + more).val();
5171  }
5172  if (typeof inputvalue == "undefined") { inputvalue=""; }
5173  console.log("formconfirm check inputname="+inputname+" inputvalue="+inputvalue);
5174  options += "&" + inputname + "=" + encodeURIComponent(inputvalue);
5175  });
5176  }
5177  var urljump = pageyes + (pageyes.indexOf("?") < 0 ? "?" : "") + options;
5178  if (pageyes.length > 0) {
5179  '.$jsforcursor.'
5180  location.href = urljump;
5181  console.log("after location.href");
5182  }
5183  $(this).dialog("close");
5184  },
5185  "'.dol_escape_js($langs->transnoentities($labelbuttonno)).'": function() {
5186  var options = "&token='.urlencode(newToken()).'";
5187  var inputko = '.json_encode($inputko).'; /* List of fields into form */
5188  var pageno="'.dol_escape_js(!empty($pageno) ? $pageno : '').'";
5189  if (inputko.length > 0) {
5190  $.each(inputko, function(i, inputname) {
5191  var more = "";
5192  if ($("#" + inputname).attr("type") == "checkbox") { more = ":checked"; }
5193  var inputvalue = $("#" + inputname + more).val();
5194  if (typeof inputvalue == "undefined") { inputvalue=""; }
5195  options += "&" + inputname + "=" + encodeURIComponent(inputvalue);
5196  });
5197  }
5198  var urljump=pageno + (pageno.indexOf("?") < 0 ? "?" : "") + options;
5199  //alert(urljump);
5200  if (pageno.length > 0) {
5201  '.$jsforcursor.'
5202  location.href = urljump;
5203  console.log("after location.href");
5204  }
5205  $(this).dialog("close");
5206  }
5207  }
5208  }
5209  );
5210 
5211  var button = "'.$button.'";
5212  if (button.length > 0) {
5213  $( "#" + button ).click(function() {
5214  $("#'.$dialogconfirm.'").dialog("open");
5215  });
5216  }
5217  });
5218  });
5219  </script>';
5220  $formconfirm .= "<!-- end ajax formconfirm -->\n";
5221  } else {
5222  $formconfirm .= "\n<!-- begin formconfirm page=".dol_escape_htmltag($page)." -->\n";
5223 
5224  if (empty($disableformtag)) {
5225  $formconfirm .= '<form method="POST" action="'.$page.'" class="notoptoleftroright">'."\n";
5226  }
5227 
5228  $formconfirm .= '<input type="hidden" name="action" value="'.$action.'">'."\n";
5229  $formconfirm .= '<input type="hidden" name="token" value="'.newToken().'">'."\n";
5230 
5231  $formconfirm .= '<table class="valid centpercent">'."\n";
5232 
5233  // Line title
5234  $formconfirm .= '<tr class="validtitre"><td class="validtitre" colspan="2">';
5235  $formconfirm .= img_picto('', 'recent').' '.$title;
5236  $formconfirm .= '</td></tr>'."\n";
5237 
5238  // Line text
5239  if (is_array($formquestion) && !empty($formquestion['text'])) {
5240  $formconfirm .= '<tr class="valid"><td class="valid" colspan="2">'.$formquestion['text'].'</td></tr>'."\n";
5241  }
5242 
5243  // Line form fields
5244  if ($more) {
5245  $formconfirm .= '<tr class="valid"><td class="valid" colspan="2">'."\n";
5246  $formconfirm .= $more;
5247  $formconfirm .= '</td></tr>'."\n";
5248  }
5249 
5250  // Line with question
5251  $formconfirm .= '<tr class="valid">';
5252  $formconfirm .= '<td class="valid">'.$question.'</td>';
5253  $formconfirm .= '<td class="valid center">';
5254  $formconfirm .= $this->selectyesno("confirm", $newselectedchoice, 0, false, 0, 0, 'marginleftonly marginrightonly', $labelbuttonyes, $labelbuttonno);
5255  $formconfirm .= '<input class="button valignmiddle confirmvalidatebutton small" type="submit" value="'.$langs->trans("Validate").'">';
5256  $formconfirm .= '</td>';
5257  $formconfirm .= '</tr>'."\n";
5258 
5259  $formconfirm .= '</table>'."\n";
5260 
5261  if (empty($disableformtag)) {
5262  $formconfirm .= "</form>\n";
5263  }
5264  $formconfirm .= '<br>';
5265 
5266  if (!empty($conf->use_javascript_ajax)) {
5267  $formconfirm .= '<!-- code to disable button to avoid double clic -->';
5268  $formconfirm .= '<script type="text/javascript">'."\n";
5269  $formconfirm .= '
5270  $(document).ready(function () {
5271  $(".confirmvalidatebutton").on("click", function() {
5272  console.log("We click on button");
5273  $(this).attr("disabled", "disabled");
5274  setTimeout(\'$(".confirmvalidatebutton").removeAttr("disabled")\', 3000);
5275  //console.log($(this).closest("form"));
5276  $(this).closest("form").submit();
5277  });
5278  });
5279  ';
5280  $formconfirm .= '</script>'."\n";
5281  }
5282 
5283  $formconfirm .= "<!-- end formconfirm -->\n";
5284  }
5285 
5286  return $formconfirm;
5287  }
5288 
5289 
5290  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5304  public function form_project($page, $socid, $selected = '', $htmlname = 'projectid', $discard_closed = 0, $maxlength = 20, $forcefocus = 0, $nooutput = 0)
5305  {
5306  // phpcs:enable
5307  global $langs;
5308 
5309  require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
5310  require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
5311 
5312  $out = '';
5313 
5314  $formproject = new FormProjets($this->db);
5315 
5316  $langs->load("project");
5317  if ($htmlname != "none") {
5318  $out .= "\n";
5319  $out .= '<form method="post" action="'.$page.'">';
5320  $out .= '<input type="hidden" name="action" value="classin">';
5321  $out .= '<input type="hidden" name="token" value="'.newToken().'">';
5322  $out .= $formproject->select_projects($socid, $selected, $htmlname, $maxlength, 0, 1, $discard_closed, $forcefocus, 0, 0, '', 1);
5323  $out .= '<input type="submit" class="button smallpaddingimp" value="'.$langs->trans("Modify").'">';
5324  $out .= '</form>';
5325  } else {
5326  $out .= '<span class="project_head_block">';
5327  if ($selected) {
5328  $projet = new Project($this->db);
5329  $projet->fetch($selected);
5330  $out .= $projet->getNomUrl(1, '', 1);
5331  } else {
5332  $out .= "&nbsp;";
5333  }
5334  $out .= '</span>';
5335  }
5336 
5337  if (empty($nooutput)) {
5338  print $out;
5339  return '';
5340  }
5341  return $out;
5342  }
5343 
5344  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5359  public function form_conditions_reglement($page, $selected = '', $htmlname = 'cond_reglement_id', $addempty = 0, $type = '', $filtertype = -1, $deposit_percent = -1)
5360  {
5361  // phpcs:enable
5362  global $langs;
5363  if ($htmlname != "none") {
5364  print '<form method="POST" action="'.$page.'">';
5365  print '<input type="hidden" name="action" value="setconditions">';
5366  print '<input type="hidden" name="token" value="'.newToken().'">';
5367  if ($type) {
5368  print '<input type="hidden" name="type" value="'.dol_escape_htmltag($type).'">';
5369  }
5370  $this->select_conditions_paiements($selected, $htmlname, $filtertype, $addempty, 0, '', $deposit_percent);
5371  print '<input type="submit" class="button valignmiddle smallpaddingimp" value="'.$langs->trans("Modify").'">';
5372  print '</form>';
5373  } else {
5374  if ($selected) {
5376  if (isset($this->cache_conditions_paiements[$selected])) {
5377  $label = $this->cache_conditions_paiements[$selected]['label'];
5378 
5379  if (! empty($this->cache_conditions_paiements[$selected]['deposit_percent'])) {
5380  $label = str_replace('__DEPOSIT_PERCENT__', $deposit_percent > 0 ? $deposit_percent : $this->cache_conditions_paiements[$selected]['deposit_percent'], $label);
5381  }
5382 
5383  print $label;
5384  } else {
5385  $langs->load('errors');
5386  print $langs->trans('ErrorNotInDictionaryPaymentConditions');
5387  }
5388  } else {
5389  print "&nbsp;";
5390  }
5391  }
5392  }
5393 
5394  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5404  public function form_availability($page, $selected = '', $htmlname = 'availability', $addempty = 0)
5405  {
5406  // phpcs:enable
5407  global $langs;
5408  if ($htmlname != "none") {
5409  print '<form method="post" action="'.$page.'">';
5410  print '<input type="hidden" name="action" value="setavailability">';
5411  print '<input type="hidden" name="token" value="'.newToken().'">';
5412  $this->selectAvailabilityDelay($selected, $htmlname, -1, $addempty);
5413  print '<input type="submit" name="modify" class="button smallpaddingimp" value="'.$langs->trans("Modify").'">';
5414  print '<input type="submit" name="cancel" class="button smallpaddingimp" value="'.$langs->trans("Cancel").'">';
5415  print '</form>';
5416  } else {
5417  if ($selected) {
5418  $this->load_cache_availability();
5419  print $this->cache_availability[$selected]['label'];
5420  } else {
5421  print "&nbsp;";
5422  }
5423  }
5424  }
5425 
5436  public function formInputReason($page, $selected = '', $htmlname = 'demandreason', $addempty = 0)
5437  {
5438  global $langs;
5439  if ($htmlname != "none") {
5440  print '<form method="post" action="'.$page.'">';
5441  print '<input type="hidden" name="action" value="setdemandreason">';
5442  print '<input type="hidden" name="token" value="'.newToken().'">';
5443  $this->selectInputReason($selected, $htmlname, -1, $addempty);
5444  print '<input type="submit" class="button smallpaddingimp" value="'.$langs->trans("Modify").'">';
5445  print '</form>';
5446  } else {
5447  if ($selected) {
5448  $this->loadCacheInputReason();
5449  foreach ($this->cache_demand_reason as $key => $val) {
5450  if ($val['id'] == $selected) {
5451  print $val['label'];
5452  break;
5453  }
5454  }
5455  } else {
5456  print "&nbsp;";
5457  }
5458  }
5459  }
5460 
5461  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5475  public function form_date($page, $selected, $htmlname, $displayhour = 0, $displaymin = 0, $nooutput = 0, $type = '')
5476  {
5477  // phpcs:enable
5478  global $langs;
5479 
5480  $ret = '';
5481 
5482  if ($htmlname != "none") {
5483  $ret .= '<form method="POST" action="'.$page.'" name="form'.$htmlname.'">';
5484  $ret .= '<input type="hidden" name="action" value="set'.$htmlname.'">';
5485  $ret .= '<input type="hidden" name="token" value="'.newToken().'">';
5486  if ($type) {
5487  $ret .= '<input type="hidden" name="type" value="'.dol_escape_htmltag($type).'">';
5488  }
5489  $ret .= '<table class="nobordernopadding">';
5490  $ret .= '<tr><td>';
5491  $ret .= $this->selectDate($selected, $htmlname, $displayhour, $displaymin, 1, 'form'.$htmlname, 1, 0);
5492  $ret .= '</td>';
5493  $ret .= '<td class="left"><input type="submit" class="button smallpaddingimp" value="'.$langs->trans("Modify").'"></td>';
5494  $ret .= '</tr></table></form>';
5495  } else {
5496  if ($displayhour) {
5497  $ret .= dol_print_date($selected, 'dayhour');
5498  } else {
5499  $ret .= dol_print_date($selected, 'day');
5500  }
5501  }
5502 
5503  if (empty($nooutput)) {
5504  print $ret;
5505  }
5506  return $ret;
5507  }
5508 
5509 
5510  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5521  public function form_users($page, $selected = '', $htmlname = 'userid', $exclude = '', $include = '')
5522  {
5523  // phpcs:enable
5524  global $langs;
5525 
5526  if ($htmlname != "none") {
5527  print '<form method="POST" action="'.$page.'" name="form'.$htmlname.'">';
5528  print '<input type="hidden" name="action" value="set'.$htmlname.'">';
5529  print '<input type="hidden" name="token" value="'.newToken().'">';
5530  print $this->select_dolusers($selected, $htmlname, 1, $exclude, 0, $include);
5531  print '<input type="submit" class="button smallpaddingimp valignmiddle" value="'.$langs->trans("Modify").'">';
5532  print '</form>';
5533  } else {
5534  if ($selected) {
5535  require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
5536  $theuser = new User($this->db);
5537  $theuser->fetch($selected);
5538  print $theuser->getNomUrl(1);
5539  } else {
5540  print "&nbsp;";
5541  }
5542  }
5543  }
5544 
5545 
5546  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5559  public function form_modes_reglement($page, $selected = '', $htmlname = 'mode_reglement_id', $filtertype = '', $active = 1, $addempty = 0, $type = '')
5560  {
5561  // phpcs:enable
5562  global $langs;
5563  if ($htmlname != "none") {
5564  print '<form method="POST" action="'.$page.'">';
5565  print '<input type="hidden" name="action" value="setmode">';
5566  print '<input type="hidden" name="token" value="'.newToken().'">';
5567  if ($type) {
5568  print '<input type="hidden" name="type" value="'.dol_escape_htmltag($type).'">';
5569  }
5570  print $this->select_types_paiements($selected, $htmlname, $filtertype, 0, $addempty, 0, 0, $active, '', 1);
5571  print '<input type="submit" class="button smallpaddingimp valignmiddle" value="'.$langs->trans("Modify").'">';
5572  print '</form>';
5573  } else {
5574  if ($selected) {
5575  $this->load_cache_types_paiements();
5576  print $this->cache_types_paiements[$selected]['label'];
5577  } else {
5578  print "&nbsp;";
5579  }
5580  }
5581  }
5582 
5593  public function formSelectTransportMode($page, $selected = '', $htmlname = 'transport_mode_id', $active = 1, $addempty = 0)
5594  {
5595  global $langs;
5596  if ($htmlname != "none") {
5597  print '<form method="POST" action="'.$page.'">';
5598  print '<input type="hidden" name="action" value="settransportmode">';
5599  print '<input type="hidden" name="token" value="'.newToken().'">';
5600  $this->selectTransportMode($selected, $htmlname, 0, $addempty, 0, 0, $active);
5601  print '<input type="submit" class="button smallpaddingimp valignmiddle" value="'.$langs->trans("Modify").'">';
5602  print '</form>';
5603  } else {
5604  if ($selected) {
5605  $this->load_cache_transport_mode();
5606  print $this->cache_transport_mode[$selected]['label'];
5607  } else {
5608  print "&nbsp;";
5609  }
5610  }
5611  }
5612 
5613  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5622  public function form_multicurrency_code($page, $selected = '', $htmlname = 'multicurrency_code')
5623  {
5624  // phpcs:enable
5625  global $langs;
5626  if ($htmlname != "none") {
5627  print '<form method="POST" action="'.$page.'">';
5628  print '<input type="hidden" name="action" value="setmulticurrencycode">';
5629  print '<input type="hidden" name="token" value="'.newToken().'">';
5630  print $this->selectMultiCurrency($selected, $htmlname, 0);
5631  print '<input type="submit" class="button smallpaddingimp valignmiddle" value="'.$langs->trans("Modify").'">';
5632  print '</form>';
5633  } else {
5634  dol_include_once('/core/lib/company.lib.php');
5635  print !empty($selected) ? currency_name($selected, 1) : '&nbsp;';
5636  }
5637  }
5638 
5639  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5649  public function form_multicurrency_rate($page, $rate = '', $htmlname = 'multicurrency_tx', $currency = '')
5650  {
5651  // phpcs:enable
5652  global $langs, $mysoc, $conf;
5653 
5654  if ($htmlname != "none") {
5655  print '<form method="POST" action="'.$page.'">';
5656  print '<input type="hidden" name="action" value="setmulticurrencyrate">';
5657  print '<input type="hidden" name="token" value="'.newToken().'">';
5658  print '<input type="text" class="maxwidth100" name="'.$htmlname.'" value="'.(!empty($rate) ? price(price2num($rate, 'CU')) : 1).'" /> ';
5659  print '<select name="calculation_mode">';
5660  print '<option value="1">Change '.$langs->trans("PriceUHT").' of lines</option>';
5661  print '<option value="2">Change '.$langs->trans("PriceUHTCurrency").' of lines</option>';
5662  print '</select> ';
5663  print '<input type="submit" class="button smallpaddingimp valignmiddle" value="'.$langs->trans("Modify").'">';
5664  print '</form>';
5665  } else {
5666  if (!empty($rate)) {
5667  print price($rate, 1, $langs, 1, 0);
5668  if ($currency && $rate != 1) {
5669  print ' &nbsp; ('.price($rate, 1, $langs, 1, 0).' '.$currency.' = 1 '.$conf->currency.')';
5670  }
5671  } else {
5672  print 1;
5673  }
5674  }
5675  }
5676 
5677 
5678  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5694  public function form_remise_dispo($page, $selected, $htmlname, $socid, $amount, $filter = '', $maxvalue = 0, $more = '', $hidelist = 0, $discount_type = 0)
5695  {
5696  // phpcs:enable
5697  global $conf, $langs;
5698  if ($htmlname != "none") {
5699  print '<form method="post" action="'.$page.'">';
5700  print '<input type="hidden" name="action" value="setabsolutediscount">';
5701  print '<input type="hidden" name="token" value="'.newToken().'">';
5702  print '<div class="inline-block">';
5703  if (!empty($discount_type)) {
5704  if (!empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) {
5705  if (!$filter || $filter == "fk_invoice_supplier_source IS NULL") {
5706  $translationKey = 'HasAbsoluteDiscountFromSupplier'; // If we want deposit to be substracted to payments only and not to total of final invoice
5707  } else {
5708  $translationKey = 'HasCreditNoteFromSupplier';
5709  }
5710  } else {
5711  if (!$filter || $filter == "fk_invoice_supplier_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS PAID)%')") {
5712  $translationKey = 'HasAbsoluteDiscountFromSupplier';
5713  } else {
5714  $translationKey = 'HasCreditNoteFromSupplier';
5715  }
5716  }
5717  } else {
5718  if (!empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) {
5719  if (!$filter || $filter == "fk_facture_source IS NULL") {
5720  $translationKey = 'CompanyHasAbsoluteDiscount'; // If we want deposit to be substracted to payments only and not to total of final invoice
5721  } else {
5722  $translationKey = 'CompanyHasCreditNote';
5723  }
5724  } else {
5725  if (!$filter || $filter == "fk_facture_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS RECEIVED)%')") {
5726  $translationKey = 'CompanyHasAbsoluteDiscount';
5727  } else {
5728  $translationKey = 'CompanyHasCreditNote';
5729  }
5730  }
5731  }
5732  print $langs->trans($translationKey, price($amount, 0, $langs, 0, 0, -1, $conf->currency));
5733  if (empty($hidelist)) {
5734  print ' ';
5735  }
5736  print '</div>';
5737  if (empty($hidelist)) {
5738  print '<div class="inline-block" style="padding-right: 10px">';
5739  $newfilter = 'discount_type='.intval($discount_type);
5740  if (!empty($discount_type)) {
5741  $newfilter .= ' AND fk_invoice_supplier IS NULL AND fk_invoice_supplier_line IS NULL'; // Supplier discounts available
5742  } else {
5743  $newfilter .= ' AND fk_facture IS NULL AND fk_facture_line IS NULL'; // Customer discounts available
5744  }
5745  if ($filter) {
5746  $newfilter .= ' AND ('.$filter.')';
5747  }
5748  // output the combo of discounts
5749  $nbqualifiedlines = $this->select_remises($selected, $htmlname, $newfilter, $socid, $maxvalue);
5750  if ($nbqualifiedlines > 0) {
5751  print ' &nbsp; <input type="submit" class="button smallpaddingimp" value="'.dol_escape_htmltag($langs->trans("UseLine")).'"';
5752  if (!empty($discount_type) && $filter && $filter != "fk_invoice_supplier_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS PAID)%')") {
5753  print ' title="'.$langs->trans("UseCreditNoteInInvoicePayment").'"';
5754  }
5755  if (empty($discount_type) && $filter && $filter != "fk_facture_source IS NULL OR (description LIKE '(DEPOSIT)%' AND description NOT LIKE '(EXCESS RECEIVED)%')") {
5756  print ' title="'.$langs->trans("UseCreditNoteInInvoicePayment").'"';
5757  }
5758 
5759  print '>';
5760  }
5761  print '</div>';
5762  }
5763  if ($more) {
5764  print '<div class="inline-block">';
5765  print $more;
5766  print '</div>';
5767  }
5768  print '</form>';
5769  } else {
5770  if ($selected) {
5771  print $selected;
5772  } else {
5773  print "0";
5774  }
5775  }
5776  }
5777 
5778 
5779  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5789  public function form_contacts($page, $societe, $selected = '', $htmlname = 'contactid')
5790  {
5791  // phpcs:enable
5792  global $langs, $conf;
5793 
5794  if ($htmlname != "none") {
5795  print '<form method="post" action="'.$page.'">';
5796  print '<input type="hidden" name="action" value="set_contact">';
5797  print '<input type="hidden" name="token" value="'.newToken().'">';
5798  print '<table class="nobordernopadding">';
5799  print '<tr><td>';
5800  print $this->selectcontacts($societe->id, $selected, $htmlname);
5801  $num = $this->num;
5802  if ($num == 0) {
5803  $addcontact = (!empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("AddContact") : $langs->trans("AddContactAddress"));
5804  print '<a href="'.DOL_URL_ROOT.'/contact/card.php?socid='.$societe->id.'&amp;action=create&amp;backtoreferer=1">'.$addcontact.'</a>';
5805  }
5806  print '</td>';
5807  print '<td class="left"><input type="submit" class="button smallpaddingimp" value="'.$langs->trans("Modify").'"></td>';
5808  print '</tr></table></form>';
5809  } else {
5810  if ($selected) {
5811  require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
5812  $contact = new Contact($this->db);
5813  $contact->fetch($selected);
5814  print $contact->getFullName($langs);
5815  } else {
5816  print "&nbsp;";
5817  }
5818  }
5819  }
5820 
5821  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5837  public function form_thirdparty($page, $selected = '', $htmlname = 'socid', $filter = '', $showempty = 0, $showtype = 0, $forcecombo = 0, $events = array(), $nooutput = 0, $excludeids = array())
5838  {
5839  // phpcs:enable
5840  global $langs;
5841 
5842  $out = '';
5843  if ($htmlname != "none") {
5844  $out .= '<form method="post" action="'.$page.'">';
5845  $out .= '<input type="hidden" name="action" value="set_thirdparty">';
5846  $out .= '<input type="hidden" name="token" value="'.newToken().'">';
5847  $out .= $this->select_company($selected, $htmlname, $filter, $showempty, $showtype, $forcecombo, $events, 0, 'minwidth100', '', '', 1, array(), false, $excludeids);
5848  $out .= '<input type="submit" class="button smallpaddingimp valignmiddle" value="'.$langs->trans("Modify").'">';
5849  $out .= '</form>';
5850  } else {
5851  if ($selected) {
5852  require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
5853  $soc = new Societe($this->db);
5854  $soc->fetch($selected);
5855  $out .= $soc->getNomUrl($langs);
5856  } else {
5857  $out .= "&nbsp;";
5858  }
5859  }
5860 
5861  if ($nooutput) {
5862  return $out;
5863  } else {
5864  print $out;
5865  }
5866  }
5867 
5868  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5877  public function select_currency($selected = '', $htmlname = 'currency_id')
5878  {
5879  // phpcs:enable
5880  print $this->selectCurrency($selected, $htmlname);
5881  }
5882 
5892  public function selectCurrency($selected = '', $htmlname = 'currency_id', $mode = 0, $useempty = '')
5893  {
5894  global $conf, $langs, $user;
5895 
5896  $langs->loadCacheCurrencies('');
5897 
5898  $out = '';
5899 
5900  if ($selected == 'euro' || $selected == 'euros') {
5901  $selected = 'EUR'; // Pour compatibilite
5902  }
5903 
5904  $out .= '<select class="flat maxwidth200onsmartphone minwidth300" name="'.$htmlname.'" id="'.$htmlname.'">';
5905  if ($useempty) {
5906  $out .= '<option value="-1" selected></option>';
5907  }
5908  foreach ($langs->cache_currencies as $code_iso => $currency) {
5909  $labeltoshow = $currency['label'];
5910  if ($mode == 1) {
5911  $labeltoshow .= ' <span class="opacitymedium">('.$code_iso.')</span>';
5912  } else {
5913  $labeltoshow .= ' <span class="opacitymedium">('.$langs->getCurrencySymbol($code_iso).')</span>';
5914  }
5915 
5916  if ($selected && $selected == $code_iso) {
5917  $out .= '<option value="'.$code_iso.'" selected data-html="'.dol_escape_htmltag($labeltoshow).'">';
5918  } else {
5919  $out .= '<option value="'.$code_iso.'" data-html="'.dol_escape_htmltag($labeltoshow).'">';
5920  }
5921  $out .= $labeltoshow;
5922  $out .= '</option>';
5923  }
5924  $out .= '</select>';
5925  if ($user->admin) {
5926  $out .= info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
5927  }
5928 
5929  // Make select dynamic
5930  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
5931  $out .= ajax_combobox($htmlname);
5932 
5933  return $out;
5934  }
5935 
5948  public function selectMultiCurrency($selected = '', $htmlname = 'multicurrency_code', $useempty = 0, $filter = '', $excludeConfCurrency = false, $morecss = '')
5949  {
5950  global $conf, $langs;
5951 
5952  $langs->loadCacheCurrencies(''); // Load ->cache_currencies
5953 
5954  $TCurrency = array();
5955 
5956  $sql = "SELECT code FROM ".$this->db->prefix()."multicurrency";
5957  $sql .= " WHERE entity IN ('".getEntity('mutlicurrency')."')";
5958  if ($filter) {
5959  $sql .= " AND ".$filter;
5960  }
5961  $resql = $this->db->query($sql);
5962  if ($resql) {
5963  while ($obj = $this->db->fetch_object($resql)) {
5964  $TCurrency[$obj->code] = $obj->code;
5965  }
5966  }
5967 
5968  $out = '';
5969  $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" id="'.$htmlname.'">';
5970  if ($useempty) {
5971  $out .= '<option value="">&nbsp;</option>';
5972  }
5973  // If company current currency not in table, we add it into list. Should always be available.
5974  if (!in_array($conf->currency, $TCurrency) && !$excludeConfCurrency) {
5975  $TCurrency[$conf->currency] = $conf->currency;
5976  }
5977  if (count($TCurrency) > 0) {
5978  foreach ($langs->cache_currencies as $code_iso => $currency) {
5979  if (isset($TCurrency[$code_iso])) {
5980  if (!empty($selected) && $selected == $code_iso) {
5981  $out .= '<option value="'.$code_iso.'" selected="selected">';
5982  } else {
5983  $out .= '<option value="'.$code_iso.'">';
5984  }
5985 
5986  $out .= $currency['label'];
5987  $out .= ' ('.$langs->getCurrencySymbol($code_iso).')';
5988  $out .= '</option>';
5989  }
5990  }
5991  }
5992 
5993  $out .= '</select>';
5994 
5995  // Make select dynamic
5996  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
5997  $out .= ajax_combobox($htmlname);
5998 
5999  return $out;
6000  }
6001 
6002  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
6009  public function load_cache_vatrates($country_code)
6010  {
6011  // phpcs:enable
6012  global $langs;
6013 
6014  $num = count($this->cache_vatrates);
6015  if ($num > 0) {
6016  return $num; // Cache already loaded
6017  }
6018 
6019  dol_syslog(__METHOD__, LOG_DEBUG);
6020 
6021  $sql = "SELECT DISTINCT t.rowid, t.code, t.taux, t.localtax1, t.localtax1_type, t.localtax2, t.localtax2_type, t.recuperableonly";
6022  $sql .= " FROM ".$this->db->prefix()."c_tva as t, ".$this->db->prefix()."c_country as c";
6023  $sql .= " WHERE t.fk_pays = c.rowid";
6024  $sql .= " AND t.active > 0";
6025  $sql .= " AND c.code IN (".$this->db->sanitize($country_code, 1).")";
6026  $sql .= " ORDER BY t.code ASC, t.taux ASC, t.recuperableonly ASC";
6027 
6028  $resql = $this->db->query($sql);
6029  if ($resql) {
6030  $num = $this->db->num_rows($resql);
6031  if ($num) {
6032  for ($i = 0; $i < $num; $i++) {
6033  $obj = $this->db->fetch_object($resql);
6034  $this->cache_vatrates[$i]['rowid'] = $obj->rowid;
6035  $this->cache_vatrates[$i]['code'] = $obj->code;
6036  $this->cache_vatrates[$i]['txtva'] = $obj->taux;
6037  $this->cache_vatrates[$i]['nprtva'] = $obj->recuperableonly;
6038  $this->cache_vatrates[$i]['localtax1'] = $obj->localtax1;
6039  $this->cache_vatrates[$i]['localtax1_type'] = $obj->localtax1_type;
6040  $this->cache_vatrates[$i]['localtax2'] = $obj->localtax2;
6041  $this->cache_vatrates[$i]['localtax2_type'] = $obj->localtax1_type;
6042 
6043  $this->cache_vatrates[$i]['label'] = $obj->taux.'%'.($obj->code ? ' ('.$obj->code.')' : ''); // Label must contains only 0-9 , . % or *
6044  $this->cache_vatrates[$i]['labelallrates'] = $obj->taux.'/'.($obj->localtax1 ? $obj->localtax1 : '0').'/'.($obj->localtax2 ? $obj->localtax2 : '0').($obj->code ? ' ('.$obj->code.')' : ''); // Must never be used as key, only label
6045  $positiverates = '';
6046  if ($obj->taux) {
6047  $positiverates .= ($positiverates ? '/' : '').$obj->taux;
6048  }
6049  if ($obj->localtax1) {
6050  $positiverates .= ($positiverates ? '/' : '').$obj->localtax1;
6051  }
6052  if ($obj->localtax2) {
6053  $positiverates .= ($positiverates ? '/' : '').$obj->localtax2;
6054  }
6055  if (empty($positiverates)) {
6056  $positiverates = '0';
6057  }
6058  $this->cache_vatrates[$i]['labelpositiverates'] = $positiverates.($obj->code ? ' ('.$obj->code.')' : ''); // Must never be used as key, only label
6059  }
6060 
6061  return $num;
6062  } else {
6063  $this->error = '<span class="error">'.$langs->trans("ErrorNoVATRateDefinedForSellerCountry", $country_code).'</span>';
6064  return -1;
6065  }
6066  } else {
6067  $this->error = '<span class="error">'.$this->db->error().'</span>';
6068  return -2;
6069  }
6070  }
6071 
6072  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
6094  public function load_tva($htmlname = 'tauxtva', $selectedrate = '', $societe_vendeuse = '', $societe_acheteuse = '', $idprod = 0, $info_bits = 0, $type = '', $options_only = false, $mode = 0)
6095  {
6096  // phpcs:enable
6097  global $langs, $conf, $mysoc;
6098 
6099  $langs->load('errors');
6100 
6101  $return = '';
6102 
6103  // Define defaultnpr, defaultttx and defaultcode
6104  $defaultnpr = ($info_bits & 0x01);
6105  $defaultnpr = (preg_match('/\*/', $selectedrate) ? 1 : $defaultnpr);
6106  $defaulttx = str_replace('*', '', $selectedrate);
6107  $defaultcode = '';
6108  $reg = array();
6109  if (preg_match('/\((.*)\)/', $defaulttx, $reg)) {
6110  $defaultcode = $reg[1];
6111  $defaulttx = preg_replace('/\s*\(.*\)/', '', $defaulttx);
6112  }
6113  //var_dump($selectedrate.'-'.$defaulttx.'-'.$defaultnpr.'-'.$defaultcode);
6114 
6115  // Check parameters
6116  if (is_object($societe_vendeuse) && !$societe_vendeuse->country_code) {
6117  if ($societe_vendeuse->id == $mysoc->id) {
6118  $return .= '<span class="error">'.$langs->trans("ErrorYourCountryIsNotDefined").'</span>';
6119  } else {
6120  $return .= '<span class="error">'.$langs->trans("ErrorSupplierCountryIsNotDefined").'</span>';
6121  }
6122  return $return;
6123  }
6124 
6125  //var_dump($societe_acheteuse);
6126  //print "name=$name, selectedrate=$selectedrate, seller=".$societe_vendeuse->country_code." buyer=".$societe_acheteuse->country_code." buyer is company=".$societe_acheteuse->isACompany()." idprod=$idprod, info_bits=$info_bits type=$type";
6127  //exit;
6128 
6129  // Define list of countries to use to search VAT rates to show
6130  // First we defined code_country to use to find list
6131  if (is_object($societe_vendeuse)) {
6132  $code_country = "'".$societe_vendeuse->country_code."'";
6133  } else {
6134  $code_country = "'".$mysoc->country_code."'"; // Pour compatibilite ascendente
6135  }
6136  if (!empty($conf->global->SERVICE_ARE_ECOMMERCE_200238EC)) { // If option to have vat for end customer for services is on
6137  require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
6138  if (!isInEEC($societe_vendeuse) && (!is_object($societe_acheteuse) || (isInEEC($societe_acheteuse) && !$societe_acheteuse->isACompany()))) {
6139  // We also add the buyer
6140  if (is_numeric($type)) {
6141  if ($type == 1) { // We know product is a service
6142  $code_country .= ",'".$societe_acheteuse->country_code."'";
6143  }
6144  } elseif (!$idprod) { // We don't know type of product
6145  $code_country .= ",'".$societe_acheteuse->country_code."'";
6146  } else {
6147  $prodstatic = new Product($this->db);
6148  $prodstatic->fetch($idprod);
6149  if ($prodstatic->type == Product::TYPE_SERVICE) { // We know product is a service
6150  $code_country .= ",'".$societe_acheteuse->country_code."'";
6151  }
6152  }
6153  }
6154  }
6155 
6156  // Now we get list
6157  $num = $this->load_cache_vatrates($code_country); // If no vat defined, return -1 with message into this->error
6158 
6159  if ($num > 0) {
6160  // Definition du taux a pre-selectionner (si defaulttx non force et donc vaut -1 ou '')
6161  if ($defaulttx < 0 || dol_strlen($defaulttx) == 0) {
6162  $tmpthirdparty = new Societe($this->db);
6163  $defaulttx = get_default_tva($societe_vendeuse, (is_object($societe_acheteuse) ? $societe_acheteuse : $tmpthirdparty), $idprod);
6164  $defaultnpr = get_default_npr($societe_vendeuse, (is_object($societe_acheteuse) ? $societe_acheteuse : $tmpthirdparty), $idprod);
6165  if (preg_match('/\((.*)\)/', $defaulttx, $reg)) {
6166  $defaultcode = $reg[1];
6167  $defaulttx = preg_replace('/\s*\(.*\)/', '', $defaulttx);
6168  }
6169  if (empty($defaulttx)) {
6170  $defaultnpr = 0;
6171  }
6172  }
6173 
6174  // Si taux par defaut n'a pu etre determine, on prend dernier de la liste.
6175  // Comme ils sont tries par ordre croissant, dernier = plus eleve = taux courant
6176  if ($defaulttx < 0 || dol_strlen($defaulttx) == 0) {
6177  if (empty($conf->global->MAIN_VAT_DEFAULT_IF_AUTODETECT_FAILS)) {
6178  $defaulttx = $this->cache_vatrates[$num - 1]['txtva'];
6179  } else {
6180  $defaulttx = ($conf->global->MAIN_VAT_DEFAULT_IF_AUTODETECT_FAILS == 'none' ? '' : $conf->global->MAIN_VAT_DEFAULT_IF_AUTODETECT_FAILS);
6181  }
6182  }
6183 
6184  // Disabled if seller is not subject to VAT
6185  $disabled = false;
6186  $title = '';
6187  if (is_object($societe_vendeuse) && $societe_vendeuse->id == $mysoc->id && $societe_vendeuse->tva_assuj == "0") {
6188  // Override/enable VAT for expense report regardless of global setting - needed if expense report used for business expenses instead
6189  // of using supplier invoices (this is a very bad idea !)
6190  if (empty($conf->global->EXPENSEREPORT_OVERRIDE_VAT)) {
6191  $title = ' title="'.$langs->trans('VATIsNotUsed').'"';
6192  $disabled = true;
6193  }
6194  }
6195 
6196  if (!$options_only) {
6197  $return .= '<select class="flat minwidth75imp" id="'.$htmlname.'" name="'.$htmlname.'"'.($disabled ? ' disabled' : '').$title.'>';
6198  }
6199 
6200  $selectedfound = false;
6201  foreach ($this->cache_vatrates as $rate) {
6202  // Keep only 0 if seller is not subject to VAT
6203  if ($disabled && $rate['txtva'] != 0) {
6204  continue;
6205  }
6206 
6207  // Define key to use into select list
6208  $key = $rate['txtva'];
6209  $key .= $rate['nprtva'] ? '*' : '';
6210  if ($mode > 0 && $rate['code']) {
6211  $key .= ' ('.$rate['code'].')';
6212  }
6213  if ($mode < 0) {
6214  $key = $rate['rowid'];
6215  }
6216 
6217  $return .= '<option value="'.$key.'"';
6218  if (!$selectedfound) {
6219  if ($defaultcode) { // If defaultcode is defined, we used it in priority to select combo option instead of using rate+npr flag
6220  if ($defaultcode == $rate['code']) {
6221  $return .= ' selected';
6222  $selectedfound = true;
6223  }
6224  } elseif ($rate['txtva'] == $defaulttx && $rate['nprtva'] == $defaultnpr) {
6225  $return .= ' selected';
6226  $selectedfound = true;
6227  }
6228  }
6229  $return .= '>';
6230  //if (! empty($conf->global->MAIN_VAT_SHOW_POSITIVE_RATES))
6231  if ($mysoc->country_code == 'IN' || !empty($conf->global->MAIN_VAT_LABEL_IS_POSITIVE_RATES)) {
6232  $return .= $rate['labelpositiverates'];
6233  } else {
6234  $return .= vatrate($rate['label']);
6235  }
6236  //$return.=($rate['code']?' '.$rate['code']:'');
6237  $return .= (empty($rate['code']) && $rate['nprtva']) ? ' *' : ''; // We show the * (old behaviour only if new vat code is not used)
6238 
6239  $return .= '</option>';
6240  }
6241 
6242  if (!$options_only) {
6243  $return .= '</select>';
6244  }
6245  } else {
6246  $return .= $this->error;
6247  }
6248 
6249  $this->num = $num;
6250  return $return;
6251  }
6252 
6253 
6254  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
6279  public function select_date($set_time = '', $prefix = 're', $h = 0, $m = 0, $empty = 0, $form_name = "", $d = 1, $addnowlink = 0, $nooutput = 0, $disabled = 0, $fullday = '', $addplusone = '', $adddateof = '')
6280  {
6281  // phpcs:enable
6282  $retstring = $this->selectDate($set_time, $prefix, $h, $m, $empty, $form_name, $d, $addnowlink, $disabled, $fullday, $addplusone, $adddateof);
6283  if (!empty($nooutput)) {
6284  return $retstring;
6285  }
6286  print $retstring;
6287  return;
6288  }
6289 
6305  public function selectDateToDate($set_time = '', $set_time_end = '', $prefix = 're', $empty = 0, $forcenewline = 0)
6306  {
6307  global $langs;
6308 
6309  $ret = $this->selectDate($set_time, $prefix.'_start', 0, 0, $empty, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans("from"), 'tzuserrel');
6310  if ($forcenewline) {
6311  $ret .= '<br>';
6312  }
6313  $ret .= $this->selectDate($set_time_end, $prefix.'_end', 0, 0, $empty, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans("to"), 'tzuserrel');
6314  return $ret;
6315  }
6316 
6344  public function selectDate($set_time = '', $prefix = 're', $h = 0, $m = 0, $empty = 0, $form_name = "", $d = 1, $addnowlink = 0, $disabled = 0, $fullday = '', $addplusone = '', $adddateof = '', $openinghours = '', $stepminutes = 1, $labeladddateof = '', $placeholder = '', $gm = 'auto')
6345  {
6346  global $conf, $langs;
6347 
6348  if ($gm === 'auto') {
6349  $gm = (empty($conf) ? 'tzserver' : $conf->tzuserinputkey);
6350  }
6351 
6352  $retstring = '';
6353 
6354  if ($prefix == '') {
6355  $prefix = 're';
6356  }
6357  if ($h == '') {
6358  $h = 0;
6359  }
6360  if ($m == '') {
6361  $m = 0;
6362  }
6363  $emptydate = 0;
6364  $emptyhours = 0;
6365  if ($stepminutes <= 0 || $stepminutes > 30) {
6366  $stepminutes = 1;
6367  }
6368  if ($empty == 1) {
6369  $emptydate = 1;
6370  $emptyhours = 1;
6371  }
6372  if ($empty == 2) {
6373  $emptydate = 0;
6374  $emptyhours = 1;
6375  }
6376  $orig_set_time = $set_time;
6377 
6378  if ($set_time === '' && $emptydate == 0) {
6379  include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
6380  if ($gm == 'tzuser' || $gm == 'tzuserrel') {
6381  $set_time = dol_now($gm);
6382  } else {
6383  $set_time = dol_now('tzuser') - (getServerTimeZoneInt('now') * 3600); // set_time must be relative to PHP server timezone
6384  }
6385  }
6386 
6387  // Analysis of the pre-selection date
6388  $reg = array();
6389  $shour = '';
6390  $smin = '';
6391  $ssec = '';
6392  if (preg_match('/^([0-9]+)\-([0-9]+)\-([0-9]+)\s?([0-9]+)?:?([0-9]+)?/', $set_time, $reg)) { // deprecated usage
6393  // Date format 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM:SS'
6394  $syear = (!empty($reg[1]) ? $reg[1] : '');
6395  $smonth = (!empty($reg[2]) ? $reg[2] : '');
6396  $sday = (!empty($reg[3]) ? $reg[3] : '');
6397  $shour = (!empty($reg[4]) ? $reg[4] : '');
6398  $smin = (!empty($reg[5]) ? $reg[5] : '');
6399  } elseif (strval($set_time) != '' && $set_time != -1) {
6400  // set_time est un timestamps (0 possible)
6401  $syear = dol_print_date($set_time, "%Y", $gm);
6402  $smonth = dol_print_date($set_time, "%m", $gm);
6403  $sday = dol_print_date($set_time, "%d", $gm);
6404  if ($orig_set_time != '') {
6405  $shour = dol_print_date($set_time, "%H", $gm);
6406  $smin = dol_print_date($set_time, "%M", $gm);
6407  $ssec = dol_print_date($set_time, "%S", $gm);
6408  }
6409  } else {
6410  // Date est '' ou vaut -1
6411  $syear = '';
6412  $smonth = '';
6413  $sday = '';
6414  $shour = !isset($conf->global->MAIN_DEFAULT_DATE_HOUR) ? ($h == -1 ? '23' : '') : $conf->global->MAIN_DEFAULT_DATE_HOUR;
6415  $smin = !isset($conf->global->MAIN_DEFAULT_DATE_MIN) ? ($h == -1 ? '59' : '') : $conf->global->MAIN_DEFAULT_DATE_MIN;
6416  $ssec = !isset($conf->global->MAIN_DEFAULT_DATE_SEC) ? ($h == -1 ? '59' : '') : $conf->global->MAIN_DEFAULT_DATE_SEC;
6417  }
6418  if ($h == 3) {
6419  $shour = '';
6420  }
6421  if ($m == 3) {
6422  $smin = '';
6423  }
6424 
6425  $nowgmt = dol_now('gmt');
6426  //var_dump(dol_print_date($nowgmt, 'dayhourinputnoreduce', 'tzuserrel'));
6427 
6428  // You can set MAIN_POPUP_CALENDAR to 'eldy' or 'jquery'
6429  $usecalendar = 'combo';
6430  if (!empty($conf->use_javascript_ajax) && (empty($conf->global->MAIN_POPUP_CALENDAR) || $conf->global->MAIN_POPUP_CALENDAR != "none")) {
6431  $usecalendar = ((empty($conf->global->MAIN_POPUP_CALENDAR) || $conf->global->MAIN_POPUP_CALENDAR == 'eldy') ? 'jquery' : $conf->global->MAIN_POPUP_CALENDAR);
6432  }
6433 
6434  if ($d) {
6435  // Show date with popup
6436  if ($usecalendar != 'combo') {
6437  $formated_date = '';
6438  //print "e".$set_time." t ".$conf->format_date_short;
6439  if (strval($set_time) != '' && $set_time != -1) {
6440  //$formated_date=dol_print_date($set_time,$conf->format_date_short);
6441  $formated_date = dol_print_date($set_time, $langs->trans("FormatDateShortInput"), $gm); // FormatDateShortInput for dol_print_date / FormatDateShortJavaInput that is same for javascript
6442  }
6443 
6444  // Calendrier popup version eldy
6445  if ($usecalendar == "eldy") {
6446  // Input area to enter date manually
6447  $retstring .= '<input id="'.$prefix.'" name="'.$prefix.'" type="text" class="maxwidthdate" maxlength="11" value="'.$formated_date.'"';
6448  $retstring .= ($disabled ? ' disabled' : '');
6449  $retstring .= ' onChange="dpChangeDay(\''.$prefix.'\',\''.$langs->trans("FormatDateShortJavaInput").'\'); "'; // FormatDateShortInput for dol_print_date / FormatDateShortJavaInput that is same for javascript
6450  $retstring .= '>';
6451 
6452  // Icon calendar
6453  $retstringbuttom = '';
6454  if (!$disabled) {
6455  $retstringbuttom = '<button id="'.$prefix.'Button" type="button" class="dpInvisibleButtons"';
6456  $base = DOL_URL_ROOT.'/core/';
6457  $retstringbuttom .= ' onClick="showDP(\''.$base.'\',\''.$prefix.'\',\''.$langs->trans("FormatDateShortJavaInput").'\',\''.$langs->defaultlang.'\');"';
6458  $retstringbuttom .= '>'.img_object($langs->trans("SelectDate"), 'calendarday', 'class="datecallink"').'</button>';
6459  } else {
6460  $retstringbuttom = '<button id="'.$prefix.'Button" type="button" class="dpInvisibleButtons">'.img_object($langs->trans("Disabled"), 'calendarday', 'class="datecallink"').'</button>';
6461  }
6462  $retstring = $retstringbuttom.$retstring;
6463 
6464  $retstring .= '<input type="hidden" id="'.$prefix.'day" name="'.$prefix.'day" value="'.$sday.'">'."\n";
6465  $retstring .= '<input type="hidden" id="'.$prefix.'month" name="'.$prefix.'month" value="'.$smonth.'">'."\n";
6466  $retstring .= '<input type="hidden" id="'.$prefix.'year" name="'.$prefix.'year" value="'.$syear.'">'."\n";
6467  } elseif ($usecalendar == 'jquery') {
6468  if (!$disabled) {
6469  // Output javascript for datepicker
6470  $minYear = getDolGlobalString('MIN_YEAR_SELECT_DATE', date('Y') - 100);
6471  $maxYear = getDolGlobalString('MAX_YEAR_SELECT_DATE', date('Y') + 100);
6472 
6473  $retstring .= "<script type='text/javascript'>";
6474  $retstring .= "$(function(){ $('#".$prefix."').datepicker({
6475  dateFormat: '".$langs->trans("FormatDateShortJQueryInput")."',
6476  autoclose: true,
6477  todayHighlight: true,
6478  yearRange: '".$minYear.":".$maxYear."',";
6479  if (!empty($conf->dol_use_jmobile)) {
6480  $retstring .= "
6481  beforeShow: function (input, datePicker) {
6482  input.disabled = true;
6483  },
6484  onClose: function (dateText, datePicker) {
6485  this.disabled = false;
6486  },
6487  ";
6488  }
6489  // Note: We don't need monthNames, monthNamesShort, dayNames, dayNamesShort, dayNamesMin, they are set globally on datepicker component in lib_head.js.php
6490  if (empty($conf->global->MAIN_POPUP_CALENDAR_ON_FOCUS)) {
6491  $retstring .= "
6492  showOn: 'button', /* both has problem with autocompletion */
6493  buttonImage: '".DOL_URL_ROOT."/theme/".dol_escape_js($conf->theme)."/img/object_calendarday.png',
6494  buttonImageOnly: true";
6495  }
6496  $retstring .= "
6497  }) });";
6498  $retstring .= "</script>";
6499  }
6500 
6501  // Zone de saisie manuelle de la date
6502  $retstring .= '<div class="nowrap inline-block divfordateinput">';
6503  $retstring .= '<input id="'.$prefix.'" name="'.$prefix.'" type="text" class="maxwidthdate" maxlength="11" value="'.$formated_date.'"';
6504  $retstring .= ($disabled ? ' disabled' : '');
6505  $retstring .= ($placeholder ? ' placeholder="'.dol_escape_htmltag($placeholder).'"' : '');
6506  $retstring .= ' onChange="dpChangeDay(\''.dol_escape_js($prefix).'\',\''.dol_escape_js($langs->trans("FormatDateShortJavaInput")).'\'); "'; // FormatDateShortInput for dol_print_date / FormatDateShortJavaInput that is same for javascript
6507  $retstring .= '>';
6508 
6509  // Icone calendrier
6510  if (!$disabled) {
6511  /* Not required. Managed by option buttonImage of jquery
6512  $retstring.=img_object($langs->trans("SelectDate"),'calendarday','id="'.$prefix.'id" class="datecallink"');
6513  $retstring.="<script type='text/javascript'>";
6514  $retstring.="jQuery(document).ready(function() {";
6515  $retstring.=' jQuery("#'.$prefix.'id").click(function() {';
6516  $retstring.=" jQuery('#".$prefix."').focus();";
6517  $retstring.=' });';
6518  $retstring.='});';
6519  $retstring.="</script>";*/
6520  } else {
6521  $retstringbutton = '<button id="'.$prefix.'Button" type="button" class="dpInvisibleButtons">'.img_object($langs->trans("Disabled"), 'calendarday', 'class="datecallink"').'</button>';
6522  $retsring = $retstringbutton.$retstring;
6523  }
6524 
6525  $retstring .= '</div>';
6526  $retstring .= '<input type="hidden" id="'.$prefix.'day" name="'.$prefix.'day" value="'.$sday.'">'."\n";
6527  $retstring .= '<input type="hidden" id="'.$prefix.'month" name="'.$prefix.'month" value="'.$smonth.'">'."\n";
6528  $retstring .= '<input type="hidden" id="'.$prefix.'year" name="'.$prefix.'year" value="'.$syear.'">'."\n";
6529  } else {
6530  $retstring .= "Bad value of MAIN_POPUP_CALENDAR";
6531  }
6532  } else {
6533  // Show date with combo selects
6534  // Day
6535  $retstring .= '<select'.($disabled ? ' disabled' : '').' class="flat valignmiddle maxwidth50imp" id="'.$prefix.'day" name="'.$prefix.'day">';
6536 
6537  if ($emptydate || $set_time == -1) {
6538  $retstring .= '<option value="0" selected>&nbsp;</option>';
6539  }
6540 
6541  for ($day = 1; $day <= 31; $day++) {
6542  $retstring .= '<option value="'.$day.'"'.($day == $sday ? ' selected' : '').'>'.$day.'</option>';
6543  }
6544 
6545  $retstring .= "</select>";
6546 
6547  $retstring .= '<select'.($disabled ? ' disabled' : '').' class="flat valignmiddle maxwidth75imp" id="'.$prefix.'month" name="'.$prefix.'month">';
6548  if ($emptydate || $set_time == -1) {
6549  $retstring .= '<option value="0" selected>&nbsp;</option>';
6550  }
6551 
6552  // Month
6553  for ($month = 1; $month <= 12; $month++) {
6554  $retstring .= '<option value="'.$month.'"'.($month == $smonth ? ' selected' : '').'>';
6555  $retstring .= dol_print_date(mktime(12, 0, 0, $month, 1, 2000), "%b");
6556  $retstring .= "</option>";
6557  }
6558  $retstring .= "</select>";
6559 
6560  // Year
6561  if ($emptydate || $set_time == -1) {
6562  $retstring .= '<input'.($disabled ? ' disabled' : '').' placeholder="'.dol_escape_htmltag($langs->trans("Year")).'" class="flat maxwidth50imp valignmiddle" type="number" min="0" max="3000" maxlength="4" id="'.$prefix.'year" name="'.$prefix.'year" value="'.$syear.'">';
6563  } else {
6564  $retstring .= '<select'.($disabled ? ' disabled' : '').' class="flat valignmiddle maxwidth75imp" id="'.$prefix.'year" name="'.$prefix.'year">';
6565 
6566  for ($year = $syear - 10; $year < $syear + 10; $year++) {
6567  $retstring .= '<option value="'.$year.'"'.($year == $syear ? ' selected' : '').'>'.$year.'</option>';
6568  }
6569  $retstring .= "</select>\n";
6570  }
6571  }
6572  }
6573 
6574  if ($d && $h) {
6575  $retstring .= ($h == 2 ? '<br>' : ' ');
6576  $retstring .= '<span class="nowraponall">';
6577  }
6578 
6579  if ($h) {
6580  $hourstart = 0;
6581  $hourend = 24;
6582  if ($openinghours != '') {
6583  $openinghours = explode(',', $openinghours);
6584  $hourstart = $openinghours[0];
6585  $hourend = $openinghours[1];
6586  if ($hourend < $hourstart) {
6587  $hourend = $hourstart;
6588  }
6589  }
6590  // Show hour
6591  $retstring .= '<select'.($disabled ? ' disabled' : '').' class="flat valignmiddle maxwidth50 '.($fullday ? $fullday.'hour' : '').'" id="'.$prefix.'hour" name="'.$prefix.'hour">';
6592  if ($emptyhours) {
6593  $retstring .= '<option value="-1">&nbsp;</option>';
6594  }
6595  for ($hour = $hourstart; $hour < $hourend; $hour++) {
6596  if (strlen($hour) < 2) {
6597  $hour = "0".$hour;
6598  }
6599  $retstring .= '<option value="'.$hour.'"'.(($hour == $shour) ? ' selected' : '').'>'.$hour;
6600  //$retstring .= (empty($conf->dol_optimize_smallscreen) ? '' : 'H');
6601  $retstring .= '</option>';
6602  }
6603  $retstring .= '</select>';
6604  //if ($m && empty($conf->dol_optimize_smallscreen)) $retstring .= ":";
6605  if ($m) {
6606  $retstring .= ":";
6607  }
6608  }
6609 
6610  if ($m) {
6611  // Show minutes
6612  $retstring .= '<select'.($disabled ? ' disabled' : '').' class="flat valignmiddle maxwidth50 '.($fullday ? $fullday.'min' : '').'" id="'.$prefix.'min" name="'.$prefix.'min">';
6613  if ($emptyhours) {
6614  $retstring .= '<option value="-1">&nbsp;</option>';
6615  }
6616  for ($min = 0; $min < 60; $min += $stepminutes) {
6617  if (strlen($min) < 2) {
6618  $min = "0".$min;
6619  }
6620  $retstring .= '<option value="'.$min.'"'.(($min == $smin) ? ' selected' : '').'>'.$min.(empty($conf->dol_optimize_smallscreen) ? '' : '').'</option>';
6621  }
6622  $retstring .= '</select>';
6623 
6624  $retstring .= '<input type="hidden" name="'.$prefix.'sec" value="'.$ssec.'">';
6625  }
6626 
6627  if ($d && $h) {
6628  $retstring .= '</span>';
6629  }
6630 
6631  // Add a "Now" link
6632  if ($conf->use_javascript_ajax && $addnowlink) {
6633  // Script which will be inserted in the onClick of the "Now" link
6634  $reset_scripts = "";
6635  if ($addnowlink == 2) { // local computer time
6636  // pad add leading 0 on numbers
6637  $reset_scripts .= "Number.prototype.pad = function(size) {
6638  var s = String(this);
6639  while (s.length < (size || 2)) {s = '0' + s;}
6640  return s;
6641  };
6642  var d = new Date();";
6643  }
6644 
6645  // Generate the date part, depending on the use or not of the javascript calendar
6646  if ($addnowlink == 1) { // server time expressed in user time setup
6647  $reset_scripts .= 'jQuery(\'#'.$prefix.'\').val(\''.dol_print_date($nowgmt, 'day', 'tzuserrel').'\');';
6648  $reset_scripts .= 'jQuery(\'#'.$prefix.'day\').val(\''.dol_print_date($nowgmt, '%d', 'tzuserrel').'\');';
6649  $reset_scripts .= 'jQuery(\'#'.$prefix.'month\').val(\''.dol_print_date($nowgmt, '%m', 'tzuserrel').'\');';
6650  $reset_scripts .= 'jQuery(\'#'.$prefix.'year\').val(\''.dol_print_date($nowgmt, '%Y', 'tzuserrel').'\');';
6651  } elseif ($addnowlink == 2) {
6652  /* Disabled because the output does not use the string format defined by FormatDateShort key to forge the value into #prefix.
6653  * This break application for foreign languages.
6654  $reset_scripts .= 'jQuery(\'#'.$prefix.'\').val(d.toLocaleDateString(\''.str_replace('_', '-', $langs->defaultlang).'\'));';
6655  $reset_scripts .= 'jQuery(\'#'.$prefix.'day\').val(d.getDate().pad());';
6656  $reset_scripts .= 'jQuery(\'#'.$prefix.'month\').val(parseInt(d.getMonth().pad()) + 1);';
6657  $reset_scripts .= 'jQuery(\'#'.$prefix.'year\').val(d.getFullYear());';
6658  */
6659  $reset_scripts .= 'jQuery(\'#'.$prefix.'\').val(\''.dol_print_date($nowgmt, 'day', 'tzuserrel').'\');';
6660  $reset_scripts .= 'jQuery(\'#'.$prefix.'day\').val(\''.dol_print_date($nowgmt, '%d', 'tzuserrel').'\');';
6661  $reset_scripts .= 'jQuery(\'#'.$prefix.'month\').val(\''.dol_print_date($nowgmt, '%m', 'tzuserrel').'\');';
6662  $reset_scripts .= 'jQuery(\'#'.$prefix.'year\').val(\''.dol_print_date($nowgmt, '%Y', 'tzuserrel').'\');';
6663  }
6664  /*if ($usecalendar == "eldy")
6665  {
6666  $base=DOL_URL_ROOT.'/core/';
6667  $reset_scripts .= 'resetDP(\''.$base.'\',\''.$prefix.'\',\''.$langs->trans("FormatDateShortJavaInput").'\',\''.$langs->defaultlang.'\');';
6668  }
6669  else
6670  {
6671  $reset_scripts .= 'this.form.elements[\''.$prefix.'day\'].value=formatDate(new Date(), \'d\'); ';
6672  $reset_scripts .= 'this.form.elements[\''.$prefix.'month\'].value=formatDate(new Date(), \'M\'); ';
6673  $reset_scripts .= 'this.form.elements[\''.$prefix.'year\'].value=formatDate(new Date(), \'yyyy\'); ';
6674  }*/
6675  // Update the hour part
6676  if ($h) {
6677  if ($fullday) {
6678  $reset_scripts .= " if (jQuery('#fullday:checked').val() == null) {";
6679  }
6680  //$reset_scripts .= 'this.form.elements[\''.$prefix.'hour\'].value=formatDate(new Date(), \'HH\'); ';
6681  if ($addnowlink == 1) {
6682  $reset_scripts .= 'jQuery(\'#'.$prefix.'hour\').val(\''.dol_print_date($nowgmt, '%H', 'tzuserrel').'\');';
6683  $reset_scripts .= 'jQuery(\'#'.$prefix.'hour\').change();';
6684  } elseif ($addnowlink == 2) {
6685  $reset_scripts .= 'jQuery(\'#'.$prefix.'hour\').val(d.getHours().pad());';
6686  $reset_scripts .= 'jQuery(\'#'.$prefix.'hour\').change();';
6687  }
6688 
6689  if ($fullday) {
6690  $reset_scripts .= ' } ';
6691  }
6692  }
6693  // Update the minute part
6694  if ($m) {
6695  if ($fullday) {
6696  $reset_scripts .= " if (jQuery('#fullday:checked').val() == null) {";
6697  }
6698  //$reset_scripts .= 'this.form.elements[\''.$prefix.'min\'].value=formatDate(new Date(), \'mm\'); ';
6699  if ($addnowlink == 1) {
6700  $reset_scripts .= 'jQuery(\'#'.$prefix.'min\').val(\''.dol_print_date($nowgmt, '%M', 'tzuserrel').'\');';
6701  $reset_scripts .= 'jQuery(\'#'.$prefix.'min\').change();';
6702  } elseif ($addnowlink == 2) {
6703  $reset_scripts .= 'jQuery(\'#'.$prefix.'min\').val(d.getMinutes().pad());';
6704  $reset_scripts .= 'jQuery(\'#'.$prefix.'min\').change();';
6705  }
6706  if ($fullday) {
6707  $reset_scripts .= ' } ';
6708  }
6709  }
6710  // If reset_scripts is not empty, print the link with the reset_scripts in the onClick
6711  if ($reset_scripts && empty($conf->dol_optimize_smallscreen)) {
6712  $retstring .= ' <button class="dpInvisibleButtons datenowlink" id="'.$prefix.'ButtonNow" type="button" name="_useless" value="now" onClick="'.$reset_scripts.'">';
6713  $retstring .= $langs->trans("Now");
6714  $retstring .= '</button> ';
6715  }
6716  }
6717 
6718  // Add a "Plus one hour" link
6719  if ($conf->use_javascript_ajax && $addplusone) {
6720  // Script which will be inserted in the onClick of the "Add plusone" link
6721  $reset_scripts = "";
6722 
6723  // Generate the date part, depending on the use or not of the javascript calendar
6724  $reset_scripts .= 'jQuery(\'#'.$prefix.'\').val(\''.dol_print_date($nowgmt, 'dayinputnoreduce', 'tzuserrel').'\');';
6725  $reset_scripts .= 'jQuery(\'#'.$prefix.'day\').val(\''.dol_print_date($nowgmt, '%d', 'tzuserrel').'\');';
6726  $reset_scripts .= 'jQuery(\'#'.$prefix.'month\').val(\''.dol_print_date($nowgmt, '%m', 'tzuserrel').'\');';
6727  $reset_scripts .= 'jQuery(\'#'.$prefix.'year\').val(\''.dol_print_date($nowgmt, '%Y', 'tzuserrel').'\');';
6728  // Update the hour part
6729  if ($h) {
6730  if ($fullday) {
6731  $reset_scripts .= " if (jQuery('#fullday:checked').val() == null) {";
6732  }
6733  $reset_scripts .= 'jQuery(\'#'.$prefix.'hour\').val(\''.dol_print_date($nowgmt, '%H', 'tzuserrel').'\');';
6734  if ($fullday) {
6735  $reset_scripts .= ' } ';
6736  }
6737  }
6738  // Update the minute part
6739  if ($m) {
6740  if ($fullday) {
6741  $reset_scripts .= " if (jQuery('#fullday:checked').val() == null) {";
6742  }
6743  $reset_scripts .= 'jQuery(\'#'.$prefix.'min\').val(\''.dol_print_date($nowgmt, '%M', 'tzuserrel').'\');';
6744  if ($fullday) {
6745  $reset_scripts .= ' } ';
6746  }
6747  }
6748  // If reset_scripts is not empty, print the link with the reset_scripts in the onClick
6749  if ($reset_scripts && empty($conf->dol_optimize_smallscreen)) {
6750  $retstring .= ' <button class="dpInvisibleButtons datenowlink" id="'.$prefix.'ButtonPlusOne" type="button" name="_useless2" value="plusone" onClick="'.$reset_scripts.'">';
6751  $retstring .= $langs->trans("DateStartPlusOne");
6752  $retstring .= '</button> ';
6753  }
6754  }
6755 
6756  // Add a link to set data
6757  if ($conf->use_javascript_ajax && $adddateof) {
6758  $tmparray = dol_getdate($adddateof);
6759  if (empty($labeladddateof)) {
6760  $labeladddateof = $langs->trans("DateInvoice");
6761  }
6762  $retstring .= ' - <button class="dpInvisibleButtons datenowlink" id="dateofinvoice" type="button" name="_dateofinvoice" value="now" onclick="console.log(\'Click on now link\'); jQuery(\'#re\').val(\''.dol_print_date($adddateof, 'dayinputnoreduce').'\');jQuery(\'#reday\').val(\''.$tmparray['mday'].'\');jQuery(\'#remonth\').val(\''.$tmparray['mon'].'\');jQuery(\'#reyear\').val(\''.$tmparray['year'].'\');">'.$labeladddateof.'</a>';
6763  }
6764 
6765  return $retstring;
6766  }
6767 
6776  public function selectTypeDuration($prefix, $selected = 'i', $excludetypes = array())
6777  {
6778  global $langs;
6779 
6780  $TDurationTypes = array(
6781  'y'=>$langs->trans('Years'),
6782  'm'=>$langs->trans('Month'),
6783  'w'=>$langs->trans('Weeks'),
6784  'd'=>$langs->trans('Days'),
6785  'h'=>$langs->trans('Hours'),
6786  'i'=>$langs->trans('Minutes')
6787  );
6788 
6789  // Removed undesired duration types
6790  foreach ($excludetypes as $value) {
6791  unset($TDurationTypes[$value]);
6792  }
6793 
6794  $retstring = '<select class="flat minwidth75 maxwidth100" id="select_'.$prefix.'type_duration" name="'.$prefix.'type_duration">';
6795  foreach ($TDurationTypes as $key => $typeduration) {
6796  $retstring .= '<option value="'.$key.'"';
6797  if ($key == $selected) {
6798  $retstring .= " selected";
6799  }
6800  $retstring .= ">".$typeduration."</option>";
6801  }
6802  $retstring .= "</select>";
6803 
6804  $retstring .= ajax_combobox('select_'.$prefix.'type_duration');
6805 
6806  return $retstring;
6807  }
6808 
6809  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
6823  public function select_duration($prefix, $iSecond = '', $disabled = 0, $typehour = 'select', $minunderhours = 0, $nooutput = 0)
6824  {
6825  // phpcs:enable
6826  global $langs;
6827 
6828  $retstring = '<span class="nowraponall">';
6829 
6830  $hourSelected = 0;
6831  $minSelected = 0;
6832 
6833  // Hours
6834  if ($iSecond != '') {
6835  require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
6836 
6837  $hourSelected = convertSecondToTime($iSecond, 'allhour');
6838  $minSelected = convertSecondToTime($iSecond, 'min');
6839  }
6840 
6841  if ($typehour == 'select') {
6842  $retstring .= '<select class="flat" id="select_'.$prefix.'hour" name="'.$prefix.'hour"'.($disabled ? ' disabled' : '').'>';
6843  for ($hour = 0; $hour < 25; $hour++) { // For a duration, we allow 24 hours
6844  $retstring .= '<option value="'.$hour.'"';
6845  if ($hourSelected == $hour) {
6846  $retstring .= " selected";
6847  }
6848  $retstring .= ">".$hour."</option>";
6849  }
6850  $retstring .= "</select>";
6851  } elseif ($typehour == 'text' || $typehour == 'textselect') {
6852  $retstring .= '<input placeholder="'.$langs->trans('HourShort').'" type="number" min="0" name="'.$prefix.'hour"'.($disabled ? ' disabled' : '').' class="flat maxwidth50 inputhour" value="'.(($hourSelected != '') ? ((int) $hourSelected) : '').'">';
6853  } else {
6854  return 'BadValueForParameterTypeHour';
6855  }
6856 
6857  if ($typehour != 'text') {
6858  $retstring .= ' '.$langs->trans('HourShort');
6859  } else {
6860  $retstring .= '<span class="">:</span>';
6861  }
6862 
6863  // Minutes
6864  if ($minunderhours) {
6865  $retstring .= '<br>';
6866  } else {
6867  $retstring .= '<span class="hideonsmartphone">&nbsp;</span>';
6868  }
6869 
6870  if ($typehour == 'select' || $typehour == 'textselect') {
6871  $retstring .= '<select class="flat" id="select_'.$prefix.'min" name="'.$prefix.'min"'.($disabled ? ' disabled' : '').'>';
6872  for ($min = 0; $min <= 55; $min = $min + 5) {
6873  $retstring .= '<option value="'.$min.'"';
6874  if ($minSelected == $min) {
6875  $retstring .= ' selected';
6876  }
6877  $retstring .= '>'.$min.'</option>';
6878  }
6879  $retstring .= "</select>";
6880  } elseif ($typehour == 'text') {
6881  $retstring .= '<input placeholder="'.$langs->trans('MinuteShort').'" type="number" min="0" name="'.$prefix.'min"'.($disabled ? ' disabled' : '').' class="flat maxwidth50 inputminute" value="'.(($minSelected != '') ? ((int) $minSelected) : '').'">';
6882  }
6883 
6884  if ($typehour != 'text') {
6885  $retstring .= ' '.$langs->trans('MinuteShort');
6886  }
6887 
6888  $retstring.="</span>";
6889 
6890  if (!empty($nooutput)) {
6891  return $retstring;
6892  }
6893 
6894  print $retstring;
6895  return;
6896  }
6897 
6917  public function selectTickets($selected = '', $htmlname = 'ticketid', $filtertype = '', $limit = 0, $status = 1, $selected_input_value = '', $hidelabel = 0, $ajaxoptions = array(), $socid = 0, $showempty = '1', $forcecombo = 0, $morecss = '', $selected_combinations = null, $nooutput = 0)
6918  {
6919  global $langs, $conf;
6920 
6921  $out = '';
6922 
6923  // check parameters
6924  if (is_null($ajaxoptions)) $ajaxoptions = array();
6925 
6926  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->TICKET_USE_SEARCH_TO_SELECT)) {
6927  $placeholder = '';
6928 
6929  if ($selected && empty($selected_input_value)) {
6930  require_once DOL_DOCUMENT_ROOT.'/ticket/class/ticket.class.php';
6931  $tickettmpselect = new Ticket($this->db);
6932  $tickettmpselect->fetch($selected);
6933  $selected_input_value = $tickettmpselect->ref;
6934  unset($tickettmpselect);
6935  }
6936 
6937  $urloption = '';
6938  $out .= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/ticket/ajax/tickets.php', $urloption, $conf->global->PRODUIT_USE_SEARCH_TO_SELECT, 1, $ajaxoptions);
6939 
6940  if (empty($hidelabel)) $out .= $langs->trans("RefOrLabel").' : ';
6941  elseif ($hidelabel > 1) {
6942  $placeholder = ' placeholder="'.$langs->trans("RefOrLabel").'"';
6943  if ($hidelabel == 2) {
6944  $out .= img_picto($langs->trans("Search"), 'search');
6945  }
6946  }
6947  $out .= '<input type="text" class="minwidth100" name="search_'.$htmlname.'" id="search_'.$htmlname.'" value="'.$selected_input_value.'"'.$placeholder.' '.(!empty($conf->global->PRODUCT_SEARCH_AUTOFOCUS) ? 'autofocus' : '').' />';
6948  if ($hidelabel == 3) {
6949  $out .= img_picto($langs->trans("Search"), 'search');
6950  }
6951  } else {
6952  $out .= $this->selectTicketsList($selected, $htmlname, $filtertype, $limit, $status, 0, $socid, $showempty, $forcecombo, $morecss);
6953  }
6954 
6955  if (empty($nooutput)) print $out;
6956  else return $out;
6957  }
6958 
6959 
6976  public function selectTicketsList($selected = '', $htmlname = 'ticketid', $filtertype = '', $limit = 20, $filterkey = '', $status = 1, $outputmode = 0, $showempty = '1', $forcecombo = 0, $morecss = '')
6977  {
6978  global $langs, $conf;
6979 
6980  $out = '';
6981  $outarray = array();
6982 
6983  $selectFields = " p.rowid, p.ref, p.message";
6984 
6985  $sql = "SELECT ";
6986  $sql .= $selectFields;
6987  $sql .= " FROM ".$this->db->prefix()."ticket as p";
6988  $sql .= ' WHERE p.entity IN ('.getEntity('ticket').')';
6989 
6990  // Add criteria on ref/label
6991  if ($filterkey != '') {
6992  $sql .= ' AND (';
6993  $prefix = empty($conf->global->TICKET_DONOTSEARCH_ANYWHERE) ? '%' : ''; // Can use index if PRODUCT_DONOTSEARCH_ANYWHERE is on
6994  // For natural search
6995  $scrit = explode(' ', $filterkey);
6996  $i = 0;
6997  if (count($scrit) > 1) $sql .= "(";
6998  foreach ($scrit as $crit) {
6999  if ($i > 0) $sql .= " AND ";
7000  $sql .= "(p.ref LIKE '".$this->db->escape($prefix.$crit)."%' OR p.subject LIKE '".$this->db->escape($prefix.$crit)."%'";
7001  $sql .= ")";
7002  $i++;
7003  }
7004  if (count($scrit) > 1) $sql .= ")";
7005  $sql .= ')';
7006  }
7007 
7008  $sql .= $this->db->plimit($limit, 0);
7009 
7010  // Build output string
7011  dol_syslog(get_class($this)."::selectTicketsList search tickets", LOG_DEBUG);
7012  $result = $this->db->query($sql);
7013  if ($result) {
7014  require_once DOL_DOCUMENT_ROOT.'/ticket/class/ticket.class.php';
7015  require_once DOL_DOCUMENT_ROOT.'/core/lib/ticket.lib.php';
7016 
7017  $num = $this->db->num_rows($result);
7018 
7019  $events = null;
7020 
7021  if (!$forcecombo) {
7022  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
7023  $out .= ajax_combobox($htmlname, $events, $conf->global->TICKET_USE_SEARCH_TO_SELECT);
7024  }
7025 
7026  $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" id="'.$htmlname.'">';
7027 
7028  $textifempty = '';
7029  // Do not use textifempty = ' ' or '&nbsp;' here, or search on key will search on ' key'.
7030  //if (! empty($conf->use_javascript_ajax) || $forcecombo) $textifempty='';
7031  if (!empty($conf->global->TICKET_USE_SEARCH_TO_SELECT)) {
7032  if ($showempty && !is_numeric($showempty)) $textifempty = $langs->trans($showempty);
7033  else $textifempty .= $langs->trans("All");
7034  } else {
7035  if ($showempty && !is_numeric($showempty)) $textifempty = $langs->trans($showempty);
7036  }
7037  if ($showempty) $out .= '<option value="0" selected>'.$textifempty.'</option>';
7038 
7039  $i = 0;
7040  while ($num && $i < $num) {
7041  $opt = '';
7042  $optJson = array();
7043  $objp = $this->db->fetch_object($result);
7044 
7045  $this->constructTicketListOption($objp, $opt, $optJson, $selected, $filterkey);
7046  // Add new entry
7047  // "key" value of json key array is used by jQuery automatically as selected value
7048  // "label" value of json key array is used by jQuery automatically as text for combo box
7049  $out .= $opt;
7050  array_push($outarray, $optJson);
7051 
7052  $i++;
7053  }
7054 
7055  $out .= '</select>';
7056 
7057  $this->db->free($result);
7058 
7059  if (empty($outputmode)) return $out;
7060  return $outarray;
7061  } else {
7062  dol_print_error($this->db);
7063  }
7064  }
7065 
7077  protected function constructTicketListOption(&$objp, &$opt, &$optJson, $selected, $filterkey = '')
7078  {
7079  $outkey = '';
7080  $outref = '';
7081  $outtype = '';
7082 
7083  $outkey = $objp->rowid;
7084  $outref = $objp->ref;
7085  $outtype = $objp->fk_product_type;
7086 
7087  $opt = '<option value="'.$objp->rowid.'"';
7088  $opt .= ($objp->rowid == $selected) ? ' selected' : '';
7089  $opt .= '>';
7090  $opt .= $objp->ref;
7091  $objRef = $objp->ref;
7092  if (!empty($filterkey) && $filterkey != '') $objRef = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $objRef, 1);
7093 
7094  $opt .= "</option>\n";
7095  $optJson = array('key'=>$outkey, 'value'=>$outref, 'type'=>$outtype);
7096  }
7097 
7117  public function selectProjects($selected = '', $htmlname = 'projectid', $filtertype = '', $limit = 0, $status = 1, $selected_input_value = '', $hidelabel = 0, $ajaxoptions = array(), $socid = 0, $showempty = '1', $forcecombo = 0, $morecss = '', $selected_combinations = null, $nooutput = 0)
7118  {
7119  global $langs, $conf;
7120 
7121  $out = '';
7122 
7123  // check parameters
7124  if (is_null($ajaxoptions)) $ajaxoptions = array();
7125 
7126  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->TICKET_USE_SEARCH_TO_SELECT)) {
7127  $placeholder = '';
7128 
7129  if ($selected && empty($selected_input_value)) {
7130  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
7131  $projecttmpselect = new Project($this->db);
7132  $projecttmpselect->fetch($selected);
7133  $selected_input_value = $projecttmpselect->ref;
7134  unset($projecttmpselect);
7135  }
7136 
7137  $out .= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/projet/ajax/projects.php', $urloption, $conf->global->PRODUIT_USE_SEARCH_TO_SELECT, 1, $ajaxoptions);
7138 
7139  if (empty($hidelabel)) $out .= $langs->trans("RefOrLabel").' : ';
7140  elseif ($hidelabel > 1) {
7141  $placeholder = ' placeholder="'.$langs->trans("RefOrLabel").'"';
7142  if ($hidelabel == 2) {
7143  $out .= img_picto($langs->trans("Search"), 'search');
7144  }
7145  }
7146  $out .= '<input type="text" class="minwidth100" name="search_'.$htmlname.'" id="search_'.$htmlname.'" value="'.$selected_input_value.'"'.$placeholder.' '.(!empty($conf->global->PRODUCT_SEARCH_AUTOFOCUS) ? 'autofocus' : '').' />';
7147  if ($hidelabel == 3) {
7148  $out .= img_picto($langs->trans("Search"), 'search');
7149  }
7150  } else {
7151  $out .= $this->selectProjectsList($selected, $htmlname, $filtertype, $limit, $status, 0, $socid, $showempty, $forcecombo, $morecss);
7152  }
7153 
7154  if (empty($nooutput)) print $out;
7155  else return $out;
7156  }
7157 
7174  public function selectProjectsList($selected = '', $htmlname = 'projectid', $filtertype = '', $limit = 20, $filterkey = '', $status = 1, $outputmode = 0, $showempty = '1', $forcecombo = 0, $morecss = '')
7175  {
7176  global $langs, $conf;
7177 
7178  $out = '';
7179  $outarray = array();
7180 
7181  $selectFields = " p.rowid, p.ref";
7182 
7183  $sql = "SELECT ";
7184  $sql .= $selectFields;
7185  $sql .= " FROM ".$this->db->prefix()."projet as p";
7186  $sql .= ' WHERE p.entity IN ('.getEntity('project').')';
7187 
7188  // Add criteria on ref/label
7189  if ($filterkey != '') {
7190  $sql .= ' AND (';
7191  $prefix = empty($conf->global->TICKET_DONOTSEARCH_ANYWHERE) ? '%' : ''; // Can use index if PRODUCT_DONOTSEARCH_ANYWHERE is on
7192  // For natural search
7193  $scrit = explode(' ', $filterkey);
7194  $i = 0;
7195  if (count($scrit) > 1) $sql .= "(";
7196  foreach ($scrit as $crit) {
7197  if ($i > 0) $sql .= " AND ";
7198  $sql .= "p.ref LIKE '".$this->db->escape($prefix.$crit)."%'";
7199  $sql .= "";
7200  $i++;
7201  }
7202  if (count($scrit) > 1) $sql .= ")";
7203  $sql .= ')';
7204  }
7205 
7206  $sql .= $this->db->plimit($limit, 0);
7207 
7208  // Build output string
7209  dol_syslog(get_class($this)."::selectProjectsList search projects", LOG_DEBUG);
7210  $result = $this->db->query($sql);
7211  if ($result) {
7212  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
7213  require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
7214 
7215  $num = $this->db->num_rows($result);
7216 
7217  $events = null;
7218 
7219  if (!$forcecombo) {
7220  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
7221  $out .= ajax_combobox($htmlname, $events, $conf->global->PROJECT_USE_SEARCH_TO_SELECT);
7222  }
7223 
7224  $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" id="'.$htmlname.'">';
7225 
7226  $textifempty = '';
7227  // Do not use textifempty = ' ' or '&nbsp;' here, or search on key will search on ' key'.
7228  //if (! empty($conf->use_javascript_ajax) || $forcecombo) $textifempty='';
7229  if (!empty($conf->global->PROJECT_USE_SEARCH_TO_SELECT)) {
7230  if ($showempty && !is_numeric($showempty)) $textifempty = $langs->trans($showempty);
7231  else $textifempty .= $langs->trans("All");
7232  } else {
7233  if ($showempty && !is_numeric($showempty)) $textifempty = $langs->trans($showempty);
7234  }
7235  if ($showempty) $out .= '<option value="0" selected>'.$textifempty.'</option>';
7236 
7237  $i = 0;
7238  while ($num && $i < $num) {
7239  $opt = '';
7240  $optJson = array();
7241  $objp = $this->db->fetch_object($result);
7242 
7243  $this->constructProjectListOption($objp, $opt, $optJson, $selected, $filterkey);
7244  // Add new entry
7245  // "key" value of json key array is used by jQuery automatically as selected value
7246  // "label" value of json key array is used by jQuery automatically as text for combo box
7247  $out .= $opt;
7248  array_push($outarray, $optJson);
7249 
7250  $i++;
7251  }
7252 
7253  $out .= '</select>';
7254 
7255  $this->db->free($result);
7256 
7257  if (empty($outputmode)) return $out;
7258  return $outarray;
7259  } else {
7260  dol_print_error($this->db);
7261  }
7262  }
7263 
7275  protected function constructProjectListOption(&$objp, &$opt, &$optJson, $selected, $filterkey = '')
7276  {
7277  $outkey = '';
7278  $outval = '';
7279  $outref = '';
7280  $outlabel = '';
7281  $outtype = '';
7282 
7283  $label = $objp->label;
7284 
7285  $outkey = $objp->rowid;
7286  $outref = $objp->ref;
7287  $outlabel = $objp->label;
7288  $outtype = $objp->fk_product_type;
7289 
7290  $opt = '<option value="'.$objp->rowid.'"';
7291  $opt .= ($objp->rowid == $selected) ? ' selected' : '';
7292  $opt .= '>';
7293  $opt .= $objp->ref;
7294  $objRef = $objp->ref;
7295  if (!empty($filterkey) && $filterkey != '') $objRef = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $objRef, 1);
7296  $outval .= $objRef;
7297 
7298  $opt .= "</option>\n";
7299  $optJson = array('key'=>$outkey, 'value'=>$outref, 'type'=>$outtype);
7300  }
7301 
7302 
7322  public function selectMembers($selected = '', $htmlname = 'adherentid', $filtertype = '', $limit = 0, $status = 1, $selected_input_value = '', $hidelabel = 0, $ajaxoptions = array(), $socid = 0, $showempty = '1', $forcecombo = 0, $morecss = '', $selected_combinations = null, $nooutput = 0)
7323  {
7324  global $langs, $conf;
7325 
7326  $out = '';
7327 
7328  // check parameters
7329  if (is_null($ajaxoptions)) $ajaxoptions = array();
7330 
7331  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->TICKET_USE_SEARCH_TO_SELECT)) {
7332  $placeholder = '';
7333  $urloption = '';
7334 
7335  if ($selected && empty($selected_input_value)) {
7336  require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
7337  $adherenttmpselect = new Adherent($this->db);
7338  $adherenttmpselect->fetch($selected);
7339  $selected_input_value = $adherenttmpselect->ref;
7340  unset($adherenttmpselect);
7341  }
7342 
7343  $urloption = '';
7344 
7345  $out .= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/adherents/ajax/adherents.php', $urloption, $conf->global->PRODUIT_USE_SEARCH_TO_SELECT, 1, $ajaxoptions);
7346 
7347  if (empty($hidelabel)) $out .= $langs->trans("RefOrLabel").' : ';
7348  elseif ($hidelabel > 1) {
7349  $placeholder = ' placeholder="'.$langs->trans("RefOrLabel").'"';
7350  if ($hidelabel == 2) {
7351  $out .= img_picto($langs->trans("Search"), 'search');
7352  }
7353  }
7354  $out .= '<input type="text" class="minwidth100" name="search_'.$htmlname.'" id="search_'.$htmlname.'" value="'.$selected_input_value.'"'.$placeholder.' '.(!empty($conf->global->PRODUCT_SEARCH_AUTOFOCUS) ? 'autofocus' : '').' />';
7355  if ($hidelabel == 3) {
7356  $out .= img_picto($langs->trans("Search"), 'search');
7357  }
7358  } else {
7359  $filterkey = '';
7360 
7361  $out .= $this->selectMembersList($selected, $htmlname, $filtertype, $limit, $filterkey, $status, 0, $showempty, $forcecombo, $morecss);
7362  }
7363 
7364  if (empty($nooutput)) print $out;
7365  else return $out;
7366  }
7367 
7384  public function selectMembersList($selected = '', $htmlname = 'adherentid', $filtertype = '', $limit = 20, $filterkey = '', $status = 1, $outputmode = 0, $showempty = '1', $forcecombo = 0, $morecss = '')
7385  {
7386  global $langs, $conf;
7387 
7388  $out = '';
7389  $outarray = array();
7390 
7391  $selectFields = " p.rowid, p.ref, p.firstname, p.lastname";
7392 
7393  $sql = "SELECT ";
7394  $sql .= $selectFields;
7395  $sql .= " FROM ".$this->db->prefix()."adherent as p";
7396  $sql .= ' WHERE p.entity IN ('.getEntity('adherent').')';
7397 
7398  // Add criteria on ref/label
7399  if ($filterkey != '') {
7400  $sql .= ' AND (';
7401  $prefix = empty($conf->global->MEMBER_DONOTSEARCH_ANYWHERE) ? '%' : ''; // Can use index if PRODUCT_DONOTSEARCH_ANYWHERE is on
7402  // For natural search
7403  $scrit = explode(' ', $filterkey);
7404  $i = 0;
7405  if (count($scrit) > 1) $sql .= "(";
7406  foreach ($scrit as $crit) {
7407  if ($i > 0) $sql .= " AND ";
7408  $sql .= "(p.firstname LIKE '".$this->db->escape($prefix.$crit)."%'";
7409  $sql .= " OR p.lastname LIKE '".$this->db->escape($prefix.$crit)."%')";
7410  $i++;
7411  }
7412  if (count($scrit) > 1) $sql .= ")";
7413  $sql .= ')';
7414  }
7415  if ($status != -1) {
7416  $sql .= ' AND statut = '.((int) $status);
7417  }
7418  $sql .= $this->db->plimit($limit, 0);
7419 
7420  // Build output string
7421  dol_syslog(get_class($this)."::selectMembersList search adherents", LOG_DEBUG);
7422  $result = $this->db->query($sql);
7423  if ($result) {
7424  require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
7425  require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
7426 
7427  $num = $this->db->num_rows($result);
7428 
7429  $events = null;
7430 
7431  if (!$forcecombo) {
7432  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
7433  $out .= ajax_combobox($htmlname, $events, $conf->global->PROJECT_USE_SEARCH_TO_SELECT);
7434  }
7435 
7436  $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$htmlname.'" id="'.$htmlname.'">';
7437 
7438  $textifempty = '';
7439  // Do not use textifempty = ' ' or '&nbsp;' here, or search on key will search on ' key'.
7440  //if (! empty($conf->use_javascript_ajax) || $forcecombo) $textifempty='';
7441  if (!empty($conf->global->PROJECT_USE_SEARCH_TO_SELECT)) {
7442  if ($showempty && !is_numeric($showempty)) $textifempty = $langs->trans($showempty);
7443  else $textifempty .= $langs->trans("All");
7444  } else {
7445  if ($showempty && !is_numeric($showempty)) $textifempty = $langs->trans($showempty);
7446  }
7447  if ($showempty) {
7448  $out .= '<option value="-1" selected>'.$textifempty.'</option>';
7449  }
7450 
7451  $i = 0;
7452  while ($num && $i < $num) {
7453  $opt = '';
7454  $optJson = array();
7455  $objp = $this->db->fetch_object($result);
7456 
7457  $this->constructMemberListOption($objp, $opt, $optJson, $selected, $filterkey);
7458 
7459  // Add new entry
7460  // "key" value of json key array is used by jQuery automatically as selected value
7461  // "label" value of json key array is used by jQuery automatically as text for combo box
7462  $out .= $opt;
7463  array_push($outarray, $optJson);
7464 
7465  $i++;
7466  }
7467 
7468  $out .= '</select>';
7469 
7470  $this->db->free($result);
7471 
7472  if (empty($outputmode)) return $out;
7473  return $outarray;
7474  } else {
7475  dol_print_error($this->db);
7476  }
7477  }
7478 
7490  protected function constructMemberListOption(&$objp, &$opt, &$optJson, $selected, $filterkey = '')
7491  {
7492  $outkey = '';
7493  $outlabel = '';
7494  $outtype = '';
7495 
7496  $outkey = $objp->rowid;
7497  $outlabel = dolGetFirstLastname($objp->firstname, $objp->lastname);
7498  $outtype = $objp->fk_adherent_type;
7499 
7500  $opt = '<option value="'.$objp->rowid.'"';
7501  $opt .= ($objp->rowid == $selected) ? ' selected' : '';
7502  $opt .= '>';
7503  if (!empty($filterkey) && $filterkey != '') {
7504  $outlabel = preg_replace('/('.preg_quote($filterkey, '/').')/i', '<strong>$1</strong>', $outlabel, 1);
7505  }
7506  $opt .= $outlabel;
7507  $opt .= "</option>\n";
7508 
7509  $optJson = array('key'=>$outkey, 'value'=>$outlabel, 'type'=>$outtype);
7510  }
7511 
7531  public function selectForForms($objectdesc, $htmlname, $preselectedvalue, $showempty = '', $searchkey = '', $placeholder = '', $morecss = '', $moreparams = '', $forcecombo = 0, $disabled = 0, $selected_input_value = '')
7532  {
7533  global $conf, $user;
7534 
7535  $objecttmp = null;
7536 
7537  // Example of value for $objectdec:
7538  // Bom:bom/class/bom.class.php:0:t.status=1
7539  // Bom:bom/class/bom.class.php:0:t.status=1:ref
7540  // Bom:bom/class/bom.class.php:0:(t.status:=:1):ref
7541  $InfoFieldList = explode(":", $objectdesc, 4);
7542  $vartmp = (empty($InfoFieldList[3]) ? '' : $InfoFieldList[3]);
7543  $reg = array();
7544  if (preg_match('/^.*:(\w*)$/', $vartmp, $reg)) {
7545  $InfoFieldList[4] = $reg[1]; // take the sort field
7546  }
7547  $InfoFieldList[3] = preg_replace('/:\w*$/', '', $vartmp); // take the filter field
7548 
7549  $classname = $InfoFieldList[0];
7550  $classpath = $InfoFieldList[1];
7551  $addcreatebuttonornot = empty($InfoFieldList[2]) ? 0 : $InfoFieldList[2];
7552  $filter = empty($InfoFieldList[3]) ? '' : $InfoFieldList[3];
7553  $sortfield = empty($InfoFieldList[4]) ? '' : $InfoFieldList[4];
7554 
7555  if (!empty($classpath)) {
7556  dol_include_once($classpath);
7557 
7558  if ($classname && class_exists($classname)) {
7559  $objecttmp = new $classname($this->db);
7560  // Make some replacement
7561  $sharedentities = getEntity(strtolower($classname));
7562  $objecttmp->filter = str_replace(
7563  array('__ENTITY__', '__SHARED_ENTITIES__', '__USER_ID__'),
7564  array($conf->entity, $sharedentities, $user->id),
7565  $filter
7566  );
7567  }
7568  }
7569  if (!is_object($objecttmp)) {
7570  dol_syslog('Error bad setup of type for field '.$InfoFieldList, LOG_WARNING);
7571  return 'Error bad setup of type for field '.join(',', $InfoFieldList);
7572  }
7573 
7574  //var_dump($objecttmp->filter);
7575  $prefixforautocompletemode = $objecttmp->element;
7576  if ($prefixforautocompletemode == 'societe') {
7577  $prefixforautocompletemode = 'company';
7578  }
7579  if ($prefixforautocompletemode == 'product') {
7580  $prefixforautocompletemode = 'produit';
7581  }
7582  $confkeyforautocompletemode = strtoupper($prefixforautocompletemode).'_USE_SEARCH_TO_SELECT'; // For example COMPANY_USE_SEARCH_TO_SELECT
7583 
7584  dol_syslog(get_class($this)."::selectForForms object->filter=".$objecttmp->filter, LOG_DEBUG);
7585  $out = '';
7586  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->$confkeyforautocompletemode) && !$forcecombo) {
7587  // No immediate load of all database
7588  $placeholder = '';
7589  if ($preselectedvalue && empty($selected_input_value)) {
7590  $objecttmp->fetch($preselectedvalue);
7591  $selected_input_value = ($prefixforautocompletemode == 'company' ? $objecttmp->name : $objecttmp->ref);
7592  //unset($objecttmp);
7593  }
7594 
7595  $objectdesc = $classname.':'.$classpath.':'.$addcreatebuttonornot.':'.$filter;
7596  $urlforajaxcall = DOL_URL_ROOT.'/core/ajax/selectobject.php';
7597 
7598  // No immediate load of all database
7599  $urloption = 'htmlname='.urlencode($htmlname).'&outjson=1&objectdesc='.urlencode($objectdesc).'&filter='.urlencode($objecttmp->filter).($sortfield ? '&sortfield='.urlencode($sortfield) : '');
7600  // Activate the auto complete using ajax call.
7601  $out .= ajax_autocompleter($preselectedvalue, $htmlname, $urlforajaxcall, $urloption, $conf->global->$confkeyforautocompletemode, 0, array());
7602  $out .= '<style type="text/css">.ui-autocomplete { z-index: 1003; }</style>';
7603  $out .= '<input type="text" class="'.$morecss.'"'.($disabled ? ' disabled="disabled"' : '').' name="search_'.$htmlname.'" id="search_'.$htmlname.'" value="'.$selected_input_value.'"'.($placeholder ? ' placeholder="'.dol_escape_htmltag($placeholder).'"' : '') .' />';
7604  } else {
7605  // Immediate load of table record. Note: filter is inside $objecttmp->filter
7606  $out .= $this->selectForFormsList($objecttmp, $htmlname, $preselectedvalue, $showempty, $searchkey, $placeholder, $morecss, $moreparams, $forcecombo, 0, $disabled, $sortfield);
7607  }
7608 
7609  return $out;
7610  }
7611 
7618  protected static function forgeCriteriaCallback($matches)
7619  {
7620  global $db;
7621 
7622  //dol_syslog("Convert matches ".$matches[1]);
7623  if (empty($matches[1])) {
7624  return '';
7625  }
7626  $tmp = explode(':', $matches[1]);
7627  if (count($tmp) < 3) {
7628  return '';
7629  }
7630 
7631  $tmpescaped = $tmp[2];
7632  $regbis = array();
7633  if (preg_match('/^\'(.*)\'$/', $tmpescaped, $regbis)) {
7634  $tmpescaped = "'".$db->escape($regbis[1])."'";
7635  } else {
7636  $tmpescaped = $db->escape($tmpescaped);
7637  }
7638  return $db->escape($tmp[0]).' '.strtoupper($db->escape($tmp[1]))." ".$tmpescaped;
7639  }
7640 
7660  public function selectForFormsList($objecttmp, $htmlname, $preselectedvalue, $showempty = '', $searchkey = '', $placeholder = '', $morecss = '', $moreparams = '', $forcecombo = 0, $outputmode = 0, $disabled = 0, $sortfield = '')
7661  {
7662  global $conf, $langs, $user, $hookmanager;
7663 
7664  //print "$objecttmp->filter, $htmlname, $preselectedvalue, $showempty = '', $searchkey = '', $placeholder = '', $morecss = '', $moreparams = '', $forcecombo = 0, $outputmode = 0, $disabled";
7665 
7666  $prefixforautocompletemode = $objecttmp->element;
7667  if ($prefixforautocompletemode == 'societe') {
7668  $prefixforautocompletemode = 'company';
7669  }
7670  $confkeyforautocompletemode = strtoupper($prefixforautocompletemode).'_USE_SEARCH_TO_SELECT'; // For example COMPANY_USE_SEARCH_TO_SELECT
7671 
7672  if (!empty($objecttmp->fields)) { // For object that declare it, it is better to use declared fields (like societe, contact, ...)
7673  $tmpfieldstoshow = '';
7674  foreach ($objecttmp->fields as $key => $val) {
7675  if (!dol_eval($val['enabled'], 1, 1, '1')) {
7676  continue;
7677  }
7678  if (!empty($val['showoncombobox'])) {
7679  $tmpfieldstoshow .= ($tmpfieldstoshow ? ',' : '').'t.'.$key;
7680  }
7681  }
7682  if ($tmpfieldstoshow) {
7683  $fieldstoshow = $tmpfieldstoshow;
7684  }
7685  } else {
7686  // For backward compatibility
7687  $objecttmp->fields['ref'] = array('type'=>'varchar(30)', 'label'=>'Ref', 'showoncombobox'=>1);
7688  }
7689 
7690  if (empty($fieldstoshow)) {
7691  if (isset($objecttmp->fields['ref'])) {
7692  $fieldstoshow = 't.ref';
7693  } else {
7694  $langs->load("errors");
7695  $this->error = $langs->trans("ErrorNoFieldWithAttributeShowoncombobox");
7696  return $langs->trans('ErrorNoFieldWithAttributeShowoncombobox');
7697  }
7698  }
7699 
7700  $out = '';
7701  $outarray = array();
7702  $tmparray = array();
7703 
7704  $num = 0;
7705 
7706  // Search data
7707  $sql = "SELECT t.rowid, ".$fieldstoshow." FROM ".$this->db->prefix().$objecttmp->table_element." as t";
7708  if (isset($objecttmp->ismultientitymanaged)) {
7709  if (!is_numeric($objecttmp->ismultientitymanaged)) {
7710  $tmparray = explode('@', $objecttmp->ismultientitymanaged);
7711  $sql .= " INNER JOIN ".$this->db->prefix().$tmparray[1]." as parenttable ON parenttable.rowid = t.".$tmparray[0];
7712  }
7713  if ($objecttmp->ismultientitymanaged === 'fk_soc@societe') {
7714  if (empty($user->rights->societe->client->voir) && !$user->socid) {
7715  $sql .= ", ".$this->db->prefix()."societe_commerciaux as sc";
7716  }
7717  }
7718  }
7719 
7720  // Add where from hooks
7721  $parameters = array();
7722  $reshook = $hookmanager->executeHooks('selectForFormsListWhere', $parameters); // Note that $action and $object may have been modified by hook
7723  if (!empty($hookmanager->resPrint)) {
7724  $sql .= $hookmanager->resPrint;
7725  } else {
7726  $sql .= " WHERE 1=1";
7727  if (isset($objecttmp->ismultientitymanaged)) {
7728  if ($objecttmp->ismultientitymanaged == 1) {
7729  $sql .= " AND t.entity IN (".getEntity($objecttmp->table_element).")";
7730  }
7731  if (!is_numeric($objecttmp->ismultientitymanaged)) {
7732  $sql .= " AND parenttable.entity = t.".$tmparray[0];
7733  }
7734  if ($objecttmp->ismultientitymanaged == 1 && !empty($user->socid)) {
7735  if ($objecttmp->element == 'societe') {
7736  $sql .= " AND t.rowid = ".((int) $user->socid);
7737  } else {
7738  $sql .= " AND t.fk_soc = ".((int) $user->socid);
7739  }
7740  }
7741  if ($objecttmp->ismultientitymanaged === 'fk_soc@societe') {
7742  if (empty($user->rights->societe->client->voir) && !$user->socid) {
7743  $sql .= " AND t.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
7744  }
7745  }
7746  }
7747  if ($searchkey != '') {
7748  $sql .= natural_search(explode(',', $fieldstoshow), $searchkey);
7749  }
7750  if ($objecttmp->filter) { // Syntax example "(t.ref:like:'SO-%') and (t.date_creation:<:'20160101')"
7751  /*if (! DolibarrApi::_checkFilters($objecttmp->filter))
7752  {
7753  throw new RestException(503, 'Error when validating parameter sqlfilters '.$objecttmp->filter);
7754  }*/
7755  $regexstring = '\(([^:\'\(\)]+:[^:\'\(\)]+:[^\(\)]+)\)';
7756  $sql .= " AND (".preg_replace_callback('/'.$regexstring.'/', 'Form::forgeCriteriaCallback', $objecttmp->filter).")";
7757  }
7758  }
7759  $sql .= $this->db->order($sortfield ? $sortfield : $fieldstoshow, "ASC");
7760  //$sql.=$this->db->plimit($limit, 0);
7761  //print $sql;
7762 
7763  // Build output string
7764  $resql = $this->db->query($sql);
7765  if ($resql) {
7766  // Construct $out and $outarray
7767  $out .= '<select id="'.$htmlname.'" class="flat'.($morecss ? ' '.$morecss : '').'"'.($disabled ? ' disabled="disabled"' : '').($moreparams ? ' '.$moreparams : '').' name="'.$htmlname.'">'."\n";
7768 
7769  // Warning: Do not use textifempty = ' ' or '&nbsp;' here, or search on key will search on ' key'. Seems it is no more true with selec2 v4
7770  $textifempty = '&nbsp;';
7771 
7772  //if (! empty($conf->use_javascript_ajax) || $forcecombo) $textifempty='';
7773  if (!empty($conf->global->$confkeyforautocompletemode)) {
7774  if ($showempty && !is_numeric($showempty)) {
7775  $textifempty = $langs->trans($showempty);
7776  } else {
7777  $textifempty .= $langs->trans("All");
7778  }
7779  }
7780  if ($showempty) {
7781  $out .= '<option value="-1">'.$textifempty.'</option>'."\n";
7782  }
7783 
7784  $num = $this->db->num_rows($resql);
7785  $i = 0;
7786  if ($num) {
7787  while ($i < $num) {
7788  $obj = $this->db->fetch_object($resql);
7789  $label = '';
7790  $tmparray = explode(',', $fieldstoshow);
7791  $oldvalueforshowoncombobox = 0;
7792  foreach ($tmparray as $key => $val) {
7793  $val = preg_replace('/t\./', '', $val);
7794  $label .= (($label && $obj->$val) ? ($oldvalueforshowoncombobox != $objecttmp->fields[$val]['showoncombobox'] ? ' - ' : ' ') : '');
7795  $label .= $obj->$val;
7796  $oldvalueforshowoncombobox = !empty($objecttmp->fields[$val]['showoncombobox']) ? $objecttmp->fields[$val]['showoncombobox'] : 0;
7797  }
7798  if (empty($outputmode)) {
7799  if ($preselectedvalue > 0 && $preselectedvalue == $obj->rowid) {
7800  $out .= '<option value="'.$obj->rowid.'" selected>'.$label.'</option>';
7801  } else {
7802  $out .= '<option value="'.$obj->rowid.'">'.$label.'</option>';
7803  }
7804  } else {
7805  array_push($outarray, array('key'=>$obj->rowid, 'value'=>$label, 'label'=>$label));
7806  }
7807 
7808  $i++;
7809  if (($i % 10) == 0) {
7810  $out .= "\n";
7811  }
7812  }
7813  }
7814 
7815  $out .= '</select>'."\n";
7816 
7817  if (!$forcecombo) {
7818  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
7819  $out .= ajax_combobox($htmlname, null, (!empty($conf->global->$confkeyforautocompletemode) ? $conf->global->$confkeyforautocompletemode : 0));
7820  }
7821  } else {
7822  dol_print_error($this->db);
7823  }
7824 
7825  $this->result = array('nbofelement'=>$num);
7826 
7827  if ($outputmode) {
7828  return $outarray;
7829  }
7830  return $out;
7831  }
7832 
7833 
7857  public static function selectarray($htmlname, $array, $id = '', $show_empty = 0, $key_in_label = 0, $value_as_key = 0, $moreparam = '', $translate = 0, $maxlen = 0, $disabled = 0, $sort = '', $morecss = '', $addjscombo = 1, $moreparamonempty = '', $disablebademail = 0, $nohtmlescape = 0)
7858  {
7859  global $conf, $langs;
7860 
7861  // Do we want a multiselect ?
7862  //$jsbeautify = 0;
7863  //if (preg_match('/^multi/',$htmlname)) $jsbeautify = 1;
7864  $jsbeautify = 1;
7865 
7866  if ($value_as_key) {
7867  $array = array_combine($array, $array);
7868  }
7869 
7870  $out = '';
7871 
7872  if ($addjscombo < 0) {
7873  if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
7874  $addjscombo = 1;
7875  } else {
7876  $addjscombo = 0;
7877  }
7878  }
7879 
7880  $out .= '<select id="'.preg_replace('/^\./', '', $htmlname).'" '.($disabled ? 'disabled="disabled" ' : '').'class="flat '.(preg_replace('/^\./', '', $htmlname)).($morecss ? ' '.$morecss : '').'"';
7881  $out .= ' name="'.preg_replace('/^\./', '', $htmlname).'" '.($moreparam ? $moreparam : '');
7882  $out .= '>';
7883 
7884  if ($show_empty) {
7885  $textforempty = ' ';
7886  if (!empty($conf->use_javascript_ajax)) {
7887  $textforempty = '&nbsp;'; // If we use ajaxcombo, we need &nbsp; here to avoid to have an empty element that is too small.
7888  }
7889  if (!is_numeric($show_empty)) {
7890  $textforempty = $show_empty;
7891  }
7892  $out .= '<option class="optiongrey" '.($moreparamonempty ? $moreparamonempty.' ' : '').'value="'.($show_empty < 0 ? $show_empty : -1).'"'.($id == $show_empty ? ' selected' : '').'>'.$textforempty.'</option>'."\n";
7893  }
7894 
7895  if (is_array($array)) {
7896  // Translate
7897  if ($translate) {
7898  foreach ($array as $key => $value) {
7899  if (!is_array($value)) {
7900  $array[$key] = $langs->trans($value);
7901  } else {
7902  $array[$key]['label'] = $langs->trans($value['label']);
7903  }
7904  }
7905  }
7906 
7907  // Sort
7908  if ($sort == 'ASC') {
7909  asort($array);
7910  } elseif ($sort == 'DESC') {
7911  arsort($array);
7912  }
7913 
7914  foreach ($array as $key => $tmpvalue) {
7915  if (is_array($tmpvalue)) {
7916  $value = $tmpvalue['label'];
7917  $disabled = empty($tmpvalue['disabled']) ? '' : ' disabled';
7918  $style = empty($tmpvalue['css']) ? '' : ' class="'.$tmpvalue['css'].'"';
7919  } else {
7920  $value = $tmpvalue;
7921  $disabled = '';
7922  $style = '';
7923  }
7924  if (!empty($disablebademail)) {
7925  if (($disablebademail == 1 && !preg_match('/&lt;.+@.+&gt;/', $value))
7926  || ($disablebademail == 2 && preg_match('/---/', $value))) {
7927  $disabled = ' disabled';
7928  $style = ' class="warning"';
7929  }
7930  }
7931 
7932  if ($key_in_label) {
7933  if (empty($nohtmlescape)) {
7934  $selectOptionValue = dol_escape_htmltag($key.' - '.($maxlen ?dol_trunc($value, $maxlen) : $value));
7935  } else {
7936  $selectOptionValue = $key.' - '.($maxlen ?dol_trunc($value, $maxlen) : $value);
7937  }
7938  } else {
7939  if (empty($nohtmlescape)) {
7940  $selectOptionValue = dol_escape_htmltag($maxlen ?dol_trunc($value, $maxlen) : $value);
7941  } else {
7942  $selectOptionValue = $maxlen ?dol_trunc($value, $maxlen) : $value;
7943  }
7944  if ($value == '' || $value == '-') {
7945  $selectOptionValue = '&nbsp;';
7946  }
7947  }
7948 
7949  $out .= '<option value="'.$key.'"';
7950  $out .= $style.$disabled;
7951  if (is_array($id)) {
7952  if (in_array($key, $id) && !$disabled) {
7953  $out .= ' selected'; // To preselect a value
7954  }
7955  } else {
7956  $id = (string) $id; // if $id = 0, then $id = '0'
7957  if ($id != '' && ($id == $key || ($id == 'ifone' && count($array) == 1)) && !$disabled) {
7958  $out .= ' selected'; // To preselect a value
7959  }
7960  }
7961  if ($nohtmlescape) {
7962  $out .= ' data-html="'.dol_escape_htmltag($selectOptionValue).'"';
7963  }
7964  if (is_array($tmpvalue)) {
7965  foreach ($tmpvalue as $keyforvalue => $valueforvalue) {
7966  if (preg_match('/^data-/', $keyforvalue)) {
7967  $out .= ' '.$keyforvalue.'="'.$valueforvalue.'"';
7968  }
7969  }
7970  }
7971  $out .= '>';
7972  //var_dump($selectOptionValue);
7973  $out .= $selectOptionValue;
7974  $out .= "</option>\n";
7975  }
7976  }
7977 
7978  $out .= "</select>";
7979 
7980  // Add code for jquery to use multiselect
7981  if ($addjscombo && $jsbeautify) {
7982  // Enhance with select2
7983  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
7984  $out .= ajax_combobox($htmlname, array(), 0, 0, 'resolve', $show_empty < 0 ? (string) $show_empty : '-1');
7985  }
7986 
7987  return $out;
7988  }
7989 
7990 
8009  public static function selectArrayAjax($htmlname, $url, $id = '', $moreparam = '', $moreparamtourl = '', $disabled = 0, $minimumInputLength = 1, $morecss = '', $callurlonselect = 0, $placeholder = '', $acceptdelayedhtml = 0)
8010  {
8011  global $conf, $langs;
8012  global $delayedhtmlcontent; // Will be used later outside of this function
8013 
8014  // TODO Use an internal dolibarr component instead of select2
8015  if (empty($conf->global->MAIN_USE_JQUERY_MULTISELECT) && !defined('REQUIRE_JQUERY_MULTISELECT')) {
8016  return '';
8017  }
8018 
8019  $out = '<select type="text" class="'.$htmlname.($morecss ? ' '.$morecss : '').'" '.($moreparam ? $moreparam.' ' : '').'name="'.$htmlname.'"></select>';
8020 
8021  $outdelayed = '';
8022  if (!empty($conf->use_javascript_ajax)) {
8023  $tmpplugin = 'select2';
8024  $outdelayed = "\n".'<!-- JS CODE TO ENABLE '.$tmpplugin.' for id '.$htmlname.' -->
8025  <script>
8026  $(document).ready(function () {
8027 
8028  '.($callurlonselect ? 'var saveRemoteData = [];' : '').'
8029 
8030  $(".'.$htmlname.'").select2({
8031  ajax: {
8032  dir: "ltr",
8033  url: "'.$url.'",
8034  dataType: \'json\',
8035  delay: 250,
8036  data: function (params) {
8037  return {
8038  q: params.term, // search term
8039  page: params.page
8040  };
8041  },
8042  processResults: function (data) {
8043  // parse the results into the format expected by Select2.
8044  // since we are using custom formatting functions we do not need to alter the remote JSON data
8045  //console.log(data);
8046  saveRemoteData = data;
8047  /* format json result for select2 */
8048  result = []
8049  $.each( data, function( key, value ) {
8050  result.push({id: key, text: value.text});
8051  });
8052  //return {results:[{id:\'none\', text:\'aa\'}, {id:\'rrr\', text:\'Red\'},{id:\'bbb\', text:\'Search a into projects\'}], more:false}
8053  //console.log(result);
8054  return {results: result, more: false}
8055  },
8056  cache: true
8057  },
8058  language: select2arrayoflanguage,
8059  containerCssClass: \':all:\', /* Line to add class of origin SELECT propagated to the new <span class="select2-selection...> tag */
8060  placeholder: "'.dol_escape_js($placeholder).'",
8061  escapeMarkup: function (markup) { return markup; }, // let our custom formatter work
8062  minimumInputLength: '.$minimumInputLength.',
8063  formatResult: function(result, container, query, escapeMarkup) {
8064  return escapeMarkup(result.text);
8065  },
8066  });
8067 
8068  '.($callurlonselect ? '
8069  /* Code to execute a GET when we select a value */
8070  $(".'.$htmlname.'").change(function() {
8071  var selected = $(".'.$htmlname.'").val();
8072  console.log("We select in selectArrayAjax the entry "+selected)
8073  $(".'.$htmlname.'").val(""); /* reset visible combo value */
8074  $.each( saveRemoteData, function( key, value ) {
8075  if (key == selected)
8076  {
8077  console.log("selectArrayAjax - Do a redirect to "+value.url)
8078  location.assign(value.url);
8079  }
8080  });
8081  });' : '').'
8082 
8083  });
8084  </script>';
8085  }
8086 
8087  if ($acceptdelayedhtml) {
8088  $delayedhtmlcontent .= $outdelayed;
8089  } else {
8090  $out .= $outdelayed;
8091  }
8092  return $out;
8093  }
8094 
8113  public static function selectArrayFilter($htmlname, $array, $id = '', $moreparam = '', $disableFiltering = 0, $disabled = 0, $minimumInputLength = 1, $morecss = '', $callurlonselect = 0, $placeholder = '', $acceptdelayedhtml = 0)
8114  {
8115  global $conf, $langs;
8116  global $delayedhtmlcontent; // Will be used later outside of this function
8117 
8118  // TODO Use an internal dolibarr component instead of select2
8119  if (empty($conf->global->MAIN_USE_JQUERY_MULTISELECT) && !defined('REQUIRE_JQUERY_MULTISELECT')) {
8120  return '';
8121  }
8122 
8123  $out = '<select type="text" class="'.$htmlname.($morecss ? ' '.$morecss : '').'" '.($moreparam ? $moreparam.' ' : '').'name="'.$htmlname.'"><option></option></select>';
8124 
8125  $formattedarrayresult = array();
8126 
8127  foreach ($array as $key => $value) {
8128  $o = new stdClass();
8129  $o->id = $key;
8130  $o->text = $value['text'];
8131  $o->url = $value['url'];
8132  $formattedarrayresult[] = $o;
8133  }
8134 
8135  $outdelayed = '';
8136  if (!empty($conf->use_javascript_ajax)) {
8137  $tmpplugin = 'select2';
8138  $outdelayed = "\n".'<!-- JS CODE TO ENABLE '.$tmpplugin.' for id '.$htmlname.' -->
8139  <script>
8140  $(document).ready(function () {
8141  var data = '.json_encode($formattedarrayresult).';
8142 
8143  '.($callurlonselect ? 'var saveRemoteData = '.json_encode($array).';' : '').'
8144 
8145  $(".'.$htmlname.'").select2({
8146  data: data,
8147  language: select2arrayoflanguage,
8148  containerCssClass: \':all:\', /* Line to add class of origin SELECT propagated to the new <span class="select2-selection...> tag */
8149  placeholder: "'.dol_escape_js($placeholder).'",
8150  escapeMarkup: function (markup) { return markup; }, // let our custom formatter work
8151  minimumInputLength: '.$minimumInputLength.',
8152  formatResult: function(result, container, query, escapeMarkup) {
8153  return escapeMarkup(result.text);
8154  },
8155  matcher: function (params, data) {
8156 
8157  if(! data.id) return null;';
8158 
8159  if ($callurlonselect) {
8160  $outdelayed .= '
8161 
8162  var urlBase = data.url;
8163  var separ = urlBase.indexOf("?") >= 0 ? "&" : "?";
8164  /* console.log("params.term="+params.term); */
8165  /* console.log("params.term encoded="+encodeURIComponent(params.term)); */
8166  saveRemoteData[data.id].url = urlBase + separ + "sall=" + encodeURIComponent(params.term.replace(/\"/g, ""));';
8167  }
8168 
8169  if (!$disableFiltering) {
8170  $outdelayed .= '
8171 
8172  if(data.text.match(new RegExp(params.term))) {
8173  return data;
8174  }
8175 
8176  return null;';
8177  } else {
8178  $outdelayed .= '
8179 
8180  return data;';
8181  }
8182 
8183  $outdelayed .= '
8184  }
8185  });
8186 
8187  '.($callurlonselect ? '
8188  /* Code to execute a GET when we select a value */
8189  $(".'.$htmlname.'").change(function() {
8190  var selected = $(".'.$htmlname.'").val();
8191  console.log("We select "+selected)
8192 
8193  $(".'.$htmlname.'").val(""); /* reset visible combo value */
8194  $.each( saveRemoteData, function( key, value ) {
8195  if (key == selected)
8196  {
8197  console.log("selectArrayFilter - Do a redirect to "+value.url)
8198  location.assign(value.url);
8199  }
8200  });
8201  });' : '').'
8202 
8203  });
8204  </script>';
8205  }
8206 
8207  if ($acceptdelayedhtml) {
8208  $delayedhtmlcontent .= $outdelayed;
8209  } else {
8210  $out .= $outdelayed;
8211  }
8212  return $out;
8213  }
8214 
8233  public static function multiselectarray($htmlname, $array, $selected = array(), $key_in_label = 0, $value_as_key = 0, $morecss = '', $translate = 0, $width = 0, $moreattrib = '', $elemtype = '', $placeholder = '', $addjscombo = -1)
8234  {
8235  global $conf, $langs;
8236 
8237  $out = '';
8238 
8239  if ($addjscombo < 0) {
8240  if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
8241  $addjscombo = 1;
8242  } else {
8243  $addjscombo = 0;
8244  }
8245  }
8246 
8247  // Try also magic suggest
8248  $out .= '<select id="'.$htmlname.'" class="multiselect'.($morecss ? ' '.$morecss : '').'" multiple name="'.$htmlname.'[]"'.($moreattrib ? ' '.$moreattrib : '').($width ? ' style="width: '.(preg_match('/%/', $width) ? $width : $width.'px').'"' : '').'>'."\n";
8249  if (is_array($array) && !empty($array)) {
8250  if ($value_as_key) {
8251  $array = array_combine($array, $array);
8252  }
8253 
8254  if (!empty($array)) {
8255  foreach ($array as $key => $value) {
8256  $newval = ($translate ? $langs->trans($value) : $value);
8257  $newval = ($key_in_label ? $key.' - '.$newval : $newval);
8258 
8259  $out .= '<option value="'.$key.'"';
8260  if (is_array($selected) && !empty($selected) && in_array((string) $key, $selected) && ((string) $key != '')) {
8261  $out .= ' selected';
8262  }
8263  $out .= ' data-html="'.dol_escape_htmltag($newval).'"';
8264  $out .= '>';
8265  $out .= dol_htmlentitiesbr($newval);
8266  $out .= '</option>'."\n";
8267  }
8268  }
8269  }
8270  $out .= '</select>'."\n";
8271 
8272  // Add code for jquery to use multiselect
8273  if (!empty($conf->use_javascript_ajax) && !empty($conf->global->MAIN_USE_JQUERY_MULTISELECT) || defined('REQUIRE_JQUERY_MULTISELECT')) {
8274  $out .= "\n".'<!-- JS CODE TO ENABLE select for id '.$htmlname.', addjscombo='.$addjscombo.' -->';
8275  $out .= "\n".'<script>'."\n";
8276  if ($addjscombo == 1) {
8277  $tmpplugin = empty($conf->global->MAIN_USE_JQUERY_MULTISELECT) ?constant('REQUIRE_JQUERY_MULTISELECT') : $conf->global->MAIN_USE_JQUERY_MULTISELECT;
8278  $out .= 'function formatResult(record, container) {'."\n";
8279  $out .= ' if ($(record.element).attr("data-html") != undefined) return htmlEntityDecodeJs($(record.element).attr("data-html")); // If property html set, we decode html entities and use this'."\n";
8280  $out .= ' return record.text;';
8281  $out .= '};'."\n";
8282  $out .= 'function formatSelection(record) {'."\n";
8283  if ($elemtype == 'category') {
8284  $out .= 'return \'<span><img src="'.DOL_URL_ROOT.'/theme/eldy/img/object_category.png"> \'+record.text+\'</span>\';';
8285  } else {
8286  $out .= 'return record.text;';
8287  }
8288  $out .= '};'."\n";
8289  $out .= '$(document).ready(function () {
8290  $(\'#'.$htmlname.'\').'.$tmpplugin.'({';
8291  if ($placeholder) {
8292  $out .= '
8293  placeholder: {
8294  id: \'-1\',
8295  text: \''.dol_escape_js($placeholder).'\'
8296  },';
8297  }
8298  $out .= ' dir: \'ltr\',
8299  // Specify format function for dropdown item
8300  formatResult: formatResult,
8301  templateResult: formatResult, /* For 4.0 */
8302  escapeMarkup: function (markup) { return markup; }, // let our custom formatter work
8303  // Specify format function for selected item
8304  formatSelection: formatSelection,
8305  templateSelection: formatSelection /* For 4.0 */
8306  });
8307 
8308  /* Add also morecss to the css .select2 that is after the #htmlname, for component that are show dynamically after load, because select2 set
8309  the size only if component is not hidden by default on load */
8310  $(\'#'.$htmlname.' + .select2\').addClass(\''.$morecss.'\');
8311  });'."\n";
8312  } elseif ($addjscombo == 2 && !defined('DISABLE_MULTISELECT')) {
8313  // Add other js lib
8314  // TODO external lib multiselect/jquery.multi-select.js must have been loaded to use this multiselect plugin
8315  // ...
8316  $out .= 'console.log(\'addjscombo=2 for htmlname='.$htmlname.'\');';
8317  $out .= '$(document).ready(function () {
8318  $(\'#'.$htmlname.'\').multiSelect({
8319  containerHTML: \'<div class="multi-select-container">\',
8320  menuHTML: \'<div class="multi-select-menu">\',
8321  buttonHTML: \'<span class="multi-select-button '.$morecss.'">\',
8322  menuItemHTML: \'<label class="multi-select-menuitem">\',
8323  activeClass: \'multi-select-container--open\',
8324  noneText: \''.$placeholder.'\'
8325  });
8326  })';
8327  }
8328  $out .= '</script>';
8329  }
8330 
8331  return $out;
8332  }
8333 
8334 
8345  public static function multiSelectArrayWithCheckbox($htmlname, &$array, $varpage, $pos = '')
8346  {
8347  global $conf, $langs, $user, $extrafields;
8348 
8349  if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
8350  return '';
8351  }
8352 
8353  $tmpvar = "MAIN_SELECTEDFIELDS_".$varpage; // To get list of saved selected fields to show
8354 
8355  if (!empty($user->conf->$tmpvar)) { // A list of fields was already customized for user
8356  $tmparray = explode(',', $user->conf->$tmpvar);
8357  foreach ($array as $key => $val) {
8358  //var_dump($key);
8359  //var_dump($tmparray);
8360  if (in_array($key, $tmparray)) {
8361  $array[$key]['checked'] = 1;
8362  } else {
8363  $array[$key]['checked'] = 0;
8364  }
8365  }
8366  } else { // There is no list of fields already customized for user
8367  foreach ($array as $key => $val) {
8368  if (!empty($array[$key]['checked']) && $array[$key]['checked'] < 0) {
8369  $array[$key]['checked'] = 0;
8370  }
8371  }
8372  }
8373 
8374  $listoffieldsforselection = '';
8375  $listcheckedstring = '';
8376 
8377  foreach ($array as $key => $val) {
8378  // var_dump($val);
8379  // var_dump(array_key_exists('enabled', $val));
8380  // var_dump(!$val['enabled']);
8381  if (array_key_exists('enabled', $val) && isset($val['enabled']) && !$val['enabled']) {
8382  unset($array[$key]); // We don't want this field
8383  continue;
8384  }
8385  if (!empty($val['type']) && $val['type'] == 'separate') {
8386  // Field remains in array but we don't add it into $listoffieldsforselection
8387  //$listoffieldsforselection .= '<li>-----</li>';
8388  continue;
8389  }
8390  if ($val['label']) {
8391  if (!empty($val['langfile']) && is_object($langs)) {
8392  $langs->load($val['langfile']);
8393  }
8394 
8395  // Note: $val['checked'] <> 0 means we must show the field into the combo list
8396  $listoffieldsforselection .= '<li><input type="checkbox" id="checkbox'.$key.'" value="'.$key.'"'.((empty($val['checked']) || $val['checked'] == '-1') ? '' : ' checked="checked"').'/><label for="checkbox'.$key.'">'.dol_escape_htmltag($langs->trans($val['label'])).'</label></li>';
8397  $listcheckedstring .= (empty($val['checked']) ? '' : $key.',');
8398  }
8399  }
8400 
8401  $out = '<!-- Component multiSelectArrayWithCheckbox '.$htmlname.' -->
8402 
8403  <dl class="dropdown">
8404  <dt>
8405  <a href="#'.$htmlname.'">
8406  '.img_picto('', 'list').'
8407  </a>
8408  <input type="hidden" class="'.$htmlname.'" name="'.$htmlname.'" value="'.$listcheckedstring.'">
8409  </dt>
8410  <dd class="dropdowndd">
8411  <div class="multiselectcheckbox'.$htmlname.'">
8412  <ul class="ul'.$htmlname.' '.$htmlname.$pos.'">
8413  '.$listoffieldsforselection.'
8414  </ul>
8415  </div>
8416  </dd>
8417  </dl>
8418 
8419  <script type="text/javascript">
8420  jQuery(document).ready(function () {
8421  $(\'.multiselectcheckbox'.$htmlname.' input[type="checkbox"]\').on(\'click\', function () {
8422  console.log("A new field was added/removed, we edit field input[name=formfilteraction]");
8423 
8424  $("input:hidden[name=formfilteraction]").val(\'listafterchangingselectedfields\'); // Update field so we know we changed something on selected fields after POST
8425 
8426  var title = $(this).val() + ",";
8427  if ($(this).is(\':checked\')) {
8428  $(\'.'.$htmlname.'\').val(title + $(\'.'.$htmlname.'\').val());
8429  }
8430  else {
8431  $(\'.'.$htmlname.'\').val( $(\'.'.$htmlname.'\').val().replace(title, \'\') )
8432  }
8433  // Now, we submit page
8434  //$(this).parents(\'form:first\').submit();
8435  });
8436 
8437 
8438  });
8439  </script>
8440 
8441  ';
8442  return $out;
8443  }
8444 
8454  public function showCategories($id, $type, $rendermode = 0, $nolink = 0)
8455  {
8456  include_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
8457 
8458  $cat = new Categorie($this->db);
8459  $categories = $cat->containing($id, $type);
8460 
8461  if ($rendermode == 1) {
8462  $toprint = array();
8463  foreach ($categories as $c) {
8464  $ways = $c->print_all_ways(' &gt;&gt; ', ($nolink ? 'none' : ''), 0, 1); // $ways[0] = "ccc2 >> ccc2a >> ccc2a1" with html formated text
8465  foreach ($ways as $way) {
8466  $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories"'.($c->color ? ' style="background: #'.$c->color.';"' : ' style="background: #bbb"').'>'.$way.'</li>';
8467  }
8468  }
8469  return '<div class="select2-container-multi-dolibarr"><ul class="select2-choices-dolibarr">'.implode(' ', $toprint).'</ul></div>';
8470  }
8471 
8472  if ($rendermode == 0) {
8473  $arrayselected = array();
8474  $cate_arbo = $this->select_all_categories($type, '', 'parent', 64, 0, 1);
8475  foreach ($categories as $c) {
8476  $arrayselected[] = $c->id;
8477  }
8478 
8479  return $this->multiselectarray('categories', $cate_arbo, $arrayselected, '', 0, '', 0, '100%', 'disabled', 'category');
8480  }
8481 
8482  return 'ErrorBadValueForParameterRenderMode'; // Should not happened
8483  }
8484 
8494  public function showLinkedObjectBlock($object, $morehtmlright = '', $compatibleImportElementsList = false, $title = 'RelatedObjects')
8495  {
8496  global $conf, $langs, $hookmanager;
8497  global $bc, $action;
8498 
8499  $object->fetchObjectLinked();
8500 
8501  // Bypass the default method
8502  $hookmanager->initHooks(array('commonobject'));
8503  $parameters = array(
8504  'morehtmlright' => $morehtmlright,
8505  'compatibleImportElementsList' => &$compatibleImportElementsList,
8506  );
8507  $reshook = $hookmanager->executeHooks('showLinkedObjectBlock', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
8508 
8509  if (empty($reshook)) {
8510  $nbofdifferenttypes = count($object->linkedObjects);
8511 
8512  print '<!-- showLinkedObjectBlock -->';
8513  print load_fiche_titre($langs->trans($title), $morehtmlright, '', 0, 0, 'showlinkedobjectblock');
8514 
8515 
8516  print '<div class="div-table-responsive-no-min">';
8517  print '<table class="noborder allwidth" data-block="showLinkedObject" data-element="'.$object->element.'" data-elementid="'.$object->id.'" >';
8518 
8519  print '<tr class="liste_titre">';
8520  print '<td>'.$langs->trans("Type").'</td>';
8521  print '<td>'.$langs->trans("Ref").'</td>';
8522  print '<td class="center"></td>';
8523  print '<td class="center">'.$langs->trans("Date").'</td>';
8524  print '<td class="right">'.$langs->trans("AmountHTShort").'</td>';
8525  print '<td class="right">'.$langs->trans("Status").'</td>';
8526  print '<td></td>';
8527  print '</tr>';
8528 
8529  $nboftypesoutput = 0;
8530 
8531  foreach ($object->linkedObjects as $objecttype => $objects) {
8532  $tplpath = $element = $subelement = $objecttype;
8533 
8534  // to display inport button on tpl
8535  $showImportButton = false;
8536  if (!empty($compatibleImportElementsList) && in_array($element, $compatibleImportElementsList)) {
8537  $showImportButton = true;
8538  }
8539 
8540  $regs = array();
8541  if ($objecttype != 'supplier_proposal' && preg_match('/^([^_]+)_([^_]+)/i', $objecttype, $regs)) {
8542  $element = $regs[1];
8543  $subelement = $regs[2];
8544  $tplpath = $element.'/'.$subelement;
8545  }
8546  $tplname = 'linkedobjectblock';
8547 
8548  // To work with non standard path
8549  if ($objecttype == 'facture') {
8550  $tplpath = 'compta/'.$element;
8551  if (!isModEnabled('facture')) {
8552  continue; // Do not show if module disabled
8553  }
8554  } elseif ($objecttype == 'facturerec') {
8555  $tplpath = 'compta/facture';
8556  $tplname = 'linkedobjectblockForRec';
8557  if (!isModEnabled('facture')) {
8558  continue; // Do not show if module disabled
8559  }
8560  } elseif ($objecttype == 'propal') {
8561  $tplpath = 'comm/'.$element;
8562  if (empty($conf->propal->enabled)) {
8563  continue; // Do not show if module disabled
8564  }
8565  } elseif ($objecttype == 'supplier_proposal') {
8566  if (empty($conf->supplier_proposal->enabled)) {
8567  continue; // Do not show if module disabled
8568  }
8569  } elseif ($objecttype == 'shipping' || $objecttype == 'shipment') {
8570  $tplpath = 'expedition';
8571  if (empty($conf->expedition->enabled)) {
8572  continue; // Do not show if module disabled
8573  }
8574  } elseif ($objecttype == 'reception') {
8575  $tplpath = 'reception';
8576  if (empty($conf->reception->enabled)) {
8577  continue; // Do not show if module disabled
8578  }
8579  } elseif ($objecttype == 'delivery') {
8580  $tplpath = 'delivery';
8581  if (empty($conf->expedition->enabled)) {
8582  continue; // Do not show if module disabled
8583  }
8584  } elseif ($objecttype == 'ficheinter') {
8585  $tplpath = 'fichinter';
8586  if (empty($conf->ficheinter->enabled)) {
8587  continue; // Do not show if module disabled
8588  }
8589  } elseif ($objecttype == 'invoice_supplier') {
8590  $tplpath = 'fourn/facture';
8591  } elseif ($objecttype == 'order_supplier') {
8592  $tplpath = 'fourn/commande';
8593  } elseif ($objecttype == 'expensereport') {
8594  $tplpath = 'expensereport';
8595  } elseif ($objecttype == 'subscription') {
8596  $tplpath = 'adherents';
8597  } elseif ($objecttype == 'conferenceorbooth') {
8598  $tplpath = 'eventorganization';
8599  } elseif ($objecttype == 'conferenceorboothattendee') {
8600  $tplpath = 'eventorganization';
8601  } elseif ($objecttype == 'mo') {
8602  $tplpath = 'mrp';
8603  if (empty($conf->mrp->enabled)) {
8604  continue; // Do not show if module disabled
8605  }
8606  }
8607 
8608  global $linkedObjectBlock;
8609  $linkedObjectBlock = $objects;
8610 
8611  // Output template part (modules that overwrite templates must declare this into descriptor)
8612  $dirtpls = array_merge($conf->modules_parts['tpl'], array('/'.$tplpath.'/tpl'));
8613  foreach ($dirtpls as $reldir) {
8614  if ($nboftypesoutput == ($nbofdifferenttypes - 1)) { // No more type to show after
8615  global $noMoreLinkedObjectBlockAfter;
8616  $noMoreLinkedObjectBlockAfter = 1;
8617  }
8618 
8619  $res = @include dol_buildpath($reldir.'/'.$tplname.'.tpl.php');
8620  if ($res) {
8621  $nboftypesoutput++;
8622  break;
8623  }
8624  }
8625  }
8626 
8627  if (!$nboftypesoutput) {
8628  print '<tr><td class="impair" colspan="7"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
8629  }
8630 
8631  print '</table>';
8632 
8633  if (!empty($compatibleImportElementsList)) {
8634  $res = @include dol_buildpath('core/tpl/ajax/objectlinked_lineimport.tpl.php');
8635  }
8636 
8637 
8638  print '</div>';
8639 
8640  return $nbofdifferenttypes;
8641  }
8642  }
8643 
8652  public function showLinkToObjectBlock($object, $restrictlinksto = array(), $excludelinksto = array())
8653  {
8654  global $conf, $langs, $hookmanager;
8655  global $action;
8656 
8657  $linktoelem = '';
8658  $linktoelemlist = '';
8659  $listofidcompanytoscan = '';
8660 
8661  if (!is_object($object->thirdparty)) {
8662  $object->fetch_thirdparty();
8663  }
8664 
8665  $possiblelinks = array();
8666  if (is_object($object->thirdparty) && !empty($object->thirdparty->id) && $object->thirdparty->id > 0) {
8667  $listofidcompanytoscan = $object->thirdparty->id;
8668  if (($object->thirdparty->parent > 0) && !empty($conf->global->THIRDPARTY_INCLUDE_PARENT_IN_LINKTO)) {
8669  $listofidcompanytoscan .= ','.$object->thirdparty->parent;
8670  }
8671  if (($object->fk_project > 0) && !empty($conf->global->THIRDPARTY_INCLUDE_PROJECT_THIRDPARY_IN_LINKTO)) {
8672  include_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
8673  $tmpproject = new Project($this->db);
8674  $tmpproject->fetch($object->fk_project);
8675  if ($tmpproject->socid > 0 && ($tmpproject->socid != $object->thirdparty->id)) {
8676  $listofidcompanytoscan .= ','.$tmpproject->socid;
8677  }
8678  unset($tmpproject);
8679  }
8680 
8681  $possiblelinks = array(
8682  'propal'=>array(
8683  'enabled'=>(!empty($conf->propal->enabled) ? $conf->propal->enabled : 0),
8684  'perms'=>1,
8685  'label'=>'LinkToProposal',
8686  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_client, t.total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."propal as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('propal').')'),
8687  'order'=>array(
8688  'enabled'=>(!empty($conf->commande->enabled) ? $conf->commande->enabled : 0),
8689  'perms'=>1,
8690  'label'=>'LinkToOrder',
8691  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_client, t.total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."commande as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('commande').')'),
8692  'invoice'=>array(
8693  'enabled'=>isModEnabled('facture'),
8694  'perms'=>1,
8695  'label'=>'LinkToInvoice',
8696  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_client, t.total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."facture as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('invoice').')'),
8697  'invoice_template'=>array(
8698  'enabled'=>isModEnabled('facture'),
8699  'perms'=>1,
8700  'label'=>'LinkToTemplateInvoice',
8701  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.titre as ref, t.total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."facture_rec as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('invoice').')'),
8702  'contrat'=>array(
8703  'enabled'=>(!empty($conf->contrat->enabled) ? $conf->contrat->enabled : 0),
8704  'perms'=>1,
8705  'label'=>'LinkToContract',
8706  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_customer as ref_client, t.ref_supplier, SUM(td.total_ht) as total_ht
8707  FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."contrat as t, ".$this->db->prefix()."contratdet as td WHERE t.fk_soc = s.rowid AND td.fk_contrat = t.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('contract').') GROUP BY s.rowid, s.nom, s.client, t.rowid, t.ref, t.ref_customer, t.ref_supplier'
8708  ),
8709  'fichinter'=>array(
8710  'enabled'=>(!empty($conf->ficheinter->enabled) ? $conf->ficheinter->enabled : 0),
8711  'perms'=>1,
8712  'label'=>'LinkToIntervention',
8713  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."fichinter as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('intervention').')'),
8714  'supplier_proposal'=>array(
8715  'enabled'=>(!empty($conf->supplier_proposal->enabled) ? $conf->supplier_proposal->enabled : 0),
8716  'perms'=>1,
8717  'label'=>'LinkToSupplierProposal',
8718  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, '' as ref_supplier, t.total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."supplier_proposal as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('supplier_proposal').')'),
8719  'order_supplier'=>array(
8720  'enabled'=>(!empty($conf->supplier_order->enabled) ? $conf->supplier_order->enabled : 0),
8721  'perms'=>1,
8722  'label'=>'LinkToSupplierOrder',
8723  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_supplier, t.total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."commande_fournisseur as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('commande_fournisseur').')'),
8724  'invoice_supplier'=>array(
8725  'enabled'=>(!empty($conf->supplier_invoice->enabled) ? $conf->supplier_invoice->enabled : 0),
8726  'perms'=>1, 'label'=>'LinkToSupplierInvoice',
8727  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_supplier, t.total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."facture_fourn as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('facture_fourn').')'),
8728  'ticket'=>array(
8729  'enabled'=>(!empty($conf->ticket->enabled) ? $conf->ticket->enabled : 0),
8730  'perms'=>1,
8731  'label'=>'LinkToTicket',
8732  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.track_id, '0' as total_ht FROM ".$this->db->prefix()."societe as s, ".$this->db->prefix()."ticket as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('ticket').')'),
8733  'mo'=>array(
8734  'enabled'=>(!empty($conf->mrp->enabled) ? $conf->mrp->enabled : 0),
8735  'perms'=>1,
8736  'label'=>'LinkToMo',
8737  'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.rowid, '0' as total_ht FROM ".$this->db->prefix()."societe as s INNER JOIN ".$this->db->prefix()."mrp_mo as t ON t.fk_soc = s.rowid WHERE t.fk_soc IN (".$this->db->sanitize($listofidcompanytoscan).') AND t.entity IN ('.getEntity('mo').')')
8738  );
8739  }
8740 
8741  if (!empty($listofidcompanytoscan)) { // If empty, we don't have criteria to scan the object we can link to
8742  // Can complete the possiblelink array
8743  $hookmanager->initHooks(array('commonobject'));
8744  $parameters = array('listofidcompanytoscan' => $listofidcompanytoscan, 'possiblelinks' => $possiblelinks);
8745  $reshook = $hookmanager->executeHooks('showLinkToObjectBlock', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
8746  }
8747 
8748  if (empty($reshook)) {
8749  if (is_array($hookmanager->resArray) && count($hookmanager->resArray)) {
8750  $possiblelinks = array_merge($possiblelinks, $hookmanager->resArray);
8751  }
8752  } elseif ($reshook > 0) {
8753  if (is_array($hookmanager->resArray) && count($hookmanager->resArray)) {
8754  $possiblelinks = $hookmanager->resArray;
8755  }
8756  }
8757 
8758  foreach ($possiblelinks as $key => $possiblelink) {
8759  $num = 0;
8760 
8761  if (empty($possiblelink['enabled'])) {
8762  continue;
8763  }
8764 
8765  if (!empty($possiblelink['perms']) && (empty($restrictlinksto) || in_array($key, $restrictlinksto)) && (empty($excludelinksto) || !in_array($key, $excludelinksto))) {
8766  print '<div id="'.$key.'list"'.(empty($conf->use_javascript_ajax) ? '' : ' style="display:none"').'>';
8767 
8768  if (!empty($conf->global->MAIN_LINK_BY_REF_IN_LINKTO)) {
8769  print '<br><form action="' . $_SERVER["PHP_SELF"] . '" method="POST" name="formlinkedbyref' . $key . '">';
8770  print '<input type="hidden" name="id" value="' . $object->id . '">';
8771  print '<input type="hidden" name="action" value="addlinkbyref">';
8772  print '<input type="hidden" name="token" value="'.newToken().'">';
8773  print '<input type="hidden" name="addlink" value="' . $key . '">';
8774  print '<table class="noborder">';
8775  print '<tr>';
8776  print '<td>' . $langs->trans("Ref") . '</td>';
8777  print '<td><input type="text" name="reftolinkto" value="' . dol_escape_htmltag(GETPOST('reftolinkto', 'alpha')) . '">&nbsp;<input type="submit" class="button valignmiddle" value="' . $langs->trans('ToLink') . '">&nbsp;<input type="submit" class="button" name="cancel" value="' . $langs->trans('Cancel') . '"></td>';
8778  print '</tr>';
8779  print '</table>';
8780  print '</form>';
8781  }
8782 
8783  $sql = $possiblelink['sql'];
8784 
8785  $resqllist = $this->db->query($sql);
8786  if ($resqllist) {
8787  $num = $this->db->num_rows($resqllist);
8788  $i = 0;
8789 
8790  print '<br>';
8791  print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" name="formlinked'.$key.'">';
8792  print '<input type="hidden" name="action" value="addlink">';
8793  print '<input type="hidden" name="token" value="'.newToken().'">';
8794  print '<input type="hidden" name="id" value="'.$object->id.'">';
8795  print '<input type="hidden" name="addlink" value="'.$key.'">';
8796  print '<table class="noborder">';
8797  print '<tr class="liste_titre">';
8798  print '<td class="nowrap"></td>';
8799  print '<td class="center">'.$langs->trans("Ref").'</td>';
8800  print '<td class="left">'.$langs->trans("RefCustomer").'</td>';
8801  print '<td class="right">'.$langs->trans("AmountHTShort").'</td>';
8802  print '<td class="left">'.$langs->trans("Company").'</td>';
8803  print '</tr>';
8804  while ($i < $num) {
8805  $objp = $this->db->fetch_object($resqllist);
8806 
8807  print '<tr class="oddeven">';
8808  print '<td class="left">';
8809  print '<input type="radio" name="idtolinkto" id="'.$key.'_'.$objp->rowid.'" value="'.$objp->rowid.'">';
8810  print '</td>';
8811  print '<td class="center"><label for="'.$key.'_'.$objp->rowid.'">'.$objp->ref.'</label></td>';
8812  print '<td>'.(!empty($objp->ref_client) ? $objp->ref_client : (!empty($objp->ref_supplier) ? $objp->ref_supplier : '')).'</td>';
8813  print '<td class="right">';
8814  if ($possiblelink['label'] == 'LinkToContract') {
8815  $form = new Form($this->db);
8816  print $form->textwithpicto('', $langs->trans("InformationOnLinkToContract")).' ';
8817  }
8818  print '<span class="amount">'.price($objp->total_ht).'</span>';
8819  print '</td>';
8820  print '<td>'.$objp->name.'</td>';
8821  print '</tr>';
8822  $i++;
8823  }
8824  print '</table>';
8825  print '<div class="center">';
8826  print '<input type="submit" class="button valignmiddle marginleftonly marginrightonly" value="'.$langs->trans('ToLink').'">';
8827  if (empty($conf->use_javascript_ajax)) {
8828  print '<input type="submit" class="button button-cancel marginleftonly marginrightonly" name="cancel" value="'.$langs->trans("Cancel").'"></div>';
8829  } else {
8830  print '<input type="submit"; onclick="javascript:jQuery(\'#'.$key.'list\').toggle(); return false;" class="button button-cancel marginleftonly marginrightonly" name="cancel" value="'.$langs->trans("Cancel").'"></div>';
8831  }
8832  print '</form>';
8833  $this->db->free($resqllist);
8834  } else {
8835  dol_print_error($this->db);
8836  }
8837  print '</div>';
8838 
8839  //$linktoelem.=($linktoelem?' &nbsp; ':'');
8840  if ($num > 0 || !empty($conf->global->MAIN_LINK_BY_REF_IN_LINKTO)) {
8841  $linktoelemlist .= '<li><a href="#linkto'.$key.'" class="linkto dropdowncloseonclick" rel="'.$key.'">'.$langs->trans($possiblelink['label']).' ('.$num.')</a></li>';
8842  // } else $linktoelem.=$langs->trans($possiblelink['label']);
8843  } else {
8844  $linktoelemlist .= '<li><span class="linktodisabled">'.$langs->trans($possiblelink['label']).' (0)</span></li>';
8845  }
8846  }
8847  }
8848 
8849  if ($linktoelemlist) {
8850  $linktoelem = '
8851  <dl class="dropdown" id="linktoobjectname">
8852  ';
8853  if (!empty($conf->use_javascript_ajax)) {
8854  $linktoelem .= '<dt><a href="#linktoobjectname"><span class="fas fa-link paddingrightonly"></span>'.$langs->trans("LinkTo").'...</a></dt>';
8855  }
8856  $linktoelem .= '<dd>
8857  <div class="multiselectlinkto">
8858  <ul class="ulselectedfields">'.$linktoelemlist.'
8859  </ul>
8860  </div>
8861  </dd>
8862  </dl>';
8863  } else {
8864  $linktoelem = '';
8865  }
8866 
8867  if (!empty($conf->use_javascript_ajax)) {
8868  print '<!-- Add js to show linkto box -->
8869  <script>
8870  jQuery(document).ready(function() {
8871  jQuery(".linkto").click(function() {
8872  console.log("We choose to show/hide links for rel="+jQuery(this).attr(\'rel\')+" so #"+jQuery(this).attr(\'rel\')+"list");
8873  jQuery("#"+jQuery(this).attr(\'rel\')+"list").toggle();
8874  });
8875  });
8876  </script>
8877  ';
8878  }
8879 
8880  return $linktoelem;
8881  }
8882 
8897  public function selectyesno($htmlname, $value = '', $option = 0, $disabled = false, $useempty = 0, $addjscombo = 0, $morecss = '', $labelyes = 'Yes', $labelno = 'No')
8898  {
8899  global $langs;
8900 
8901  $yes = "yes";
8902  $no = "no";
8903  if ($option) {
8904  $yes = "1";
8905  $no = "0";
8906  }
8907 
8908 
8909  $disabled = ($disabled ? ' disabled' : '');
8910 
8911  $resultyesno = '<select class="flat width75'.($morecss ? ' '.$morecss : '').'" id="'.$htmlname.'" name="'.$htmlname.'"'.$disabled.'>'."\n";
8912  if ($useempty) {
8913  $resultyesno .= '<option value="-1"'.(($value < 0) ? ' selected' : '').'>&nbsp;</option>'."\n";
8914  }
8915  if (("$value" == 'yes') || ($value == 1)) {
8916  $resultyesno .= '<option value="'.$yes.'" selected>'.$langs->trans($labelyes).'</option>'."\n";
8917  $resultyesno .= '<option value="'.$no.'">'.$langs->trans($labelno).'</option>'."\n";
8918  } else {
8919  $selected = (($useempty && $value != '0' && $value != 'no') ? '' : ' selected');
8920  $resultyesno .= '<option value="'.$yes.'">'.$langs->trans($labelyes).'</option>'."\n";
8921  $resultyesno .= '<option value="'.$no.'"'.$selected.'>'.$langs->trans($labelno).'</option>'."\n";
8922  }
8923  $resultyesno .= '</select>'."\n";
8924 
8925  if ($addjscombo) {
8926  $resultyesno .= ajax_combobox($htmlname);
8927  }
8928 
8929  return $resultyesno;
8930  }
8931 
8932  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
8942  public function select_export_model($selected = '', $htmlname = 'exportmodelid', $type = '', $useempty = 0)
8943  {
8944  // phpcs:enable
8945  $sql = "SELECT rowid, label";
8946  $sql .= " FROM ".$this->db->prefix()."export_model";
8947  $sql .= " WHERE type = '".$this->db->escape($type)."'";
8948  $sql .= " ORDER BY rowid";
8949  $result = $this->db->query($sql);
8950  if ($result) {
8951  print '<select class="flat" id="select_'.$htmlname.'" name="'.$htmlname.'">';
8952  if ($useempty) {
8953  print '<option value="-1">&nbsp;</option>';
8954  }
8955 
8956  $num = $this->db->num_rows($result);
8957  $i = 0;
8958  while ($i < $num) {
8959  $obj = $this->db->fetch_object($result);
8960  if ($selected == $obj->rowid) {
8961  print '<option value="'.$obj->rowid.'" selected>';
8962  } else {
8963  print '<option value="'.$obj->rowid.'">';
8964  }
8965  print $obj->label;
8966  print '</option>';
8967  $i++;
8968  }
8969  print "</select>";
8970  } else {
8971  dol_print_error($this->db);
8972  }
8973  }
8974 
8993  public function showrefnav($object, $paramid, $morehtml = '', $shownav = 1, $fieldid = 'rowid', $fieldref = 'ref', $morehtmlref = '', $moreparam = '', $nodbprefix = 0, $morehtmlleft = '', $morehtmlstatus = '', $morehtmlright = '')
8994  {
8995  global $conf, $langs, $hookmanager, $extralanguages;
8996 
8997  $ret = '';
8998  if (empty($fieldid)) {
8999  $fieldid = 'rowid';
9000  }
9001  if (empty($fieldref)) {
9002  $fieldref = 'ref';
9003  }
9004 
9005  // Preparing gender's display if there is one
9006  $addgendertxt = '';
9007  if (property_exists($object, 'gender') && !empty($object->gender)) {
9008  $addgendertxt = ' ';
9009  switch ($object->gender) {
9010  case 'man':
9011  $addgendertxt .= '<i class="fas fa-mars"></i>';
9012  break;
9013  case 'woman':
9014  $addgendertxt .= '<i class="fas fa-venus"></i>';
9015  break;
9016  case 'other':
9017  $addgendertxt .= '<i class="fas fa-transgender"></i>';
9018  break;
9019  }
9020  }
9021 
9022  /*
9023  $addadmin = '';
9024  if (property_exists($object, 'admin')) {
9025  if (!empty($conf->multicompany->enabled) && !empty($object->admin) && empty($object->entity)) {
9026  $addadmin .= img_picto($langs->trans("SuperAdministratorDesc"), "redstar", 'class="paddingleft"');
9027  } elseif (!empty($object->admin)) {
9028  $addadmin .= img_picto($langs->trans("AdministratorDesc"), "star", 'class="paddingleft"');
9029  }
9030  }*/
9031 
9032  // Add where from hooks
9033  if (is_object($hookmanager)) {
9034  $parameters = array('showrefnav' => true);
9035  $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $object); // Note that $action and $object may have been modified by hook
9036  $object->next_prev_filter .= $hookmanager->resPrint;
9037  }
9038  $previous_ref = $next_ref = '';
9039  if ($shownav) {
9040  //print "paramid=$paramid,morehtml=$morehtml,shownav=$shownav,$fieldid,$fieldref,$morehtmlref,$moreparam";
9041  $object->load_previous_next_ref((isset($object->next_prev_filter) ? $object->next_prev_filter : ''), $fieldid, $nodbprefix);
9042 
9043  $navurl = $_SERVER["PHP_SELF"];
9044  // Special case for project/task page
9045  if ($paramid == 'project_ref') {
9046  if (preg_match('/\/tasks\/(task|contact|note|document)\.php/', $navurl)) { // TODO Remove this when nav with project_ref on task pages are ok
9047  $navurl = preg_replace('/\/tasks\/(task|contact|time|note|document)\.php/', '/tasks.php', $navurl);
9048  $paramid = 'ref';
9049  }
9050  }
9051 
9052  // accesskey is for Windows or Linux: ALT + key for chrome, ALT + SHIFT + KEY for firefox
9053  // accesskey is for Mac: CTRL + key for all browsers
9054  $stringforfirstkey = $langs->trans("KeyboardShortcut");
9055  if ($conf->browser->name == 'chrome') {
9056  $stringforfirstkey .= ' ALT +';
9057  } elseif ($conf->browser->name == 'firefox') {
9058  $stringforfirstkey .= ' ALT + SHIFT +';
9059  } else {
9060  $stringforfirstkey .= ' CTL +';
9061  }
9062 
9063  $previous_ref = $object->ref_previous ? '<a accesskey="p" title="'.$stringforfirstkey.' p" class="classfortooltip" href="'.$navurl.'?'.$paramid.'='.urlencode($object->ref_previous).$moreparam.'"><i class="fa fa-chevron-left"></i></a>' : '<span class="inactive"><i class="fa fa-chevron-left opacitymedium"></i></span>';
9064  $next_ref = $object->ref_next ? '<a accesskey="n" title="'.$stringforfirstkey.' n" class="classfortooltip" href="'.$navurl.'?'.$paramid.'='.urlencode($object->ref_next).$moreparam.'"><i class="fa fa-chevron-right"></i></a>' : '<span class="inactive"><i class="fa fa-chevron-right opacitymedium"></i></span>';
9065  }
9066 
9067  //print "xx".$previous_ref."x".$next_ref;
9068  $ret .= '<!-- Start banner content --><div style="vertical-align: middle">';
9069 
9070  // Right part of banner
9071  if ($morehtmlright) {
9072  $ret .= '<div class="inline-block floatleft">'.$morehtmlright.'</div>';
9073  }
9074 
9075  if ($previous_ref || $next_ref || $morehtml) {
9076  $ret .= '<div class="pagination paginationref"><ul class="right">';
9077  }
9078  if ($morehtml) {
9079  $ret .= '<li class="noborder litext'.(($shownav && $previous_ref && $next_ref) ? ' clearbothonsmartphone' : '').'">'.$morehtml.'</li>';
9080  }
9081  if ($shownav && ($previous_ref || $next_ref)) {
9082  $ret .= '<li class="pagination">'.$previous_ref.'</li>';
9083  $ret .= '<li class="pagination">'.$next_ref.'</li>';
9084  }
9085  if ($previous_ref || $next_ref || $morehtml) {
9086  $ret .= '</ul></div>';
9087  }
9088 
9089  $parameters = array();
9090  $reshook = $hookmanager->executeHooks('moreHtmlStatus', $parameters, $object); // Note that $action and $object may have been modified by hook
9091  if (empty($reshook)) {
9092  $morehtmlstatus .= $hookmanager->resPrint;
9093  } else {
9094  $morehtmlstatus = $hookmanager->resPrint;
9095  }
9096  if ($morehtmlstatus) {
9097  $ret .= '<div class="statusref">'.$morehtmlstatus.'</div>';
9098  }
9099 
9100  $parameters = array();
9101  $reshook = $hookmanager->executeHooks('moreHtmlRef', $parameters, $object); // Note that $action and $object may have been modified by hook
9102  if (empty($reshook)) {
9103  $morehtmlref .= $hookmanager->resPrint;
9104  } elseif ($reshook > 0) {
9105  $morehtmlref = $hookmanager->resPrint;
9106  }
9107 
9108  // Left part of banner
9109  if ($morehtmlleft) {
9110  if ($conf->browser->layout == 'phone') {
9111  $ret .= '<!-- morehtmlleft --><div class="floatleft">'.$morehtmlleft.'</div>'; // class="center" to have photo in middle
9112  } else {
9113  $ret .= '<!-- morehtmlleft --><div class="inline-block floatleft">'.$morehtmlleft.'</div>';
9114  }
9115  }
9116 
9117  //if ($conf->browser->layout == 'phone') $ret.='<div class="clearboth"></div>';
9118  $ret .= '<div class="inline-block floatleft valignmiddle maxwidth750 marginbottomonly refid'.(($shownav && ($previous_ref || $next_ref)) ? ' refidpadding' : '').'">';
9119 
9120  // For thirdparty, contact, user, member, the ref is the id, so we show something else
9121  if ($object->element == 'societe') {
9122  $ret .= dol_htmlentities($object->name);
9123 
9124  // List of extra languages
9125  $arrayoflangcode = array();
9126  if (!empty($conf->global->PDF_USE_ALSO_LANGUAGE_CODE)) {
9127  $arrayoflangcode[] = $conf->global->PDF_USE_ALSO_LANGUAGE_CODE;
9128  }
9129 
9130  if (is_array($arrayoflangcode) && count($arrayoflangcode)) {
9131  if (!is_object($extralanguages)) {
9132  include_once DOL_DOCUMENT_ROOT.'/core/class/extralanguages.class.php';
9133  $extralanguages = new ExtraLanguages($this->db);
9134  }
9135  $extralanguages->fetch_name_extralanguages('societe');
9136 
9137  if (!empty($extralanguages->attributes['societe']['name'])) {
9138  $object->fetchValuesForExtraLanguages();
9139 
9140  $htmltext = '';
9141  // If there is extra languages
9142  foreach ($arrayoflangcode as $extralangcode) {
9143  $htmltext .= picto_from_langcode($extralangcode, 'class="pictoforlang paddingright"');
9144  if ($object->array_languages['name'][$extralangcode]) {
9145  $htmltext .= $object->array_languages['name'][$extralangcode];
9146  } else {
9147  $htmltext .= '<span class="opacitymedium">'.$langs->trans("SwitchInEditModeToAddTranslation").'</span>';
9148  }
9149  }
9150  $ret .= '<!-- Show translations of name -->'."\n";
9151  $ret .= $this->textwithpicto('', $htmltext, -1, 'language', 'opacitymedium paddingleft');
9152  }
9153  }
9154  } elseif ($object->element == 'member') {
9155  $ret .= $object->ref.'<br>';
9156  $fullname = $object->getFullName($langs);
9157  if ($object->morphy == 'mor' && $object->societe) {
9158  $ret .= dol_htmlentities($object->societe).((!empty($fullname) && $object->societe != $fullname) ? ' ('.dol_htmlentities($fullname).$addgendertxt.')' : '');
9159  } else {
9160  $ret .= dol_htmlentities($fullname).$addgendertxt.((!empty($object->societe) && $object->societe != $fullname) ? ' ('.dol_htmlentities($object->societe).')' : '');
9161  }
9162  } elseif (in_array($object->element, array('contact', 'user', 'usergroup'))) {
9163  $ret .= dol_htmlentities($object->getFullName($langs)).$addgendertxt;
9164  } elseif (in_array($object->element, array('action', 'agenda'))) {
9165  $ret .= $object->ref.'<br>'.$object->label;
9166  } elseif (in_array($object->element, array('adherent_type'))) {
9167  $ret .= $object->label;
9168  } elseif ($object->element == 'ecm_directories') {
9169  $ret .= '';
9170  } elseif ($fieldref != 'none') {
9171  $ret .= dol_htmlentities($object->$fieldref);
9172  }
9173 
9174  if ($morehtmlref) {
9175  // don't add a additional space, when "$morehtmlref" starts with a HTML div tag
9176  if (substr($morehtmlref, 0, 4) != '<div') {
9177  $ret .= ' ';
9178  }
9179 
9180  $ret .= $morehtmlref;
9181  }
9182 
9183  $ret .= '</div>';
9184 
9185  $ret .= '</div><!-- End banner content -->';
9186 
9187  return $ret;
9188  }
9189 
9190 
9199  public function showbarcode(&$object, $width = 100, $morecss = '')
9200  {
9201  global $conf;
9202 
9203  //Check if barcode is filled in the card
9204  if (empty($object->barcode)) {
9205  return '';
9206  }
9207 
9208  // Complete object if not complete
9209  if (empty($object->barcode_type_code) || empty($object->barcode_type_coder)) {
9210  $result = $object->fetch_barcode();
9211  //Check if fetch_barcode() failed
9212  if ($result < 1) {
9213  return '<!-- ErrorFetchBarcode -->';
9214  }
9215  }
9216 
9217  // Barcode image
9218  $url = DOL_URL_ROOT.'/viewimage.php?modulepart=barcode&generator='.urlencode($object->barcode_type_coder).'&code='.urlencode($object->barcode).'&encoding='.urlencode($object->barcode_type_code);
9219  $out = '<!-- url barcode = '.$url.' -->';
9220  $out .= '<img src="'.$url.'"'.($morecss ? ' class="'.$morecss.'"' : '').'>';
9221  return $out;
9222  }
9223 
9240  public static function showphoto($modulepart, $object, $width = 100, $height = 0, $caneditfield = 0, $cssclass = 'photowithmargin', $imagesize = '', $addlinktofullsize = 1, $cache = 0, $forcecapture = '', $noexternsourceoverwrite = 0)
9241  {
9242  global $conf, $langs;
9243 
9244  $entity = (!empty($object->entity) ? $object->entity : $conf->entity);
9245  $id = (!empty($object->id) ? $object->id : $object->rowid);
9246 
9247  $ret = '';
9248  $dir = '';
9249  $file = '';
9250  $originalfile = '';
9251  $altfile = '';
9252  $email = '';
9253  $capture = '';
9254  if ($modulepart == 'societe') {
9255  $dir = $conf->societe->multidir_output[$entity];
9256  if (!empty($object->logo)) {
9257  if (dolIsAllowedForPreview($object->logo)) {
9258  if ((string) $imagesize == 'mini') {
9259  $file = get_exdir(0, 0, 0, 0, $object, 'thirdparty').'logos/'.getImageFileNameForSize($object->logo, '_mini'); // getImageFileNameForSize include the thumbs
9260  } elseif ((string) $imagesize == 'small') {
9261  $file = get_exdir(0, 0, 0, 0, $object, 'thirdparty').'logos/'.getImageFileNameForSize($object->logo, '_small');
9262  } else {
9263  $file = get_exdir(0, 0, 0, 0, $object, 'thirdparty').'logos/'.$object->logo;
9264  }
9265  $originalfile = get_exdir(0, 0, 0, 0, $object, 'thirdparty').'logos/'.$object->logo;
9266  }
9267  }
9268  $email = $object->email;
9269  } elseif ($modulepart == 'contact') {
9270  $dir = $conf->societe->multidir_output[$entity].'/contact';
9271  if (!empty($object->photo)) {
9272  if (dolIsAllowedForPreview($object->photo)) {
9273  if ((string) $imagesize == 'mini') {
9274  $file = get_exdir(0, 0, 0, 0, $object, 'contact').'photos/'.getImageFileNameForSize($object->photo, '_mini');
9275  } elseif ((string) $imagesize == 'small') {
9276  $file = get_exdir(0, 0, 0, 0, $object, 'contact').'photos/'.getImageFileNameForSize($object->photo, '_small');
9277  } else {
9278  $file = get_exdir(0, 0, 0, 0, $object, 'contact').'photos/'.$object->photo;
9279  }
9280  $originalfile = get_exdir(0, 0, 0, 0, $object, 'contact').'photos/'.$object->photo;
9281  }
9282  }
9283  $email = $object->email;
9284  $capture = 'user';
9285  } elseif ($modulepart == 'userphoto') {
9286  $dir = $conf->user->dir_output;
9287  if (!empty($object->photo)) {
9288  if (dolIsAllowedForPreview($object->photo)) {
9289  if ((string) $imagesize == 'mini') {
9290  $file = get_exdir(0, 0, 0, 0, $object, 'user').'photos/'.getImageFileNameForSize($object->photo, '_mini');
9291  } elseif ((string) $imagesize == 'small') {
9292  $file = get_exdir(0, 0, 0, 0, $object, 'user').'photos/'.getImageFileNameForSize($object->photo, '_small');
9293  } else {
9294  $file = get_exdir(0, 0, 0, 0, $object, 'user').'photos/'.$object->photo;
9295  }
9296  $originalfile = get_exdir(0, 0, 0, 0, $object, 'user').'photos/'.$object->photo;
9297  }
9298  }
9299  if (!empty($conf->global->MAIN_OLD_IMAGE_LINKS)) {
9300  $altfile = $object->id.".jpg"; // For backward compatibility
9301  }
9302  $email = $object->email;
9303  $capture = 'user';
9304  } elseif ($modulepart == 'memberphoto') {
9305  $dir = $conf->adherent->dir_output;
9306  if (!empty($object->photo)) {
9307  if (dolIsAllowedForPreview($object->photo)) {
9308  if ((string) $imagesize == 'mini') {
9309  $file = get_exdir(0, 0, 0, 0, $object, 'member').'photos/'.getImageFileNameForSize($object->photo, '_mini');
9310  } elseif ((string) $imagesize == 'small') {
9311  $file = get_exdir(0, 0, 0, 0, $object, 'member').'photos/'.getImageFileNameForSize($object->photo, '_small');
9312  } else {
9313  $file = get_exdir(0, 0, 0, 0, $object, 'member').'photos/'.$object->photo;
9314  }
9315  $originalfile = get_exdir(0, 0, 0, 0, $object, 'member').'photos/'.$object->photo;
9316  }
9317  }
9318  if (!empty($conf->global->MAIN_OLD_IMAGE_LINKS)) {
9319  $altfile = $object->id.".jpg"; // For backward compatibility
9320  }
9321  $email = $object->email;
9322  $capture = 'user';
9323  } else {
9324  // Generic case to show photos
9325  $dir = $conf->$modulepart->dir_output;
9326  if (!empty($object->photo)) {
9327  if (dolIsAllowedForPreview($object->photo)) {
9328  if ((string) $imagesize == 'mini') {
9329  $file = get_exdir($id, 2, 0, 0, $object, $modulepart).'photos/'.getImageFileNameForSize($object->photo, '_mini');
9330  } elseif ((string) $imagesize == 'small') {
9331  $file = get_exdir($id, 2, 0, 0, $object, $modulepart).'photos/'.getImageFileNameForSize($object->photo, '_small');
9332  } else {
9333  $file = get_exdir($id, 2, 0, 0, $object, $modulepart).'photos/'.$object->photo;
9334  }
9335  $originalfile = get_exdir($id, 2, 0, 0, $object, $modulepart).'photos/'.$object->photo;
9336  }
9337  }
9338  if (!empty($conf->global->MAIN_OLD_IMAGE_LINKS)) {
9339  $altfile = $object->id.".jpg"; // For backward compatibility
9340  }
9341  $email = $object->email;
9342  }
9343 
9344  if ($forcecapture) {
9345  $capture = $forcecapture;
9346  }
9347 
9348  if ($dir) {
9349  if ($file && file_exists($dir."/".$file)) {
9350  if ($addlinktofullsize) {
9351  $urladvanced = getAdvancedPreviewUrl($modulepart, $originalfile, 0, '&entity='.$entity);
9352  if ($urladvanced) {
9353  $ret .= '<a href="'.$urladvanced.'">';
9354  } else {
9355  $ret .= '<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($originalfile).'&cache='.$cache.'">';
9356  }
9357  }
9358  $ret .= '<img alt="Photo" class="photo'.$modulepart.($cssclass ? ' '.$cssclass : '').' photologo'.(preg_replace('/[^a-z]/i', '_', $file)).'" '.($width ? ' width="'.$width.'"' : '').($height ? ' height="'.$height.'"' : '').' src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($file).'&cache='.$cache.'">';
9359  if ($addlinktofullsize) {
9360  $ret .= '</a>';
9361  }
9362  } elseif ($altfile && file_exists($dir."/".$altfile)) {
9363  if ($addlinktofullsize) {
9364  $urladvanced = getAdvancedPreviewUrl($modulepart, $originalfile, 0, '&entity='.$entity);
9365  if ($urladvanced) {
9366  $ret .= '<a href="'.$urladvanced.'">';
9367  } else {
9368  $ret .= '<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($originalfile).'&cache='.$cache.'">';
9369  }
9370  }
9371  $ret .= '<img class="photo'.$modulepart.($cssclass ? ' '.$cssclass : '').'" alt="Photo alt" id="photologo'.(preg_replace('/[^a-z]/i', '_', $file)).'" class="'.$cssclass.'" '.($width ? ' width="'.$width.'"' : '').($height ? ' height="'.$height.'"' : '').' src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($altfile).'&cache='.$cache.'">';
9372  if ($addlinktofullsize) {
9373  $ret .= '</a>';
9374  }
9375  } else {
9376  $nophoto = '/public/theme/common/nophoto.png';
9377  $defaultimg = 'identicon'; // For gravatar
9378  if (in_array($modulepart, array('societe', 'userphoto', 'contact', 'memberphoto'))) { // For modules that need a special image when photo not found
9379  if ($modulepart == 'societe' || ($modulepart == 'memberphoto' && strpos($object->morphy, 'mor')) !== false) {
9380  $nophoto = 'company';
9381  } else {
9382  $nophoto = '/public/theme/common/user_anonymous.png';
9383  if (!empty($object->gender) && $object->gender == 'man') {
9384  $nophoto = '/public/theme/common/user_man.png';
9385  }
9386  if (!empty($object->gender) && $object->gender == 'woman') {
9387  $nophoto = '/public/theme/common/user_woman.png';
9388  }
9389  }
9390  }
9391 
9392  if (!empty($conf->gravatar->enabled) && $email && empty($noexternsourceoverwrite)) {
9393  // see https://gravatar.com/site/implement/images/php/
9394  $ret .= '<!-- Put link to gravatar -->';
9395  $ret .= '<img class="photo'.$modulepart.($cssclass ? ' '.$cssclass : '').'" alt="" title="'.$email.' Gravatar avatar" '.($width ? ' width="'.$width.'"' : '').($height ? ' height="'.$height.'"' : '').' src="https://www.gravatar.com/avatar/'.md5(strtolower(trim($email))).'?s='.$width.'&d='.$defaultimg.'">'; // gravatar need md5 hash
9396  } else {
9397  if ($nophoto == 'company') {
9398  $ret .= '<div class="divforspanimg photo'.$modulepart.($cssclass ? ' '.$cssclass : '').'" alt="" '.($width ? ' width="'.$width.'"' : '').($height ? ' height="'.$height.'"' : '').'>'.img_picto('', 'company').'</div>';
9399  $ret .= '<div class="difforspanimgright"></div>';
9400  } else {
9401  $ret .= '<img class="photo'.$modulepart.($cssclass ? ' '.$cssclass : '').'" alt="" '.($width ? ' width="'.$width.'"' : '').($height ? ' height="'.$height.'"' : '').' src="'.DOL_URL_ROOT.$nophoto.'">';
9402  }
9403  }
9404  }
9405 
9406  if ($caneditfield) {
9407  if ($object->photo) {
9408  $ret .= "<br>\n";
9409  }
9410  $ret .= '<table class="nobordernopadding centpercent">';
9411  if ($object->photo) {
9412  $ret .= '<tr><td><input type="checkbox" class="flat photodelete" name="deletephoto" id="photodelete"> <label for="photodelete">'.$langs->trans("Delete").'</label><br><br></td></tr>';
9413  }
9414  $ret .= '<tr><td class="tdoverflow">';
9415  $maxfilesizearray = getMaxFileSizeArray();
9416  $maxmin = $maxfilesizearray['maxmin'];
9417  if ($maxmin > 0) {
9418  $ret .= '<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).'">'; // MAX_FILE_SIZE must precede the field type=file
9419  }
9420  $ret .= '<input type="file" class="flat maxwidth200onsmartphone" name="photo" id="photoinput" accept="image/*"'.($capture ? ' capture="'.$capture.'"' : '').'>';
9421  $ret .= '</td></tr>';
9422  $ret .= '</table>';
9423  }
9424  } else {
9425  dol_print_error('', 'Call of showphoto with wrong parameters modulepart='.$modulepart);
9426  }
9427 
9428  return $ret;
9429  }
9430 
9431  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
9448  public function select_dolgroups($selected = '', $htmlname = 'groupid', $show_empty = 0, $exclude = '', $disabled = 0, $include = '', $enableonly = '', $force_entity = '0', $multiple = false, $morecss = '')
9449  {
9450  // phpcs:enable
9451  global $conf, $user, $langs;
9452 
9453  // Permettre l'exclusion de groupes
9454  $excludeGroups = null;
9455  if (is_array($exclude)) {
9456  $excludeGroups = implode(",", $exclude);
9457  }
9458  // Permettre l'inclusion de groupes
9459  $includeGroups = null;
9460  if (is_array($include)) {
9461  $includeGroups = implode(",", $include);
9462  }
9463 
9464  if (!is_array($selected)) {
9465  $selected = array($selected);
9466  }
9467 
9468  $out = '';
9469 
9470  // On recherche les groupes
9471  $sql = "SELECT ug.rowid, ug.nom as name";
9472  if (!empty($conf->multicompany->enabled) && $conf->entity == 1 && $user->admin && !$user->entity) {
9473  $sql .= ", e.label";
9474  }
9475  $sql .= " FROM ".$this->db->prefix()."usergroup as ug ";
9476  if (!empty($conf->multicompany->enabled) && $conf->entity == 1 && $user->admin && !$user->entity) {
9477  $sql .= " LEFT JOIN ".$this->db->prefix()."entity as e ON e.rowid=ug.entity";
9478  if ($force_entity) {
9479  $sql .= " WHERE ug.entity IN (0, ".$force_entity.")";
9480  } else {
9481  $sql .= " WHERE ug.entity IS NOT NULL";
9482  }
9483  } else {
9484  $sql .= " WHERE ug.entity IN (0, ".$conf->entity.")";
9485  }
9486  if (is_array($exclude) && $excludeGroups) {
9487  $sql .= " AND ug.rowid NOT IN (".$this->db->sanitize($excludeGroups).")";
9488  }
9489  if (is_array($include) && $includeGroups) {
9490  $sql .= " AND ug.rowid IN (".$this->db->sanitize($includeGroups).")";
9491  }
9492  $sql .= " ORDER BY ug.nom ASC";
9493 
9494  dol_syslog(get_class($this)."::select_dolgroups", LOG_DEBUG);
9495  $resql = $this->db->query($sql);
9496  if ($resql) {
9497  // Enhance with select2
9498  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
9499 
9500  $out .= '<select class="flat minwidth200'.($morecss ? ' '.$morecss : '').'" id="'.$htmlname.'" name="'.$htmlname.($multiple ? '[]' : '').'" '.($multiple ? 'multiple' : '').' '.($disabled ? ' disabled' : '').'>';
9501 
9502  $num = $this->db->num_rows($resql);
9503  $i = 0;
9504  if ($num) {
9505  if ($show_empty && !$multiple) {
9506  $out .= '<option value="-1"'.(in_array(-1, $selected) ? ' selected' : '').'>&nbsp;</option>'."\n";
9507  }
9508 
9509  while ($i < $num) {
9510  $obj = $this->db->fetch_object($resql);
9511  $disableline = 0;
9512  if (is_array($enableonly) && count($enableonly) && !in_array($obj->rowid, $enableonly)) {
9513  $disableline = 1;
9514  }
9515 
9516  $out .= '<option value="'.$obj->rowid.'"';
9517  if ($disableline) {
9518  $out .= ' disabled';
9519  }
9520  if ((isset($selected[0]) && is_object($selected[0]) && $selected[0]->id == $obj->rowid) || ((!isset($selected[0]) || !is_object($selected[0])) && !empty($selected) && in_array($obj->rowid, $selected))) {
9521  $out .= ' selected';
9522  }
9523  $out .= '>';
9524 
9525  $out .= $obj->name;
9526  if (!empty($conf->multicompany->enabled) && empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE) && $conf->entity == 1) {
9527  $out .= " (".$obj->label.")";
9528  }
9529 
9530  $out .= '</option>';
9531  $i++;
9532  }
9533  } else {
9534  if ($show_empty) {
9535  $out .= '<option value="-1"'.(in_array(-1, $selected) ? ' selected' : '').'></option>'."\n";
9536  }
9537  $out .= '<option value="" disabled>'.$langs->trans("NoUserGroupDefined").'</option>';
9538  }
9539  $out .= '</select>';
9540 
9541  $out .= ajax_combobox($htmlname);
9542  } else {
9543  dol_print_error($this->db);
9544  }
9545 
9546  return $out;
9547  }
9548 
9549 
9556  public function showFilterButtons($pos = '')
9557  {
9558  $out = '<div class="nowraponall">';
9559  if ($pos == 'left') {
9560  $out .= '<button type="submit" class="liste_titre button_removefilter reposition" name="button_removefilter_x" value="x"><span class="fa fa-remove"></span></button>';
9561  $out .= '<button type="submit" class="liste_titre button_search reposition" name="button_search_x" value="x"><span class="fa fa-search"></span></button>';
9562  } else {
9563  $out .= '<button type="submit" class="liste_titre button_search reposition" name="button_search_x" value="x"><span class="fa fa-search"></span></button>';
9564  $out .= '<button type="submit" class="liste_titre button_removefilter reposition" name="button_removefilter_x" value="x"><span class="fa fa-remove"></span></button>';
9565  }
9566  $out .= '</div>';
9567 
9568  return $out;
9569  }
9570 
9579  public function showCheckAddButtons($cssclass = 'checkforaction', $calljsfunction = 0, $massactionname = "massaction")
9580  {
9581  global $conf, $langs;
9582 
9583  $out = '';
9584 
9585  if (!empty($conf->use_javascript_ajax)) {
9586  $out .= '<div class="inline-block checkallactions"><input type="checkbox" id="'.$cssclass.'s" name="'.$cssclass.'s" class="checkallactions"></div>';
9587  }
9588  $out .= '<script>
9589  $(document).ready(function() {
9590  $("#' . $cssclass.'s").click(function() {
9591  if($(this).is(\':checked\')){
9592  console.log("We check all '.$cssclass.' and trigger the change method");
9593  $(".'.$cssclass.'").prop(\'checked\', true).trigger(\'change\');
9594  }
9595  else
9596  {
9597  console.log("We uncheck all");
9598  $(".'.$cssclass.'").prop(\'checked\', false).trigger(\'change\');
9599  }'."\n";
9600  if ($calljsfunction) {
9601  $out .= 'if (typeof initCheckForSelect == \'function\') { initCheckForSelect(0, "'.$massactionname.'", "'.$cssclass.'"); } else { console.log("No function initCheckForSelect found. Call won\'t be done."); }';
9602  }
9603  $out .= ' });
9604  $(".' . $cssclass.'").change(function() {
9605  $(this).closest("tr").toggleClass("highlight", this.checked);
9606  });
9607  });
9608  </script>';
9609 
9610  return $out;
9611  }
9612 
9622  public function showFilterAndCheckAddButtons($addcheckuncheckall = 0, $cssclass = 'checkforaction', $calljsfunction = 0, $massactionname = "massaction")
9623  {
9624  $out = $this->showFilterButtons();
9625  if ($addcheckuncheckall) {
9626  $out .= $this->showCheckAddButtons($cssclass, $calljsfunction, $massactionname);
9627  }
9628  return $out;
9629  }
9630 
9644  public function selectExpenseCategories($selected = '', $htmlname = 'fk_c_exp_tax_cat', $useempty = 0, $excludeid = array(), $target = '', $default_selected = 0, $params = array(), $info_admin = 1)
9645  {
9646  global $langs, $user;
9647 
9648  $out = '';
9649  $sql = "SELECT rowid, label FROM ".$this->db->prefix()."c_exp_tax_cat WHERE active = 1";
9650  $sql .= " AND entity IN (0,".getEntity('exp_tax_cat').")";
9651  if (!empty($excludeid)) {
9652  $sql .= " AND rowid NOT IN (".$this->db->sanitize(implode(',', $excludeid)).")";
9653  }
9654  $sql .= " ORDER BY label";
9655 
9656  $resql = $this->db->query($sql);
9657  if ($resql) {
9658  $out = '<select id="select_'.$htmlname.'" name="'.$htmlname.'" class="'.$htmlname.' flat minwidth75imp maxwidth200">';
9659  if ($useempty) {
9660  $out .= '<option value="0">&nbsp;</option>';
9661  }
9662 
9663  while ($obj = $this->db->fetch_object($resql)) {
9664  $out .= '<option '.($selected == $obj->rowid ? 'selected="selected"' : '').' value="'.$obj->rowid.'">'.$langs->trans($obj->label).'</option>';
9665  }
9666  $out .= '</select>';
9667  $out .= ajax_combobox('select_'.$htmlname);
9668 
9669  if (!empty($htmlname) && $user->admin && $info_admin) {
9670  $out .= ' '.info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
9671  }
9672 
9673  if (!empty($target)) {
9674  $sql = "SELECT c.id FROM ".$this->db->prefix()."c_type_fees as c WHERE c.code = 'EX_KME' AND c.active = 1";
9675  $resql = $this->db->query($sql);
9676  if ($resql) {
9677  if ($this->db->num_rows($resql) > 0) {
9678  $obj = $this->db->fetch_object($resql);
9679  $out .= '<script>
9680  $(function() {
9681  $("select[name='.$target.']").on("change", function() {
9682  var current_val = $(this).val();
9683  if (current_val == '.$obj->id.') {';
9684  if (!empty($default_selected) || !empty($selected)) {
9685  $out .= '$("select[name='.$htmlname.']").val("'.($default_selected > 0 ? $default_selected : $selected).'");';
9686  }
9687 
9688  $out .= '
9689  $("select[name='.$htmlname.']").change();
9690  }
9691  });
9692 
9693  $("select[name='.$htmlname.']").change(function() {
9694 
9695  if ($("select[name='.$target.']").val() == '.$obj->id.') {
9696  // get price of kilometer to fill the unit price
9697  $.ajax({
9698  method: "POST",
9699  dataType: "json",
9700  data: { fk_c_exp_tax_cat: $(this).val(), token: \''.currentToken().'\' },
9701  url: "'.(DOL_URL_ROOT.'/expensereport/ajax/ajaxik.php?'.$params).'",
9702  }).done(function( data, textStatus, jqXHR ) {
9703  console.log(data);
9704  if (typeof data.up != "undefined") {
9705  $("input[name=value_unit]").val(data.up);
9706  $("select[name='.$htmlname.']").attr("title", data.title);
9707  } else {
9708  $("input[name=value_unit]").val("");
9709  $("select[name='.$htmlname.']").attr("title", "");
9710  }
9711  });
9712  }
9713  });
9714  });
9715  </script>';
9716  }
9717  }
9718  }
9719  } else {
9720  dol_print_error($this->db);
9721  }
9722 
9723  return $out;
9724  }
9725 
9734  public function selectExpenseRanges($selected = '', $htmlname = 'fk_range', $useempty = 0)
9735  {
9736  global $conf, $langs;
9737 
9738  $out = '';
9739  $sql = "SELECT rowid, range_ik FROM ".$this->db->prefix()."c_exp_tax_range";
9740  $sql .= " WHERE entity = ".$conf->entity." AND active = 1";
9741 
9742  $resql = $this->db->query($sql);
9743  if ($resql) {
9744  $out = '<select id="select_'.$htmlname.'" name="'.$htmlname.'" class="'.$htmlname.' flat minwidth75imp">';
9745  if ($useempty) {
9746  $out .= '<option value="0"></option>';
9747  }
9748 
9749  while ($obj = $this->db->fetch_object($resql)) {
9750  $out .= '<option '.($selected == $obj->rowid ? 'selected="selected"' : '').' value="'.$obj->rowid.'">'.price($obj->range_ik, 0, $langs, 1, 0).'</option>';
9751  }
9752  $out .= '</select>';
9753  } else {
9754  dol_print_error($this->db);
9755  }
9756 
9757  return $out;
9758  }
9759 
9770  public function selectExpense($selected = '', $htmlname = 'fk_c_type_fees', $useempty = 0, $allchoice = 1, $useid = 0)
9771  {
9772  global $langs;
9773 
9774  $out = '';
9775  $sql = "SELECT id, code, label FROM ".$this->db->prefix()."c_type_fees";
9776  $sql .= " WHERE active = 1";
9777 
9778  $resql = $this->db->query($sql);
9779  if ($resql) {
9780  $out = '<select id="select_'.$htmlname.'" name="'.$htmlname.'" class="'.$htmlname.' flat minwidth75imp">';
9781  if ($useempty) {
9782  $out .= '<option value="0"></option>';
9783  }
9784  if ($allchoice) {
9785  $out .= '<option value="-1">'.$langs->trans('AllExpenseReport').'</option>';
9786  }
9787 
9788  $field = 'code';
9789  if ($useid) {
9790  $field = 'id';
9791  }
9792 
9793  while ($obj = $this->db->fetch_object($resql)) {
9794  $key = $langs->trans($obj->code);
9795  $out .= '<option '.($selected == $obj->{$field} ? 'selected="selected"' : '').' value="'.$obj->{$field}.'">'.($key != $obj->code ? $key : $obj->label).'</option>';
9796  }
9797  $out .= '</select>';
9798  } else {
9799  dol_print_error($this->db);
9800  }
9801 
9802  return $out;
9803  }
9804 
9823  public function selectInvoice($socid = -1, $selected = '', $htmlname = 'invoiceid', $maxlength = 24, $option_only = 0, $show_empty = '1', $discard_closed = 0, $forcefocus = 0, $disabled = 0, $morecss = 'maxwidth500', $projectsListId = '', $showproject = 'all', $usertofilter = null)
9824  {
9825  global $user, $conf, $langs;
9826 
9827  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
9828 
9829  if (is_null($usertofilter)) {
9830  $usertofilter = $user;
9831  }
9832 
9833  $out = '';
9834 
9835  $hideunselectables = false;
9836  if (!empty($conf->global->PROJECT_HIDE_UNSELECTABLES)) {
9837  $hideunselectables = true;
9838  }
9839 
9840  if (empty($projectsListId)) {
9841  if (empty($usertofilter->rights->projet->all->lire)) {
9842  $projectstatic = new Project($this->db);
9843  $projectsListId = $projectstatic->getProjectsAuthorizedForUser($usertofilter, 0, 1);
9844  }
9845  }
9846 
9847  // Search all projects
9848  $sql = "SELECT f.rowid, f.ref as fref, 'nolabel' as flabel, p.rowid as pid, f.ref,
9849  p.title, p.fk_soc, p.fk_statut, p.public,";
9850  $sql .= ' s.nom as name';
9851  $sql .= ' FROM '.$this->db->prefix().'projet as p';
9852  $sql .= ' LEFT JOIN '.$this->db->prefix().'societe as s ON s.rowid = p.fk_soc,';
9853  $sql .= ' '.$this->db->prefix().'facture as f';
9854  $sql .= " WHERE p.entity IN (".getEntity('project').")";
9855  $sql .= " AND f.fk_projet = p.rowid AND f.fk_statut=0"; //Brouillons seulement
9856  //if ($projectsListId) $sql.= " AND p.rowid IN (".$this->db->sanitize($projectsListId).")";
9857  //if ($socid == 0) $sql.= " AND (p.fk_soc=0 OR p.fk_soc IS NULL)";
9858  //if ($socid > 0) $sql.= " AND (p.fk_soc=".((int) $socid)." OR p.fk_soc IS NULL)";
9859  $sql .= " ORDER BY p.ref, f.ref ASC";
9860 
9861  $resql = $this->db->query($sql);
9862  if ($resql) {
9863  // Use select2 selector
9864  if (!empty($conf->use_javascript_ajax)) {
9865  include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
9866  $comboenhancement = ajax_combobox($htmlname, '', 0, $forcefocus);
9867  $out .= $comboenhancement;
9868  $morecss = 'minwidth200imp maxwidth500';
9869  }
9870 
9871  if (empty($option_only)) {
9872  $out .= '<select class="valignmiddle flat'.($morecss ? ' '.$morecss : '').'"'.($disabled ? ' disabled="disabled"' : '').' id="'.$htmlname.'" name="'.$htmlname.'">';
9873  }
9874  if (!empty($show_empty)) {
9875  $out .= '<option value="0" class="optiongrey">';
9876  if (!is_numeric($show_empty)) {
9877  $out .= $show_empty;
9878  } else {
9879  $out .= '&nbsp;';
9880  }
9881  $out .= '</option>';
9882  }
9883  $num = $this->db->num_rows($resql);
9884  $i = 0;
9885  if ($num) {
9886  while ($i < $num) {
9887  $obj = $this->db->fetch_object($resql);
9888  // If we ask to filter on a company and user has no permission to see all companies and project is linked to another company, we hide project.
9889  if ($socid > 0 && (empty($obj->fk_soc) || $obj->fk_soc == $socid) && empty($usertofilter->rights->societe->lire)) {
9890  // Do nothing
9891  } else {
9892  if ($discard_closed == 1 && $obj->fk_statut == Project::STATUS_CLOSED) {
9893  $i++;
9894  continue;
9895  }
9896 
9897  $labeltoshow = '';
9898 
9899  if ($showproject == 'all') {
9900  $labeltoshow .= dol_trunc($obj->ref, 18); // Invoice ref
9901  if ($obj->name) {
9902  $labeltoshow .= ' - '.$obj->name; // Soc name
9903  }
9904 
9905  $disabled = 0;
9906  if ($obj->fk_statut == Project::STATUS_DRAFT) {
9907  $disabled = 1;
9908  $labeltoshow .= ' - '.$langs->trans("Draft");
9909  } elseif ($obj->fk_statut == Project::STATUS_CLOSED) {
9910  if ($discard_closed == 2) {
9911  $disabled = 1;
9912  }
9913  $labeltoshow .= ' - '.$langs->trans("Closed");
9914  } elseif ($socid > 0 && (!empty($obj->fk_soc) && $obj->fk_soc != $socid)) {
9915  $disabled = 1;
9916  $labeltoshow .= ' - '.$langs->trans("LinkedToAnotherCompany");
9917  }
9918  }
9919 
9920  if (!empty($selected) && $selected == $obj->rowid) {
9921  $out .= '<option value="'.$obj->rowid.'" selected';
9922  //if ($disabled) $out.=' disabled'; // with select2, field can't be preselected if disabled
9923  $out .= '>'.$labeltoshow.'</option>';
9924  } else {
9925  if ($hideunselectables && $disabled && ($selected != $obj->rowid)) {
9926  $resultat = '';
9927  } else {
9928  $resultat = '<option value="'.$obj->rowid.'"';
9929  if ($disabled) {
9930  $resultat .= ' disabled';
9931  }
9932  //if ($obj->public) $labeltoshow.=' ('.$langs->trans("Public").')';
9933  //else $labeltoshow.=' ('.$langs->trans("Private").')';
9934  $resultat .= '>';
9935  $resultat .= $labeltoshow;
9936  $resultat .= '</option>';
9937  }
9938  $out .= $resultat;
9939  }
9940  }
9941  $i++;
9942  }
9943  }
9944  if (empty($option_only)) {
9945  $out .= '</select>';
9946  }
9947 
9948  print $out;
9949 
9950  $this->db->free($resql);
9951  return $num;
9952  } else {
9953  dol_print_error($this->db);
9954  return -1;
9955  }
9956  }
9957 
9971  public function selectInvoiceRec($selected = '', $htmlname = 'facrecid', $maxlength = 24, $option_only = 0, $show_empty = '1', $forcefocus = 0, $disabled = 0, $morecss = 'maxwidth500')
9972  {
9973  global $user, $conf, $langs;
9974 
9975  $out = '';
9976 
9977  dol_syslog('FactureRec::fetch', LOG_DEBUG);
9978 
9979  $sql = 'SELECT f.rowid, f.entity, f.titre as title, f.suspended, f.fk_soc';
9980  //$sql.= ', el.fk_source';
9981  $sql .= ' FROM ' . MAIN_DB_PREFIX . 'facture_rec as f';
9982  $sql .= " WHERE f.entity IN (" . getEntity('invoice') . ")";
9983  $sql .= " ORDER BY f.titre ASC";
9984 
9985  $resql = $this->db->query($sql);
9986  if ($resql) {
9987  // Use select2 selector
9988  if (!empty($conf->use_javascript_ajax)) {
9989  include_once DOL_DOCUMENT_ROOT . '/core/lib/ajax.lib.php';
9990  $comboenhancement = ajax_combobox($htmlname, '', 0, $forcefocus);
9991  $out .= $comboenhancement;
9992  $morecss = 'minwidth200imp maxwidth500';
9993  }
9994 
9995  if (empty($option_only)) {
9996  $out .= '<select class="valignmiddle flat' . ($morecss ? ' ' . $morecss : '') . '"' . ($disabled ? ' disabled="disabled"' : '') . ' id="' . $htmlname . '" name="' . $htmlname . '">';
9997  }
9998  if (!empty($show_empty)) {
9999  $out .= '<option value="0" class="optiongrey">';
10000  if (!is_numeric($show_empty)) {
10001  $out .= $show_empty;
10002  } else {
10003  $out .= '&nbsp;';
10004  }
10005  $out .= '</option>';
10006  }
10007  $num = $this->db->num_rows($resql);
10008  if ($num) {
10009  while ($obj = $this->db->fetch_object($resql)) {
10010  $labeltoshow = dol_trunc($obj->title, 18); // Invoice ref
10011 
10012  $disabled = 0;
10013  if (!empty($obj->suspended)) {
10014  $disabled = 1;
10015  $labeltoshow .= ' - ' . $langs->trans("Closed");
10016  }
10017 
10018 
10019  if (!empty($selected) && $selected == $obj->rowid) {
10020  $out .= '<option value="' . $obj->rowid . '" selected';
10021  //if ($disabled) $out.=' disabled'; // with select2, field can't be preselected if disabled
10022  $out .= '>' . $labeltoshow . '</option>';
10023  } else {
10024  if ($disabled && ($selected != $obj->rowid)) {
10025  $resultat = '';
10026  } else {
10027  $resultat = '<option value="' . $obj->rowid . '"';
10028  if ($disabled) {
10029  $resultat .= ' disabled';
10030  }
10031  $resultat .= '>';
10032  $resultat .= $labeltoshow;
10033  $resultat .= '</option>';
10034  }
10035  $out .= $resultat;
10036  }
10037  }
10038  }
10039  if (empty($option_only)) {
10040  $out .= '</select>';
10041  }
10042 
10043  print $out;
10044 
10045  $this->db->free($resql);
10046  return $num;
10047  } else {
10048  $this->errors[]=$this->db->lasterror;
10049  return -1;
10050  }
10051  }
10052 
10062  public function searchComponent($arrayofcriterias, $search_component_params, $arrayofinputfieldsalreadyoutput = array(), $search_component_params_hidden = '')
10063  {
10064  global $langs;
10065 
10066  $ret = '';
10067 
10068  $ret .= '<div class="divadvancedsearchfieldcomp inline-block">';
10069  //$ret .= '<button type="submit" class="liste_titre button_removefilter" name="button_removefilter_x" value="x"><span class="fa fa-remove"></span></button>';
10070  $ret .= '<a href="#" class="dropdownsearch-toggle unsetcolor">';
10071  $ret .= '<span class="fas fa-filter linkobject boxfilter pictofixedwidth" title="'.dol_escape_htmltag($langs->trans("Filters")).'" id="idsubimgproductdistribution"></span>';
10072  //$ret .= $langs->trans("Filters");
10073  $ret .= '</a>';
10074 
10075  $ret .= '<div class="divadvancedsearchfieldcompinput inline-block minwidth500 maxwidth300onsmartphone">';
10076 
10077  // Show select fields as tags.
10078  $ret .= '<div name="divsearch_component_params" class="noborderbottom search_component_params inline-block valignmiddle">';
10079 
10080  if ($search_component_params_hidden) {
10081  if (!preg_match('/^\(.*\)$/', $search_component_params_hidden)) { // If $search_component_params_hidden does not start and end with ()
10082  $search_component_params_hidden .= '('.$search_component_params_hidden.')';
10083  }
10084  $errormessage = '';
10085  if (!dolCheckFilters($search_component_params_hidden, $errormessage)) {
10086  print 'ERROR in parsing search string';
10087  }
10088  $regexstring = '\(([^:\'\(\)]+:[^:\'\(\)]+:[^\(\)]+)\)';
10089  //var_dump($search_component_params_hidden);
10090  $htmltags = preg_replace_callback('/'.$regexstring.'/', 'dolForgeCriteriaCallback', $search_component_params_hidden);
10091  //var_dump($htmltags);
10092  $ret .= '<span class="marginleftonlyshort valignmiddle tagsearch"><span class="tagsearchdelete select2-selection__choice__remove">x</span> '.$htmltags.'</span>';
10093  }
10094 
10095  //$ret .= '<button type="submit" class="liste_titre button_search paddingleftonly" name="button_search_x" value="x"><span class="fa fa-search"></span></button>';
10096 
10097  //$ret .= search_component_params
10098  //$texttoshow = '<div class="opacitymedium inline-block search_component_searchtext">'.$langs->trans("Search").'</div>';
10099  //$ret .= '<div class="search_component inline-block valignmiddle">'.$texttoshow.'</div>';
10100 
10101  $show_search_component_params_hidden = 1;
10102  if ($show_search_component_params_hidden) {
10103  $ret .= '<input type="hidden" name="show_search_component_params_hidden" value="1">';
10104  }
10105  $ret .= "<!-- We store the full search string into this field. For example: (t.ref:like:'SO-%') and ((t.ref:like:'CO-%') or (t.ref:like:'AA%')) -->";
10106  $ret .= '<input type="hidden" name="search_component_params_hidden" value="'.dol_escape_htmltag($search_component_params_hidden).'">';
10107  // For compatibility with forms that show themself the search criteria in addition of this component, we output the fields
10108  foreach ($arrayofcriterias as $criterias) {
10109  foreach ($criterias as $criteriafamilykey => $criteriafamilyval) {
10110  if (in_array('search_'.$criteriafamilykey, $arrayofinputfieldsalreadyoutput)) {
10111  continue;
10112  }
10113  if (in_array($criteriafamilykey, array('rowid', 'ref_ext', 'entity', 'extraparams'))) {
10114  continue;
10115  }
10116  if (in_array($criteriafamilyval['type'], array('date', 'datetime', 'timestamp'))) {
10117  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_start">';
10118  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_startyear">';
10119  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_startmonth">';
10120  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_startday">';
10121  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_end">';
10122  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_endyear">';
10123  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_endmonth">';
10124  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'_endday">';
10125  } else {
10126  $ret .= '<input type="hidden" name="search_'.$criteriafamilykey.'">';
10127  }
10128  }
10129  }
10130 
10131  $ret .= '</div>';
10132 
10133  $ret .= "<!-- Syntax of Generic filter string: t.ref:like:'SO-%', t.date_creation:<:'20160101', t.date_creation:<:'2016-01-01 12:30:00', t.nature:is:NULL, t.field2:isnot:NULL -->\n";
10134  $ret .= '<input type="text" placeholder="'.$langs->trans("Search").'" name="search_component_params_input" class="noborderbottom search_component_input" value="">';
10135 
10136  $ret .= '</div>';
10137  $ret .= '</div>';
10138 
10139  return $ret;
10140  }
10141 
10151  public function selectModelMail($prefix, $modelType = '', $default = 0, $addjscombo = 0)
10152  {
10153  global $langs, $user;
10154 
10155  $retstring = '';
10156 
10157  $TModels = array();
10158 
10159  include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
10160  $formmail = new FormMail($this->db);
10161  $result = $formmail->fetchAllEMailTemplate($modelType, $user, $langs);
10162 
10163  if ($default) {
10164  $TModels[0] = $langs->trans('DefaultMailModel');
10165  }
10166  if ($result > 0) {
10167  foreach ($formmail->lines_model as $model) {
10168  $TModels[$model->id] = $model->label;
10169  }
10170  }
10171 
10172  $retstring .= '<select class="flat" id="select_'.$prefix.'model_mail" name="'.$prefix.'model_mail">';
10173 
10174  foreach ($TModels as $id_model => $label_model) {
10175  $retstring .= '<option value="'.$id_model.'"';
10176  $retstring .= ">".$label_model."</option>";
10177  }
10178 
10179  $retstring .= "</select>";
10180 
10181  if ($addjscombo) {
10182  $retstring .= ajax_combobox('select_'.$prefix.'model_mail');
10183  }
10184 
10185  return $retstring;
10186  }
10187 
10199  public function buttonsSaveCancel($save_label = 'Save', $cancel_label = 'Cancel', $morebuttons = array(), $withoutdiv = 0, $morecss = '', $dol_openinpopup = '')
10200  {
10201  global $langs;
10202 
10203  $buttons = array();
10204 
10205  $save = array(
10206  'name' => 'save',
10207  'label_key' => $save_label,
10208  );
10209 
10210  if ($save_label == 'Create' || $save_label == 'Add' ) {
10211  $save['name'] = 'add';
10212  } elseif ($save_label == 'Modify') {
10213  $save['name'] = 'edit';
10214  }
10215 
10216  $cancel = array(
10217  'name' => 'cancel',
10218  'label_key' => 'Cancel',
10219  );
10220 
10221  !empty($save_label) ? $buttons[] = $save : '';
10222 
10223  if (!empty($morebuttons)) {
10224  $buttons[] = $morebuttons;
10225  }
10226 
10227  !empty($cancel_label) ? $buttons[] = $cancel : '';
10228 
10229  $retstring = $withoutdiv ? '': '<div class="center">';
10230 
10231  foreach ($buttons as $button) {
10232  $addclass = empty($button['addclass']) ? '' : $button['addclass'];
10233  $retstring .= '<input type="submit" class="button button-'.$button['name'].($morecss ? ' '.$morecss : '').' '.$addclass.'" name="'.$button['name'].'" value="'.dol_escape_htmltag($langs->trans($button['label_key'])).'">';
10234  }
10235  $retstring .= $withoutdiv ? '': '</div>';
10236 
10237  if ($dol_openinpopup) {
10238  $retstring .= '<!-- buttons are shown into a $dol_openinpopup='.$dol_openinpopup.' context, so we enable the close of dialog on cancel -->'."\n";
10239  $retstring .= '<script>';
10240  $retstring .= 'jQuery(".button-cancel").click(function(e) {
10241  e.preventDefault(); console.log(\'We click on cancel in iframe popup '.$dol_openinpopup.'\');
10242  window.parent.jQuery(\'#idfordialog'.$dol_openinpopup.'\').dialog(\'close\');
10243  });';
10244  $retstring .= '</script>';
10245  }
10246 
10247  return $retstring;
10248  }
10249 }
if(!function_exists('dol_getprefix')) dol_include_once($relpath, $classname= '')
Make an include_once using default root and alternate root if it fails.
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dolIsAllowedForPreview($file)
Return if a file is qualified for preview.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
getMaxFileSizeArray()
Return the max allowed for file upload.
img_edit($titlealt= 'default', $float=0, $other= '')
Show logo editer/modifier fiche.
form_remise_dispo($page, $selected, $htmlname, $socid, $amount, $filter= '', $maxvalue=0, $more= '', $hidelist=0, $discount_type=0)
Show a select box with available absolute discounts.
ajax_autocompleter($selected, $htmlname, $url, $urloption= '', $minLength=2, $autoselect=0, $ajaxoptions=array(), $moreparams= '')
Generic function that return javascript to add to a page to transform a common input field into an au...
Definition: ajax.lib.php:47
Classe permettant la generation du formulaire html d&#39;envoi de mail unitaire Usage: $formail = new For...
selectDate($set_time= '', $prefix= 're', $h=0, $m=0, $empty=0, $form_name="", $d=1, $addnowlink=0, $disabled=0, $fullday= '', $addplusone= '', $adddateof= '', $openinghours= '', $stepminutes=1, $labeladddateof= '', $placeholder= '', $gm= 'auto')
Show a HTML widget to input a date or combo list for day, month, years and optionaly hours and minute...
form_availability($page, $selected= '', $htmlname= 'availability', $addempty=0)
Show a form to select a delivery delay.
if($cancel &&!$id) if($action== 'add'&&!$cancel) if($action== 'delete') if($id) $form
Actions.
Definition: card.php:142
const STATUS_CLOSED
Warehouse closed, inactive.
selectSituationInvoices($selected= '', $socid=0)
Creates HTML last in cycle situation invoices selector.
select_type_of_lines($selected= '', $htmlname= 'type', $showempty=0, $hidetext=0, $forceall=0)
Return list of types of lines (product or service) Example: 0=product, 1=service, 9=other (for extern...
searchComponent($arrayofcriterias, $search_component_params, $arrayofinputfieldsalreadyoutput=array(), $search_component_params_hidden= '')
Output the component to make advanced search criteries.
select_company($selected= '', $htmlname= 'socid', $filter= '', $showempty= '', $showtype=0, $forcecombo=0, $events=array(), $limit=0, $morecss= 'minwidth100', $moreparam= '', $selected_input_value= '', $hidelabel=1, $ajaxoptions=array(), $multiple=false, $excludeids=array(), $showcode=0)
Output html form to select a third party.
__construct($db)
Constructor.
Class to parse product price expressions.
load_cache_availability()
Load int a cache property th elist of possible delivery delays.
formconfirm($page, $title, $question, $action, $formquestion= '', $selectedchoice= '', $useajax=0, $height=0, $width=500, $disableformtag=0, $labelbuttonyes= 'Yes', $labelbuttonno= 'No')
Show a confirmation HTML form or AJAX popup.
select_country($selected= '', $htmlname= 'country_id', $htmloption= '', $maxlength=0, $morecss= 'minwidth300', $usecodeaskey= '', $showempty=1, $disablefavorites=0, $addspecialentries=0, $exclude_country_code=array(), $hideflags=0)
Return combo list of activated countries, into language of user.
selectForForms($objectdesc, $htmlname, $preselectedvalue, $showempty= '', $searchkey= '', $placeholder= '', $morecss= '', $moreparams= '', $forcecombo=0, $disabled=0, $selected_input_value= '')
Generic method to select a component from a combo list.
dol_htmlentities($string, $flags=ENT_QUOTES|ENT_SUBSTITUTE, $encoding= 'UTF-8', $double_encode=false)
Replace htmlentities functions.
const STATUS_OPEN_ALL
Warehouse open and operations for customer shipping, supplier dispatch, internal stock transfers/corr...
formInputReason($page, $selected= '', $htmlname= 'demandreason', $addempty=0)
Output HTML form to select list of input reason (events that triggered an object creation, like after sending an emailing, making an advert, ...) List found into table c_input_reason loaded by loadCacheInputReason.
$conf db
API class for accounts.
Definition: inc.php:41
showrefnav($object, $paramid, $morehtml= '', $shownav=1, $fieldid= 'rowid', $fieldref= 'ref', $morehtmlref= '', $moreparam= '', $nodbprefix=0, $morehtmlleft= '', $morehtmlstatus= '', $morehtmlright= '')
Return a HTML area with the reference of object and a navigation bar for a business object Note: To c...
Class to manage contact/addresses.
showbarcode(&$object, $width=100, $morecss= '')
Return HTML code to output a barcode.
load_cache_conditions_paiements()
Load into cache list of payment terms.
img_help($usehelpcursor=1, $usealttitle=1)
Show help logo with cursor &quot;?&quot;.
selectMassAction($selected, $arrayofaction, $alwaysvisible=0, $name= 'massaction', $cssclass= 'checkforselect')
Generate select HTML to choose massaction.
select_users($selected= '', $htmlname= 'userid', $show_empty=0, $exclude=null, $disabled=0, $include= '', $enableonly= '', $force_entity= '0')
Return the HTML select list of users.
dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles=1, $removeclassattribute=1, $cleanalsojavascript=0, $allowiframe=0)
Clean a string to keep only desirable HTML tags.
constructProductListOption(&$objp, &$opt, &$optJson, $price_level, $selected, $hidepriceinlabel=0, $filterkey= '', $novirtualstock=0)
Function to forge the string with OPTIONs of SELECT.
select_date($set_time= '', $prefix= 're', $h=0, $m=0, $empty=0, $form_name="", $d=1, $addnowlink=0, $nooutput=0, $disabled=0, $fullday= '', $addplusone= '', $adddateof= '')
Show a HTML widget to input a date or combo list for day, month, years and optionaly hours and minute...
select_types_paiements($selected= '', $htmlname= 'paiementtype', $filtertype= '', $format=0, $empty=1, $noadmininfo=0, $maxlength=0, $active=1, $morecss= '', $nooutput=0)
Return list of payment methods Constant MAIN_DEFAULT_PAYMENT_TYPE_ID can used to set default value bu...
textwithpicto($text, $htmltext, $direction=1, $type= 'help', $extracss= '', $noencodehtmltext=0, $notabs=3, $tooltiptrigger= '', $forcenowrap=0)
Show a text with a picto and a tooltip on picto.
selectProjectsList($selected= '', $htmlname= 'projectid', $filtertype= '', $limit=20, $filterkey= '', $status=1, $outputmode=0, $showempty= '1', $forcecombo=0, $morecss= '')
Return list of projects.
showFilterButtons($pos= '')
Return HTML to show the search and clear seach button.
Class to manage products or services.
dol_escape_js($stringtoescape, $mode=0, $noescapebackslashn=0)
Returns text escaped for inclusion into javascript code.
dol_now($mode= 'auto')
Return date for now.
showLinkedObjectBlock($object, $morehtmlright= '', $compatibleImportElementsList=false, $title= 'RelatedObjects')
Show linked object block.
select_incoterms($selected= '', $location_incoterms= '', $page= '', $htmlname= 'incoterm_id', $htmloption= '', $forcecombo=1, $events=array(), $disableautocomplete=0)
Return select list of incoterms.
form_conditions_reglement($page, $selected= '', $htmlname= 'cond_reglement_id', $addempty=0, $type= '', $filtertype=-1, $deposit_percent=-1)
Show a form to select payment conditions.
Class to manage Dolibarr users.
Definition: user.class.php:44
select_remises($selected, $htmlname, $filter, $socid, $maxvalue=0)
Return HTML combo list of absolute discounts.
showFilterAndCheckAddButtons($addcheckuncheckall=0, $cssclass= 'checkforaction', $calljsfunction=0, $massactionname="massaction")
Return HTML to show the search and clear seach button.
selectShippingMethod($selected= '', $htmlname= 'shipping_method_id', $filtre= '', $useempty=0, $moreattrib= '', $noinfoadmin=0, $morecss= '')
Return a HTML select list of shipping mode.
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default= '')
Return dolibarr global constant string value.
ajax_multiautocompleter($htmlname, $fields, $url, $option= '', $minLength=2, $autoselect=0)
Generic function that return javascript to add to a page to transform a common input field into an au...
Definition: ajax.lib.php:278
select_dolusers($selected= '', $htmlname= 'userid', $show_empty=0, $exclude=null, $disabled=0, $include= '', $enableonly= '', $force_entity= '0', $maxlength=0, $showstatus=0, $morefilter= '', $show_every=0, $enableonlytext= '', $morecss= '', $noactive=0, $outputmode=0, $multiple=false, $forcecombo=0)
Return select list of users.
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom= 'UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
dol_nl2br($stringtoencode, $nl2brmode=0, $forxml=false)
Replace CRLF in string with a HTML BR tag.
selectyesno($htmlname, $value= '', $option=0, $disabled=false, $useempty=0, $addjscombo=0, $morecss= '', $labelyes= 'Yes', $labelno= 'No')
Return an html string with a select combo box to choose yes or no.
const TYPE_SERVICE
Service.
select_produits_fournisseurs($socid, $selected= '', $htmlname= 'productid', $filtertype= '', $filtre= '', $ajaxoptions=array(), $hidelabel=0, $alsoproductwithnosupplierprice=0, $morecss= '', $placeholder= '')
Return list of products for customer (in Ajax if Ajax activated or go to select_produits_fournisseurs...
formSelectAccount($page, $selected= '', $htmlname= 'fk_account', $addempty=0)
Display form to select bank account.
selectAvailabilityDelay($selected= '', $htmlname= 'availid', $filtertype= '', $addempty=0, $morecss= '')
Retourne la liste des types de delais de livraison possibles.
const TYPE_PRODUCT
Regular product.
load_cache_types_fees()
Load into cache cache_types_fees, array of types of fees.
get_default_npr(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Fonction qui renvoie si tva doit etre tva percue recuperable.
editInPlace($object, $value, $htmlname, $condition, $inputType= 'textarea', $editvalue=null, $extObject=null, $custommsg=null)
Output edit in place form.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition: repair.php:122
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...
Class to manage bank accounts.
img_warning($titlealt= 'default', $moreatt= '', $morecss= 'pictowarning')
Show warning logo.
formSelectShippingMethod($page, $selected= '', $htmlname= 'shipping_method_id', $addempty=0)
Display form to select shipping mode.
price($amount, $form=0, $outlangs= '', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code= '')
Function to format a value into an amount for visual output Function used into PDF and HTML pages...
currency_name($code_iso, $withcode= '', $outputlangs=null)
Return label of currency or code+label.
Class to manage hooks.
getImageFileNameForSize($file, $extName, $extImgTarget= '')
Return the filename of file to get the thumbs.
select_comptes($selected= '', $htmlname= 'accountid', $status=0, $filtre= '', $useempty=0, $moreattrib= '', $showcurrency=0, $morecss= '', $nooutput=0)
Return a HTML select list of bank accounts.
showDimensionInBestUnit($dimension, $unit, $type, $outputlangs, $round=-1, $forceunitoutput= 'no', $use_short_label=0)
Output a dimension with best unit.
Class to manage generation of HTML components Only common components must be here.
const STATUS_OPEN_INTERNAL
Warehouse open and operations for stock transfers/corrections allowed (not for customer shipping and ...
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form...
Class to manage third parties objects (customers, suppliers, prospects...)
dol_string_neverthesehtmltags($stringtoclean, $disallowed_tags=array('textarea'), $cleanalsosomestyles=0)
Clean a string from some undesirable HTML tags.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
select_contacts($socid, $selected= '', $htmlname= 'contactid', $showempty=0, $exclude= '', $limitto= '', $showfunction=0, $morecss= '', $showsoc=0, $forcecombo=0, $events=array(), $options_only=false, $moreparam= '', $htmlid= '')
Return list of all contacts (for a third party or all)
Class to manage categories.
getServerTimeZoneInt($refgmtdate= 'now')
Return server timezone int.
Definition: date.lib.php:83
print *****$script_file(".$version.") pid code
! Closing after partial payment: discount_vat, badcustomer or badsupplier, bankcharge, other ! Closing when no payment: replaced, abandoned
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin= '1', $morecss= 'hideonsmartphone', $textfordropdown= '')
Show information for admin users or standard users.
Class to manage projects.
form_modes_reglement($page, $selected= '', $htmlname= 'mode_reglement_id', $filtertype= '', $active=1, $addempty=0, $type= '')
Show form with payment mode.
selectCurrency($selected= '', $htmlname= 'currency_id', $mode=0, $useempty= '')
Retourne la liste des devises, dans la langue de l&#39;utilisateur.
dol_strlen($string, $stringencoding= 'UTF-8')
Make a strlen call.
dolCheckFilters($sqlfilters, &$error= '')
Return if a $sqlfilters parameter is valid and will pass the preg_replace_callback() to replace Gener...
price2num($amount, $rounding= '', $option=0)
Function that return a number with universal decimal format (decimal separator is &#39;...
loadCacheInputReason()
Load into cache cache_demand_reason, array of input reasons.
Class to manage building of HTML components.
selectUnits($selected= '', $htmlname= 'units', $showempty=0, $unit_type= '')
Creates HTML units selector (code =&gt; label)
img_picto($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt= '', $morecss= '', $marginleftonlyshort=2)
Show picto whatever it&#39;s its name (generic function)
select_dolusers_forevent($action= '', $htmlname= 'userid', $show_empty=0, $exclude=null, $disabled=0, $include= '', $enableonly= '', $force_entity= '0', $maxlength=0, $showstatus=0, $morefilter= '', $showproperties=0, $listofuserid=array(), $listofcontactid=array(), $listofotherid=array())
Return select list of users.
selectInvoiceRec($selected= '', $htmlname= 'facrecid', $maxlength=24, $option_only=0, $show_empty= '1', $forcefocus=0, $disabled=0, $morecss= 'maxwidth500')
Output a combo list with invoices qualified for a third party.
select_thirdparty_list($selected= '', $htmlname= 'socid', $filter= '', $showempty= '', $showtype=0, $forcecombo=0, $events=array(), $filterkey= '', $outputmode=0, $limit=0, $morecss= 'minwidth100', $moreparam= '', $multiple=false, $excludeids=array(), $showcode=0)
Output html form to select a third party.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
select_produits_fournisseurs_list($socid, $selected= '', $htmlname= 'productid', $filtertype= '', $filtre= '', $filterkey= '', $statut=-1, $outputmode=0, $limit=100, $alsoproductwithnosupplierprice=0, $morecss= '', $showstockinlist=0, $placeholder= '')
Return list of suppliers products.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart= '')
Return a path to have a the directory according to object where files are stored. ...
load_cache_types_paiements()
Charge dans cache la liste des types de paiements possibles.
showCheckAddButtons($cssclass= 'checkforaction', $calljsfunction=0, $massactionname="massaction")
Return HTML to show the search and clear search button.
form_project($page, $socid, $selected= '', $htmlname= 'projectid', $discard_closed=0, $maxlength=20, $forcefocus=0, $nooutput=0)
Show a form to select a project.
getSelectConditionsPaiements($selected=0, $htmlname= 'condid', $filtertype=-1, $addempty=0, $noinfoadmin=0, $morecss= '', $deposit_percent=-1)
Return list of payment modes.
select_produits_list($selected= '', $htmlname= 'productid', $filtertype= '', $limit=20, $price_level=0, $filterkey= '', $status=1, $finished=2, $outputmode=0, $socid=0, $showempty= '1', $forcecombo=0, $morecss= '', $hidepriceinlabel=0, $warehouseStatus= '', $status_purchase=-1)
Return list of products for a customer.
select_address($selected, $socid, $htmlname= 'address_id', $showempty=0)
Return list of delivery address.
dol_string_unaccent($str)
Clean a string from all accent characters to be used as ref, login or by dol_sanitizeFileName.
select_currency($selected= '', $htmlname= 'currency_id')
Retourne la liste des devises, dans la langue de l&#39;utilisateur.
select_product_fourn_price($productid, $htmlname= 'productfournpriceid', $selected_supplier= '')
Return list of suppliers prices for a product.
form_multicurrency_code($page, $selected= '', $htmlname= 'multicurrency_code')
Show form with multicurrency code.
selectDateToDate($set_time= '', $set_time_end= '', $prefix= 're', $empty=0, $forcenewline=0)
Show 2 HTML widget to input a date or combo list for day, month, years and optionaly hours and minute...
static showphoto($modulepart, $object, $width=100, $height=0, $caneditfield=0, $cssclass= 'photowithmargin', $imagesize= '', $addlinktofullsize=1, $cache=0, $forcecapture= '', $noexternsourceoverwrite=0)
Return HTML code to output a photo.
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete= 'resolve', $idforemptyvalue= '-1')
Convert a html select field into an ajax combobox.
Definition: ajax.lib.php:429
if(isModEnabled('facture')&&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur')&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)&&$user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice')&&$user->rights->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->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:742
textwithtooltip($text, $htmltext, $tooltipon=1, $direction=0, $img= '', $extracss= '', $notabs=3, $incbefore= '', $noencodehtmltext=0, $tooltiptrigger= '', $forcenowrap=0)
Show a text and picto with tooltip on text or picto.
editfieldval($text, $htmlname, $value, $object, $perm, $typeofdata= 'string', $editvalue= '', $extObject=null, $custommsg=null, $moreparam= '', $notabletag=0, $formatfunc= '', $paramid= 'id', $gm= 'auto')
Output value of a field for an editable field.
Class to manage standard extra languages.
static selectarray($htmlname, $array, $id= '', $show_empty=0, $key_in_label=0, $value_as_key=0, $moreparam= '', $translate=0, $maxlen=0, $disabled=0, $sort= '', $morecss= '', $addjscombo=1, $moreparamonempty= '', $disablebademail=0, $nohtmlescape=0)
Return a HTML select string, built from an array of key+value.
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...
select_type_fees($selected= '', $htmlname= 'type', $showempty=0)
Return list of types of notes.
select_bom($selected= '', $htmlname= 'bom_id', $limit=0, $status=1, $type=1, $showempty= '1', $morecss= '', $nooutput= '', $forcecombo=0)
Return list of BOM for customer in Ajax if Ajax activated or go to select_produits_list.
selectMembersList($selected= '', $htmlname= 'adherentid', $filtertype= '', $limit=20, $filterkey= '', $status=1, $outputmode=0, $showempty= '1', $forcecombo=0, $morecss= '')
Return list of adherents.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
testSqlAndScriptInject($val, $type)
Security: WAF layer for SQL Injection and XSS Injection (scripts) protection (Filters on GET...
Definition: main.inc.php:87
select_all_categories($type, $selected= '', $htmlname="parent", $maxlength=64, $markafterid=0, $outputmode=0, $include=0, $morecss= '')
Return list of categories having choosed type.
editfieldkey($text, $htmlname, $preselected, $object, $perm, $typeofdata= 'string', $moreparam= '', $fieldrequired=0, $notabletag=0, $paramid= 'id', $help= '')
Output key field for an editable field.
selectEstablishments($selected= '', $htmlname= 'entity', $status=0, $filtre= '', $useempty=0, $moreattrib= '')
Return a HTML select list of establishment.
load_cache_transport_mode()
Load in cache list of transport mode.
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
get_default_tva(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Function that return vat rate of a product line (according to seller, buyer and product vat rate) VAT...
form_users($page, $selected= '', $htmlname= 'userid', $exclude= '', $include= '')
Show a select form to choose a user.
dol_print_email($email, $cid=0, $socid=0, $addlink=0, $max=64, $showinvalid=1, $withpicto=0)
Show EMail link formatted for HTML output.
static multiselectarray($htmlname, $array, $selected=array(), $key_in_label=0, $value_as_key=0, $morecss= '', $translate=0, $width=0, $moreattrib= '', $elemtype= '', $placeholder= '', $addjscombo=-1)
Show a multiselect form from an array.
newToken()
Return the value of token currently saved into session with name &#39;newtoken&#39;.
Class to manage a WYSIWYG editor.
widgetForTranslation($fieldname, $object, $perm, $typeofdata= 'string', $check= '', $morecss= '')
Output edit in place form.
dol_trunc($string, $size=40, $trunc= 'right', $stringencoding= 'UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding &#39;…&#39; if string larger than length. ...
load_tva($htmlname= 'tauxtva', $selectedrate= '', $societe_vendeuse= '', $societe_acheteuse= '', $idprod=0, $info_bits=0, $type= '', $options_only=false, $mode=0)
Output an HTML select vat rate.
select_dolgroups($selected= '', $htmlname= 'groupid', $show_empty=0, $exclude= '', $disabled=0, $include= '', $enableonly= '', $force_entity= '0', $multiple=false, $morecss= '')
Return select list of groups.
selectcontacts($socid, $selected= '', $htmlname= 'contactid', $showempty=0, $exclude= '', $limitto= '', $showfunction=0, $morecss= '', $options_only=false, $showsoc=0, $forcecombo=0, $events=array(), $moreparam= '', $htmlid= '', $multiple=false, $disableifempty=0)
Return HTML code of the SELECT of list of all contacts (for a third party or all).
selectPriceBaseType($selected= '', $htmlname= 'price_base_type', $addjscombo=0)
Selection HT or TTC.
Class to manage invoices.
form_confirm($page, $title, $question, $action, $formquestion= '', $selectedchoice="", $useajax=0, $height=170, $width=500)
Show a confirmation HTML form or AJAX popup.
selectExpenseCategories($selected= '', $htmlname= 'fk_c_exp_tax_cat', $useempty=0, $excludeid=array(), $target= '', $default_selected=0, $params=array(), $info_admin=1)
Return HTML to show the select of expense categories.
form_date($page, $selected, $htmlname, $displayhour=0, $displaymin=0, $nooutput=0, $type= '')
Show a form + html select a date.
selectTicketsList($selected= '', $htmlname= 'ticketid', $filtertype= '', $limit=20, $filterkey= '', $status=1, $outputmode=0, $showempty= '1', $forcecombo=0, $morecss= '')
Return list of tickets.
selectModelMail($prefix, $modelType= '', $default=0, $addjscombo=0)
selectModelMail
select_export_model($selected= '', $htmlname= 'exportmodelid', $type= '', $useempty=0)
Return list of export templates.
form_multicurrency_rate($page, $rate= '', $htmlname= 'multicurrency_tx', $currency= '')
Show form with multicurrency rate.
picto_from_langcode($codelang, $moreatt= '', $notitlealt=0)
Return img flag of country for a language code or country code.
selectTransportMode($selected= '', $htmlname= 'transportmode', $format=0, $empty=1, $noadmininfo=0, $maxlength=0, $active=1, $morecss= '')
Return list of transport mode for intracomm report.
selectInputReason($selected= '', $htmlname= 'demandreasonid', $exclude= '', $addempty=0, $morecss= '', $notooltip=0)
Return list of input reason (events that triggered an object creation, like after sending an emailing...
form_contacts($page, $societe, $selected= '', $htmlname= 'contactid')
Show forms to select a contact.
currentToken()
Return the value of token currently saved into session with name &#39;token&#39;.
formSelectTransportMode($page, $selected= '', $htmlname= 'transport_mode_id', $active=1, $addempty=0)
Show form with transport mode.
getAdvancedPreviewUrl($modulepart, $relativepath, $alldata=0, $param= '')
Return URL we can use for advanced preview links.
select_produits($selected= '', $htmlname= 'productid', $filtertype= '', $limit=0, $price_level=0, $status=1, $finished=2, $selected_input_value= '', $hidelabel=0, $ajaxoptions=array(), $socid=0, $showempty= '1', $forcecombo=0, $morecss= '', $hidepriceinlabel=0, $warehouseStatus= '', $selected_combinations=null, $nooutput=0, $status_purchase=-1)
Return list of products for customer in Ajax if Ajax activated or go to select_produits_list.
buttonsSaveCancel($save_label= 'Save', $cancel_label= 'Cancel', $morebuttons=array(), $withoutdiv=0, $morecss= '', $dol_openinpopup= '')
Output the buttons to submit a creation/edit form.
$formconfirm
if ($action == &#39;delbookkeepingyear&#39;) {
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:119
isInEEC($object)
Return if a country of an object is inside the EEC (European Economic Community)
Class to manage predefined suppliers products.
form_thirdparty($page, $selected= '', $htmlname= 'socid', $filter= '', $showempty=0, $showtype=0, $forcecombo=0, $events=array(), $nooutput=0, $excludeids=array())
Output html select to select thirdparty.
measuringUnitString($unit, $measuring_style= '', $scale= '', $use_short_label=0, $outputlangs=null)
Return translation label of a unit key.
load_cache_vatrates($country_code)
Load into the cache vat rates of a country.
select_conditions_paiements($selected=0, $htmlname= 'condid', $filtertype=-1, $addempty=0, $noinfoadmin=0, $morecss= '', $deposit_percent=-1)
print list of payment modes.
selectMultiCurrency($selected= '', $htmlname= 'multicurrency_code', $useempty=0, $filter= '', $excludeConfCurrency=false, $morecss= '')
Return array of currencies in user language.
vatrate($rate, $addpercent=false, $info_bits=0, $usestarfornpr=0, $html=0)
Return a string with VAT rate label formated for view output Used into pdf and HTML pages...