dolibarr 21.0.0-alpha
html.formproduct.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2008-2009 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2015-2017 Francis Appels <francis.appels@yahoo.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
26require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
27
33{
37 public $db;
38
42 public $error = '';
43
44 // Cache arrays
48 public $cache_warehouses = array();
52 public $cache_lot = array();
56 public $cache_workstations = array();
57
58
64 public function __construct($db)
65 {
66 $this->db = $db;
67 }
68
69
87 public function loadWarehouses($fk_product = 0, $batch = '', $status = '', $sumStock = true, $exclude = array(), $stockMin = false, $orderBy = 'e.ref')
88 {
89 global $conf, $langs;
90
91 if (empty($fk_product) && count($this->cache_warehouses)) {
92 return 0; // Cache already loaded and we do not want a list with information specific to a product
93 }
94
95 $warehouseStatus = array();
96
97 if (preg_match('/warehouseclosed/', $status)) {
98 $warehouseStatus[] = Entrepot::STATUS_CLOSED;
99 }
100 if (preg_match('/warehouseopen/', $status)) {
101 $warehouseStatus[] = Entrepot::STATUS_OPEN_ALL;
102 }
103 if (preg_match('/warehouseinternal/', $status)) {
104 $warehouseStatus[] = Entrepot::STATUS_OPEN_INTERNAL;
105 }
106
107 $sql = "SELECT e.rowid, e.ref as label, e.description, e.fk_parent";
108 if (!empty($fk_product) && $fk_product > 0) {
109 if (!empty($batch)) {
110 $sql .= ", pb.qty as stock";
111 } else {
112 $sql .= ", ps.reel as stock";
113 }
114 } elseif ($sumStock) {
115 $sql .= ", sum(ps.reel) as stock";
116 }
117 $sql .= " FROM ".$this->db->prefix()."entrepot as e";
118 $sql .= " LEFT JOIN ".$this->db->prefix()."product_stock as ps on ps.fk_entrepot = e.rowid";
119 if (!empty($fk_product) && $fk_product > 0) {
120 $sql .= " AND ps.fk_product = ".((int) $fk_product);
121 if (!empty($batch)) {
122 $sql .= " LEFT JOIN ".$this->db->prefix()."product_batch as pb on pb.fk_product_stock = ps.rowid AND pb.batch = '".$this->db->escape($batch)."'";
123 }
124 }
125 $sql .= " WHERE e.entity IN (".getEntity('stock').")";
126 if (count($warehouseStatus)) {
127 $sql .= " AND e.statut IN (".$this->db->sanitize(implode(',', $warehouseStatus)).")";
128 } else {
129 $sql .= " AND e.statut = 1";
130 }
131
132 if (is_array($exclude) && !empty($exclude)) {
133 $sql .= ' AND e.rowid NOT IN('.$this->db->sanitize(implode(',', $exclude)).')';
134 }
135
136 // minimum stock
137 if ($stockMin !== false) {
138 if (!empty($fk_product) && $fk_product > 0) {
139 if (!empty($batch)) {
140 $sql .= " AND pb.qty > ".((float) $stockMin);
141 } else {
142 $sql .= " AND ps.reel > ".((float) $stockMin);
143 }
144 }
145 }
146
147 if ($sumStock && empty($fk_product)) {
148 $sql .= " GROUP BY e.rowid, e.ref, e.description, e.fk_parent";
149
150 // minimum stock
151 if ($stockMin !== false) {
152 $sql .= " HAVING sum(ps.reel) > ".((float) $stockMin);
153 }
154 }
155 $sql .= " ORDER BY ".$orderBy;
156
157 dol_syslog(get_class($this).'::loadWarehouses', LOG_DEBUG);
158 $resql = $this->db->query($sql);
159 if ($resql) {
160 $num = $this->db->num_rows($resql);
161 $i = 0;
162 while ($i < $num) {
163 $obj = $this->db->fetch_object($resql);
164 if ($sumStock) {
165 $obj->stock = price2num($obj->stock, 5);
166 }
167 $this->cache_warehouses[$obj->rowid]['id'] = $obj->rowid;
168 $this->cache_warehouses[$obj->rowid]['label'] = $obj->label;
169 $this->cache_warehouses[$obj->rowid]['parent_id'] = $obj->fk_parent;
170 $this->cache_warehouses[$obj->rowid]['description'] = $obj->description;
171 $this->cache_warehouses[$obj->rowid]['stock'] = $obj->stock;
172 $i++;
173 }
174
175 // Full label init
176 foreach ($this->cache_warehouses as $obj_rowid => $tab) {
177 $this->cache_warehouses[$obj_rowid]['full_label'] = $this->get_parent_path($tab);
178 }
179
180 return $num;
181 } else {
182 dol_print_error($this->db);
183 return -1;
184 }
185 }
186
197 public function loadWorkstations($fk_product = 0, $exclude = array(), $orderBy = 'w.ref')
198 {
199 global $conf, $langs;
200
201 if (empty($fk_product) && count($this->cache_workstations)) {
202 return 0; // Cache already loaded and we do not want a list with information specific to a product
203 }
204
205 $sql = "SELECT w.rowid, w.ref as ref, w.label as label, w.type, w.nb_operators_required,w.thm_operator_estimated,w.thm_machine_estimated";
206 $sql .= " FROM ".$this->db->prefix()."workstation_workstation as w";
207 $sql .= " WHERE 1 = 1";
208 if (!empty($fk_product) && $fk_product > 0) {
209 $sql .= " AND w.fk_product = ".((int) $fk_product);
210 }
211 $sql .= " AND w.entity IN (".getEntity('workstation').")";
212
213 if (is_array($exclude) && !empty($exclude)) {
214 $sql .= ' AND w.rowid NOT IN('.$this->db->sanitize(implode(',', $exclude)).')';
215 }
216
217 $sql .= " ORDER BY ".$orderBy;
218
219 dol_syslog(get_class($this).'::loadWorkstations', LOG_DEBUG);
220 $resql = $this->db->query($sql);
221 if ($resql) {
222 $num = $this->db->num_rows($resql);
223 $i = 0;
224 while ($i < $num) {
225 $obj = $this->db->fetch_object($resql);
226
227 $this->cache_workstations[$obj->rowid]['id'] = $obj->rowid;
228 $this->cache_workstations[$obj->rowid]['ref'] = $obj->ref;
229 $this->cache_workstations[$obj->rowid]['label'] = $obj->label;
230 $this->cache_workstations[$obj->rowid]['type'] = $obj->type;
231 $this->cache_workstations[$obj->rowid]['nb_operators_required'] = $obj->nb_operators_required;
232 $this->cache_workstations[$obj->rowid]['thm_operator_estimated'] = $obj->thm_operator_estimated;
233 $this->cache_workstations[$obj->rowid]['thm_machine_estimated'] = $obj->thm_machine_estimated;
234 $i++;
235 }
236
237 return $num;
238 } else {
239 dol_print_error($this->db);
240 return -1;
241 }
242 }
243
244 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
255 private function get_parent_path($tab, $final_label = '')
256 {
257 //phpcs:enable
258 if (empty($final_label)) {
259 $final_label = $tab['label'];
260 }
261
262 if (empty($tab['parent_id']) || getDolGlobalInt('MAIN_WAREHOUSE_LIST_DISPLAY_MODE') === 1) {
263 return $final_label;
264 } else {
265 if (!empty($this->cache_warehouses[$tab['parent_id']])) {
266 if (getDolGlobalInt('MAIN_WAREHOUSE_LIST_DISPLAY_MODE') !== 2 || (getDolGlobalInt('MAIN_WAREHOUSE_LIST_DISPLAY_MODE') === 2 && empty($this->cache_warehouses[$tab['parent_id']]['parent_id']))) {
267 $final_label = $this->cache_warehouses[$tab['parent_id']]['label'] . ' >> ' . $final_label;
268 }
269
270 return $this->get_parent_path($this->cache_warehouses[$tab['parent_id']], $final_label);
271 }
272 }
273
274 return $final_label;
275 }
276
303 public function selectWarehouses($selected = '', $htmlname = 'idwarehouse', $filterstatus = '', $empty = 0, $disabled = 0, $fk_product = 0, $empty_label = '', $showstock = 0, $forcecombo = 0, $events = array(), $morecss = 'minwidth200', $exclude = array(), $showfullpath = 1, $stockMin = false, $orderBy = 'e.ref', $multiselect = 0)
304 {
305 global $conf, $langs, $user, $hookmanager;
306
307 dol_syslog(get_class($this)."::selectWarehouses " . (is_array($selected) ? 'selected is array' : $selected) . ", $htmlname, $filterstatus, $empty, $disabled, $fk_product, $empty_label, $showstock, $forcecombo, $morecss", LOG_DEBUG);
308
309 $out = '';
310 if ((!getDolGlobalString('ENTREPOT_EXTRA_STATUS')) && ($filterstatus==="warehouseinternal")) {
311 $filterstatus = '';
312 }
313 if (!empty($fk_product) && $fk_product > 0) {
314 $this->cache_warehouses = array();
315 }
316
317 $this->loadWarehouses($fk_product, '', $filterstatus, true, $exclude, $stockMin, $orderBy);
318 $nbofwarehouses = count($this->cache_warehouses);
319
320 if ($conf->use_javascript_ajax && !$forcecombo) {
321 include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
322 $comboenhancement = ajax_combobox($htmlname, $events);
323 $out .= $comboenhancement;
324 }
325
326 if (strpos($htmlname, 'search_') !== 0) {
327 if (empty($user->fk_warehouse) || $user->fk_warehouse == -1) {
328 if (is_scalar($selected) && ($selected == '-2' || $selected == 'ifone') && getDolGlobalString('MAIN_DEFAULT_WAREHOUSE')) {
329 $selected = getDolGlobalString('MAIN_DEFAULT_WAREHOUSE');
330 }
331 } else {
332 if (is_scalar($selected) && ($selected == '-2' || $selected == 'ifone') && getDolGlobalString('MAIN_DEFAULT_WAREHOUSE_USER')) {
333 $selected = $user->fk_warehouse;
334 }
335 }
336 }
337
338 $out .= '<select '.($multiselect ? 'multiple ' : '').'class="flat'.($morecss ? ' '.$morecss : '').'"'.($disabled ? ' disabled' : '');
339 $out .= ' id="'.$htmlname.'" name="'.($htmlname.($multiselect ? '[]' : '').($disabled ? '_disabled' : '')).'"';
340 //$out .= ' placeholder="todo"'; // placeholder for select2 must be added by setting the id+placeholder js param when calling select2
341 $out .= '>';
342 if ($empty) {
343 $out .= '<option value="-1">'.($empty_label ? $empty_label : '&nbsp;').'</option>';
344 }
345 foreach ($this->cache_warehouses as $id => $arraytypes) {
346 $label = '';
347 if ($showfullpath) {
348 $label .= $arraytypes['full_label'];
349 } else {
350 $label .= $arraytypes['label'];
351 }
352 if (($fk_product || ($showstock > 0)) && ($arraytypes['stock'] != 0 || ($showstock > 0))) {
353 if ($arraytypes['stock'] <= 0) {
354 $label .= ' <span class="text-warning">('.$langs->trans("Stock").':'.$arraytypes['stock'].')</span>';
355 } else {
356 $label .= ' <span class="opacitymedium">('.$langs->trans("Stock").':'.$arraytypes['stock'].')</span>';
357 }
358 }
359
360 $out .= '<option value="'.$id.'"';
361 if (is_array($selected)) {
362 if (in_array($id, $selected)) {
363 $out .= ' selected';
364 }
365 } else {
366 if ($selected == $id || (!empty($selected) && preg_match('/^ifone/', $selected) && $nbofwarehouses == 1)) {
367 $out .= ' selected';
368 }
369 }
370 $out .= ' data-html="'.dol_escape_htmltag($label).'"';
371 $out .= '>';
372 $out .= $label;
373 $out .= '</option>';
374 }
375 $out .= '</select>';
376 if ($disabled) {
377 $out .= '<input type="hidden" name="'.$htmlname.'" value="'.(($selected > 0) ? $selected : '').'">';
378 }
379
380 $parameters = array(
381 'selected' => $selected,
382 'htmlname' => $htmlname,
383 'filterstatus' => $filterstatus,
384 'empty' => $empty,
385 'disabled ' => $disabled,
386 'fk_product' => $fk_product,
387 'empty_label' => $empty_label,
388 'showstock' => $showstock,
389 'forcecombo' => $forcecombo,
390 'events' => $events,
391 'morecss' => $morecss,
392 'exclude' => $exclude,
393 'showfullpath' => $showfullpath,
394 'stockMin' => $stockMin,
395 'orderBy' => $orderBy
396 );
397
398 $reshook = $hookmanager->executeHooks('selectWarehouses', $parameters, $this);
399 if ($reshook > 0) {
400 $out = $hookmanager->resPrint;
401 } elseif ($reshook == 0) {
402 $out .= $hookmanager->resPrint;
403 }
404
405 return $out;
406 }
407
427 public function selectWorkstations($selected = '', $htmlname = 'idworkstations', $empty = 0, $disabled = 0, $fk_product = 0, $empty_label = '', $forcecombo = 0, $events = array(), $morecss = 'minwidth200', $exclude = array(), $showfullpath = 1, $orderBy = 'e.ref')
428 {
429 global $conf, $langs, $user, $hookmanager;
430
431 dol_syslog(get_class($this)."::selectWorkstations $selected, $htmlname, $empty, $disabled, $fk_product, $empty_label, $forcecombo, $morecss", LOG_DEBUG);
432
433 $filterstatus = '';
434 $out = '';
435 if (!empty($fk_product) && $fk_product > 0) {
436 $this->cache_workstations = array();
437 }
438
439 $this->loadWorkstations($fk_product);
440 $nbofworkstations = count($this->cache_workstations);
441
442 if ($conf->use_javascript_ajax && !$forcecombo) {
443 include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
444 $comboenhancement = ajax_combobox($htmlname, $events);
445 $out .= $comboenhancement;
446 }
447
448 if (strpos($htmlname, 'search_') !== 0) {
449 if (empty($user->fk_workstation) || $user->fk_workstation == -1) {
450 if (($selected == '-2' || $selected == 'ifone') && getDolGlobalString('MAIN_DEFAULT_WORKSTATION')) {
451 $selected = getDolGlobalString('MAIN_DEFAULT_WORKSTATION');
452 }
453 } else {
454 if (($selected == '-2' || $selected == 'ifone') && getDolGlobalString('MAIN_DEFAULT_WORKSTATION')) {
455 $selected = $user->fk_workstation;
456 }
457 }
458 }
459
460 $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'"'.($disabled ? ' disabled' : '').' id="'.$htmlname.'" name="'.($htmlname.($disabled ? '_disabled' : '')).'">';
461 if ($empty) {
462 $out .= '<option value="-1">'.($empty_label ? $empty_label : '&nbsp;').'</option>';
463 }
464 foreach ($this->cache_workstations as $id => $arraytypes) {
465 $label = $arraytypes['label'];
466
467 $out .= '<option value="'.$id.'"';
468 if ($selected == $id || (preg_match('/^ifone/', $selected) && $nbofworkstations == 1)) {
469 $out .= ' selected';
470 }
471 $out .= ' data-html="'.dol_escape_htmltag($label).'"';
472 $out .= '>';
473 $out .= $label;
474 $out .= '</option>';
475 }
476 $out .= '</select>';
477 if ($disabled) {
478 $out .= '<input type="hidden" name="'.$htmlname.'" value="'.(($selected > 0) ? $selected : '').'">';
479 }
480
481 $parameters = array(
482 'selected' => $selected,
483 'htmlname' => $htmlname,
484 'filterstatus' => $filterstatus,
485 'empty' => $empty,
486 'disabled ' => $disabled,
487 'fk_product' => $fk_product,
488 'empty_label' => $empty_label,
489 'forcecombo' => $forcecombo,
490 'events' => $events,
491 'morecss' => $morecss,
492 'exclude' => $exclude,
493 'showfullpath' => $showfullpath,
494 'orderBy' => $orderBy
495 );
496
497 $reshook = $hookmanager->executeHooks('selectWorkstations', $parameters, $this);
498 if ($reshook > 0) {
499 $out = $hookmanager->resPrint;
500 } elseif ($reshook == 0) {
501 $out .= $hookmanager->resPrint;
502 }
503
504 return $out;
505 }
506
516 public function formSelectWarehouses($page, $selected = '', $htmlname = 'warehouse_id', $addempty = 0)
517 {
518 global $langs;
519 if ($htmlname != "none") {
520 print '<form method="POST" action="'.$page.'">';
521 print '<input type="hidden" name="action" value="setwarehouse">';
522 print '<input type="hidden" name="token" value="'.newToken().'">';
523 print '<table class="nobordernopadding">';
524 print '<tr><td>';
525 print $this->selectWarehouses($selected, $htmlname, '', $addempty);
526 print '</td>';
527 print '<td class="left"><input type="submit" class="button smallpaddingimp" value="'.$langs->trans("Modify").'"></td>';
528 print '</tr></table></form>';
529 } else {
530 if ($selected) {
531 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
532 $warehousestatic = new Entrepot($this->db);
533 $warehousestatic->fetch($selected);
534 print $warehousestatic->getNomUrl();
535 } else {
536 print "&nbsp;";
537 }
538 }
539 }
540
541 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
554 public function select_measuring_units($name = 'measuring_units', $measuring_style = '', $selected = '0', $adddefault = 0, $mode = 0)
555 {
556 //phpcs:enable
557 print $this->selectMeasuringUnits($name, $measuring_style, $selected, $adddefault, $mode);
558 }
559
572 public function selectMeasuringUnits($name = 'measuring_units', $measuring_style = '', $selected = '0', $adddefault = 0, $mode = 0, $morecss = 'minwidth75 maxwidth125')
573 {
574 global $langs, $db;
575
576 $langs->load("other");
577
578 $return = '';
579
580 // TODO Use a cache
581 require_once DOL_DOCUMENT_ROOT.'/core/class/cunits.class.php';
582 $measuringUnits = new CUnits($db);
583
584 $filter = array();
585 $filter['t.active'] = 1;
586 if ($measuring_style) {
587 $filter['t.unit_type'] = $measuring_style;
588 }
589
590 $result = $measuringUnits->fetchAll(
591 '',
592 'scale',
593 0,
594 0,
595 $filter
596 );
597 if ($result < 0) {
598 dol_print_error($db);
599 return -1;
600 } else {
601 $return .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$name.'" id="'.$name.'">';
602 if ($adddefault || $adddefault === '') {
603 $return .= '<option value="0"'.($selected === '0' ? ' selected' : '').'>'.($adddefault ? '('.$langs->trans("Default").')' : '').'</option>';
604 }
605
606 foreach ($measuringUnits->records as $lines) {
607 $return .= '<option value="';
608 if ($mode == 1) {
609 $return .= $lines->short_label;
610 } elseif ($mode == 2) {
611 $return .= $lines->scale;
612 } else {
613 $return .= $lines->id;
614 }
615 $return .= '"';
616 if ($mode == 1 && $lines->short_label == $selected) {
617 $return .= ' selected';
618 } elseif ($mode == 2 && $lines->scale == $selected) {
619 $return .= ' selected';
620 } elseif ($mode == 0 && $lines->id == $selected) {
621 $return .= ' selected';
622 }
623 $return .= '>';
624 if ($measuring_style == 'time') {
625 $return .= $langs->trans(ucfirst($lines->label));
626 } else {
627 $return .= $langs->trans($lines->label);
628 }
629 $return .= '</option>';
630 }
631 $return .= '</select>';
632 }
633
634 $return .= ajax_combobox($name);
635
636 return $return;
637 }
638
649 public function selectProductNature($name = 'finished', $selected = '', $mode = 0, $showempty = 1)
650 {
651 global $langs, $db;
652
653 $langs->load('products');
654
655 $return = '';
656
657 // TODO Use a cache
658 require_once DOL_DOCUMENT_ROOT.'/core/class/cproductnature.class.php';
659 $productNature = new CProductNature($db);
660
661 $filter = array();
662 $filter['t.active'] = 1;
663
664 $result = $productNature->fetchAll('', '', 0, 0, $filter);
665
666 if ($result < 0) {
667 dol_print_error($db);
668 return -1;
669 } else {
670 $return .= '<select class="flat" name="'.$name.'" id="'.$name.'">';
671 if ($showempty || ($selected == '' || $selected == '-1')) {
672 $return .= '<option value="-1"';
673 if ($selected == '' || $selected == '-1') {
674 $return .= ' selected';
675 }
676 $return .= '></option>';
677 }
678 if (!empty($productNature->records) && is_array($productNature->records)) {
679 foreach ($productNature->records as $lines) {
680 $return .= '<option value="';
681 if ($mode == 1) {
682 $return .= $lines->label;
683 } else {
684 $return .= $lines->code;
685 }
686
687 $return .= '"';
688
689 if ($mode == 1 && $lines->label == $selected) {
690 $return .= ' selected';
691 } elseif ($lines->code == $selected) {
692 $return .= ' selected';
693 }
694
695 $return .= '>';
696 $return .= $langs->trans($lines->label);
697 $return .= '</option>';
698 }
699 }
700 $return .= '</select>';
701 }
702
703 $return .= ajax_combobox($name);
704
705 return $return;
706 }
707
726 public function selectLotStock($selected = '', $htmlname = 'batch_id', $filterstatus = '', $empty = 0, $disabled = 0, $fk_product = 0, $fk_entrepot = 0, $objectLines = array(), $empty_label = '', $forcecombo = 0, $events = array(), $morecss = 'minwidth200')
727 {
728 global $conf, $langs;
729
730 dol_syslog(get_class($this)."::selectLotStock $selected, $htmlname, $filterstatus, $empty, $disabled, $fk_product, $fk_entrepot, $empty_label, $forcecombo, $morecss", LOG_DEBUG);
731
732 $out = '';
733 $productIdArray = array();
734 if (!is_array($objectLines) || !count($objectLines)) {
735 if (!empty($fk_product) && $fk_product > 0) {
736 $productIdArray[] = (int) $fk_product;
737 }
738 } else {
739 foreach ($objectLines as $line) {
740 if ($line->fk_product) {
741 $productIdArray[] = $line->fk_product;
742 }
743 }
744 }
745
746 $nboflot = $this->loadLotStock($productIdArray);
747
748 if ($conf->use_javascript_ajax && !$forcecombo) {
749 include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
750 $comboenhancement = ajax_combobox($htmlname, $events);
751 $out .= $comboenhancement;
752 }
753
754 $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'"'.($disabled ? ' disabled' : '').' id="'.$htmlname.'" name="'.($htmlname.($disabled ? '_disabled' : '')).'">';
755 if ($empty) {
756 $out .= '<option value="-1">'.($empty_label ? $empty_label : '&nbsp;').'</option>';
757 }
758 if (!empty($fk_product) && $fk_product > 0) {
759 $productIdArray = array((int) $fk_product); // only show lot stock for product
760 } else {
761 foreach ($this->cache_lot as $key => $value) {
762 $productIdArray[] = $key;
763 }
764 }
765
766 foreach ($productIdArray as $productId) {
767 foreach ($this->cache_lot[$productId] as $id => $arraytypes) {
768 if (empty($fk_entrepot) || $fk_entrepot == $arraytypes['entrepot_id']) {
769 $label = $arraytypes['entrepot_label'].' - ';
770 $label .= $arraytypes['batch'];
771 if ($arraytypes['qty'] <= 0) {
772 $label .= ' <span class=\'text-warning\'>('.$langs->trans("Stock").' '.$arraytypes['qty'].')</span>';
773 } else {
774 $label .= ' <span class=\'opacitymedium\'>('.$langs->trans("Stock").' '.$arraytypes['qty'].')</span>';
775 }
776
777 $out .= '<option value="'.$id.'"';
778
779 if ($selected == $id || ($selected == 'ifone' && $nboflot == 1)) {
780 $out .= ' selected';
781 }
782 $out .= ' data-html="'.dol_escape_htmltag($label).'"';
783 $out .= '>';
784 $out .= $label;
785 $out .= '</option>';
786 }
787 }
788 }
789 $out .= '</select>';
790 if ($disabled) {
791 $out .= '<input type="hidden" name="'.$htmlname.'" value="'.(($selected > 0) ? $selected : '').'">';
792 }
793
794 return $out;
795 }
796
797
798
809 public function selectLotDataList($htmlname = 'batch_id', $empty = 0, $fk_product = 0, $fk_entrepot = 0, $objectLines = array())
810 {
811 global $conf, $langs, $hookmanager;
812
813 dol_syslog(get_class($this)."::selectLotDataList $htmlname, $empty, $fk_product, $fk_entrepot", LOG_DEBUG);
814
815 $out = '';
816 $productIdArray = array();
817 if (!is_array($objectLines) || !count($objectLines)) {
818 if (!empty($fk_product) && $fk_product > 0) {
819 $productIdArray[] = (int) $fk_product;
820 }
821 } else {
822 foreach ($objectLines as $line) {
823 if ($line->fk_product) {
824 $productIdArray[] = $line->fk_product;
825 }
826 }
827 }
828
829 $nboflot = $this->loadLotStock($productIdArray);
830
831 if (!empty($fk_product) && $fk_product > 0) {
832 $productIdArray = array((int) $fk_product); // only show lot stock for product
833 } else {
834 foreach ($this->cache_lot as $key => $value) {
835 $productIdArray[] = $key;
836 }
837 }
838
839 if (empty($hookmanager)) {
840 include_once DOL_DOCUMENT_ROOT . '/core/class/hookmanager.class.php';
841 $hookmanager = new HookManager($this->db);
842 }
843 $hookmanager->initHooks(array('productdao'));
844 $parameters = array('productIdArray' => $productIdArray, 'htmlname' => $htmlname);
845 $reshook = $hookmanager->executeHooks('selectLotDataList', $parameters, $this);
846 if ($reshook < 0) {
847 return $hookmanager->error;
848 } elseif ($reshook > 0) {
849 return $hookmanager->resPrint;
850 } else {
851 $out .= $hookmanager->resPrint;
852 }
853
854 $out .= '<datalist id="'.$htmlname.'" >';
855 foreach ($productIdArray as $productId) {
856 if (array_key_exists($productId, $this->cache_lot)) {
857 foreach ($this->cache_lot[$productId] as $id => $arraytypes) {
858 if (empty($fk_entrepot) || $fk_entrepot == $arraytypes['entrepot_id']) {
859 $label = $arraytypes['entrepot_label'] . ' - ';
860 $label .= $arraytypes['batch'];
861 // Notice: Chrome show 1 line with value and 1 for label. Firefox show only 1 line with label
862 $out .= '<option data-warehouse="'.dol_escape_htmltag($label).'" value="' . $arraytypes['batch'] . '">' . ($conf->browser->name === 'chrome' ? '' : $arraytypes['batch']) . ' (' . $langs->trans('Stock Total') . ': ' . $arraytypes['qty'] . ')</option>';
863 }
864 }
865 }
866 }
867 $out .= '</datalist>';
868
869 return $out;
870 }
871
872
880 private function loadLotStock($productIdArray = array())
881 {
882 global $conf, $langs;
883
884 $cacheLoaded = false;
885 if (empty($productIdArray)) {
886 // only Load lot stock for given products
887 $this->cache_lot = array();
888 return 0;
889 }
890 if (count($productIdArray) && count($this->cache_lot)) {
891 // check cache already loaded for product id's
892 foreach ($productIdArray as $productId) {
893 $cacheLoaded = !empty($this->cache_lot[$productId]);
894 }
895 }
896 if ($cacheLoaded) {
897 return count($this->cache_lot);
898 } else {
899 // clear cache
900 $this->cache_lot = array();
901 $productIdList = implode(',', $productIdArray);
902
903 $batch_count = 0;
904 global $hookmanager;
905 if (empty($hookmanager)) {
906 include_once DOL_DOCUMENT_ROOT . '/core/class/hookmanager.class.php';
907 $hookmanager = new HookManager($this->db);
908 }
909 $hookmanager->initHooks(array('productdao'));
910 $parameters = array('productIdList' => $productIdList);
911 $reshook = $hookmanager->executeHooks('loadLotStock', $parameters, $this);
912 if ($reshook < 0) {
913 $this->error = $hookmanager->error;
914 return -1;
915 }
916 if (!empty($hookmanager->resArray['batch_list']) && is_array($hookmanager->resArray['batch_list'])) {
917 $this->cache_lot = $hookmanager->resArray['batch_list'];
918 $batch_count = (int) $hookmanager->resArray['batch_count'];
919 }
920 if ($reshook > 0) {
921 return $batch_count;
922 }
923
924 $sql = "SELECT pb.batch, pb.rowid, ps.fk_entrepot, pb.qty, e.ref as label, ps.fk_product";
925 $sql .= " FROM ".$this->db->prefix()."product_batch as pb";
926 $sql .= " LEFT JOIN ".$this->db->prefix()."product_stock as ps on ps.rowid = pb.fk_product_stock";
927 $sql .= " LEFT JOIN ".$this->db->prefix()."entrepot as e on e.rowid = ps.fk_entrepot AND e.entity IN (".getEntity('stock').")";
928 if (!empty($productIdList)) {
929 $sql .= " WHERE ps.fk_product IN (".$this->db->sanitize($productIdList).")";
930 }
931 $sql .= " ORDER BY e.ref, pb.batch";
932
933 dol_syslog(get_class($this).'::loadLotStock', LOG_DEBUG);
934 $resql = $this->db->query($sql);
935 if ($resql) {
936 $num = $this->db->num_rows($resql);
937 $i = 0;
938 while ($i < $num) {
939 $obj = $this->db->fetch_object($resql);
940 $this->cache_lot[$obj->fk_product][$obj->rowid]['id'] = $obj->rowid;
941 $this->cache_lot[$obj->fk_product][$obj->rowid]['batch'] = $obj->batch;
942 $this->cache_lot[$obj->fk_product][$obj->rowid]['entrepot_id'] = $obj->fk_entrepot;
943 $this->cache_lot[$obj->fk_product][$obj->rowid]['entrepot_label'] = $obj->label;
944 $this->cache_lot[$obj->fk_product][$obj->rowid]['qty'] = $obj->qty;
945 $i++;
946 }
947
948 return $batch_count + $num;
949 } else {
950 dol_print_error($this->db);
951 return -1;
952 }
953 }
954 }
955}
$id
Definition account.php:39
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
Definition ajax.lib.php:457
Class of dictionary of nature of product (used by imports)
Class of dictionary type of thirdparty (used by imports)
Class to manage warehouses.
const STATUS_OPEN_INTERNAL
Warehouse open and only operations for stock transfers/corrections allowed (not for customer shipping...
const STATUS_OPEN_ALL
Warehouse open and any operations are allowed (customer shipping, supplier dispatch,...
const STATUS_CLOSED
Warehouse closed, inactive.
Class with static methods for building HTML components related to products Only components common to ...
selectWarehouses($selected='', $htmlname='idwarehouse', $filterstatus='', $empty=0, $disabled=0, $fk_product=0, $empty_label='', $showstock=0, $forcecombo=0, $events=array(), $morecss='minwidth200', $exclude=array(), $showfullpath=1, $stockMin=false, $orderBy='e.ref', $multiselect=0)
Return list of warehouses.
loadWorkstations($fk_product=0, $exclude=array(), $orderBy='w.ref')
Load in cache array list of workstations If fk_product is not 0, we do not use cache.
selectWorkstations($selected='', $htmlname='idworkstations', $empty=0, $disabled=0, $fk_product=0, $empty_label='', $forcecombo=0, $events=array(), $morecss='minwidth200', $exclude=array(), $showfullpath=1, $orderBy='e.ref')
Return list of workstations.
selectLotDataList($htmlname='batch_id', $empty=0, $fk_product=0, $fk_entrepot=0, $objectLines=array())
Return list of lot numbers (stock from product_batch) for product and warehouse.
selectProductNature($name='finished', $selected='', $mode=0, $showempty=1)
Return a combo box with list of units NAture of product labels are defined in llx_c_product_nature.
selectLotStock($selected='', $htmlname='batch_id', $filterstatus='', $empty=0, $disabled=0, $fk_product=0, $fk_entrepot=0, $objectLines=array(), $empty_label='', $forcecombo=0, $events=array(), $morecss='minwidth200')
Return list of lot numbers (stock from product_batch) with stock location and stock qty.
loadLotStock($productIdArray=array())
Load in cache array list of lot available in stock from a given list of products.
get_parent_path($tab, $final_label='')
Return full path to current warehouse in $tab (recursive function) Set Hidden conf MAIN_WAREHOUSE_LIS...
select_measuring_units($name='measuring_units', $measuring_style='', $selected='0', $adddefault=0, $mode=0)
Output a combo box with list of units Currently the units are not define in the DB.
selectMeasuringUnits($name='measuring_units', $measuring_style='', $selected='0', $adddefault=0, $mode=0, $morecss='minwidth75 maxwidth125')
Return a combo box with list of units Units labels are defined in llx_c_units.
formSelectWarehouses($page, $selected='', $htmlname='warehouse_id', $addempty=0)
Display form to select warehouse.
__construct($db)
Constructor.
loadWarehouses($fk_product=0, $batch='', $status='', $sumStock=true, $exclude=array(), $stockMin=false, $orderBy='e.ref')
Load in cache array list of warehouses If fk_product is not 0, we do not use cache.
Class to manage hooks.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.