dolibarr 21.0.0-beta
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 $placeholderID = ($mode == 2 ? '99999999' : '-1'); // we don't want ajaxcombobox replace clearing option in mode 2
580
581 // TODO Use a cache
582 require_once DOL_DOCUMENT_ROOT.'/core/class/cunits.class.php';
583 $measuringUnits = new CUnits($db);
584
585 $filter = array();
586 $filter['t.active'] = 1;
587 if ($measuring_style) {
588 $filter['t.unit_type'] = $measuring_style;
589 }
590
591 $result = $measuringUnits->fetchAll(
592 '',
593 'scale',
594 0,
595 0,
596 $filter
597 );
598 if ($result < 0) {
599 dol_print_error($db);
600 return -1;
601 } else {
602 $return .= '<select class="flat'.($morecss ? ' '.$morecss : '').'" name="'.$name.'" id="'.$name.'">';
603 if ($adddefault || $adddefault === '') {
604 $return .= '<option value="0"'.($selected === '0' ? ' selected' : '').'>'.($adddefault ? '('.$langs->trans("Default").')' : '').'</option>';
605 }
606
607 foreach ($measuringUnits->records as $lines) {
608 $return .= '<option value="';
609 if ($mode == 1) {
610 $return .= $lines->short_label;
611 } elseif ($mode == 2) {
612 $return .= $lines->scale;
613 } else {
614 $return .= $lines->id;
615 }
616 $return .= '"';
617 if ($mode == 1 && $lines->short_label == $selected) {
618 $return .= ' selected';
619 } elseif ($mode == 2 && $lines->scale == $selected) {
620 $return .= ' selected';
621 } elseif ($mode == 0 && $lines->id == $selected) {
622 $return .= ' selected';
623 }
624 $return .= '>';
625 if ($measuring_style == 'time') {
626 $return .= $langs->trans(ucfirst($lines->label));
627 } else {
628 $return .= $langs->trans($lines->label);
629 }
630 $return .= '</option>';
631 }
632 $return .= '</select>';
633 }
634
635 $return .= ajax_combobox($name, [], 0, 0, 'resolve', $placeholderID);
636
637 return $return;
638 }
639
650 public function selectProductNature($name = 'finished', $selected = '', $mode = 0, $showempty = 1)
651 {
652 global $langs, $db;
653
654 $langs->load('products');
655
656 $return = '';
657
658 // TODO Use a cache
659 require_once DOL_DOCUMENT_ROOT.'/core/class/cproductnature.class.php';
660 $productNature = new CProductNature($db);
661
662 $filter = array();
663 $filter['t.active'] = 1;
664
665 $result = $productNature->fetchAll('', '', 0, 0, $filter);
666
667 if ($result < 0) {
668 dol_print_error($db);
669 return -1;
670 } else {
671 $return .= '<select class="flat" name="'.$name.'" id="'.$name.'">';
672 if ($showempty || ($selected == '' || $selected == '-1')) {
673 $return .= '<option value="-1"';
674 if ($selected == '' || $selected == '-1') {
675 $return .= ' selected';
676 }
677 $return .= '></option>';
678 }
679 if (!empty($productNature->records) && is_array($productNature->records)) {
680 foreach ($productNature->records as $lines) {
681 $return .= '<option value="';
682 if ($mode == 1) {
683 $return .= $lines->label;
684 } else {
685 $return .= $lines->code;
686 }
687
688 $return .= '"';
689
690 if ($mode == 1 && $lines->label == $selected) {
691 $return .= ' selected';
692 } elseif ($lines->code == $selected) {
693 $return .= ' selected';
694 }
695
696 $return .= '>';
697 $return .= $langs->trans($lines->label);
698 $return .= '</option>';
699 }
700 }
701 $return .= '</select>';
702 }
703
704 $return .= ajax_combobox($name);
705
706 return $return;
707 }
708
727 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')
728 {
729 global $conf, $langs;
730
731 dol_syslog(get_class($this)."::selectLotStock $selected, $htmlname, $filterstatus, $empty, $disabled, $fk_product, $fk_entrepot, $empty_label, $forcecombo, $morecss", LOG_DEBUG);
732
733 $out = '';
734 $productIdArray = array();
735 if (!is_array($objectLines) || !count($objectLines)) {
736 if (!empty($fk_product) && $fk_product > 0) {
737 $productIdArray[] = (int) $fk_product;
738 }
739 } else {
740 foreach ($objectLines as $line) {
741 if ($line->fk_product) {
742 $productIdArray[] = $line->fk_product;
743 }
744 }
745 }
746
747 $nboflot = $this->loadLotStock($productIdArray);
748
749 if ($conf->use_javascript_ajax && !$forcecombo) {
750 include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
751 $comboenhancement = ajax_combobox($htmlname, $events);
752 $out .= $comboenhancement;
753 }
754
755 $out .= '<select class="flat'.($morecss ? ' '.$morecss : '').'"'.($disabled ? ' disabled' : '').' id="'.$htmlname.'" name="'.($htmlname.($disabled ? '_disabled' : '')).'">';
756 if ($empty) {
757 $out .= '<option value="-1">'.($empty_label ? $empty_label : '&nbsp;').'</option>';
758 }
759 if (!empty($fk_product) && $fk_product > 0) {
760 $productIdArray = array((int) $fk_product); // only show lot stock for product
761 } else {
762 foreach ($this->cache_lot as $key => $value) {
763 $productIdArray[] = $key;
764 }
765 }
766
767 foreach ($productIdArray as $productId) {
768 foreach ($this->cache_lot[$productId] as $id => $arraytypes) {
769 if (empty($fk_entrepot) || $fk_entrepot == $arraytypes['entrepot_id']) {
770 $label = $arraytypes['entrepot_label'].' - ';
771 $label .= $arraytypes['batch'];
772 if ($arraytypes['qty'] <= 0) {
773 $label .= ' <span class=\'text-warning\'>('.$langs->trans("Stock").' '.$arraytypes['qty'].')</span>';
774 } else {
775 $label .= ' <span class=\'opacitymedium\'>('.$langs->trans("Stock").' '.$arraytypes['qty'].')</span>';
776 }
777
778 $out .= '<option value="'.$id.'"';
779
780 if ($selected == $id || ($selected == 'ifone' && $nboflot == 1)) {
781 $out .= ' selected';
782 }
783 $out .= ' data-html="'.dol_escape_htmltag($label).'"';
784 $out .= '>';
785 $out .= $label;
786 $out .= '</option>';
787 }
788 }
789 }
790 $out .= '</select>';
791 if ($disabled) {
792 $out .= '<input type="hidden" name="'.$htmlname.'" value="'.(($selected > 0) ? $selected : '').'">';
793 }
794
795 return $out;
796 }
797
798
799
810 public function selectLotDataList($htmlname = 'batch_id', $empty = 0, $fk_product = 0, $fk_entrepot = 0, $objectLines = array())
811 {
812 global $conf, $langs, $hookmanager;
813
814 dol_syslog(get_class($this)."::selectLotDataList $htmlname, $empty, $fk_product, $fk_entrepot", LOG_DEBUG);
815
816 $out = '';
817 $productIdArray = array();
818 if (!is_array($objectLines) || !count($objectLines)) {
819 if (!empty($fk_product) && $fk_product > 0) {
820 $productIdArray[] = (int) $fk_product;
821 }
822 } else {
823 foreach ($objectLines as $line) {
824 if ($line->fk_product) {
825 $productIdArray[] = $line->fk_product;
826 }
827 }
828 }
829
830 $nboflot = $this->loadLotStock($productIdArray);
831
832 if (!empty($fk_product) && $fk_product > 0) {
833 $productIdArray = array((int) $fk_product); // only show lot stock for product
834 } else {
835 foreach ($this->cache_lot as $key => $value) {
836 $productIdArray[] = $key;
837 }
838 }
839
840 if (empty($hookmanager)) {
841 include_once DOL_DOCUMENT_ROOT . '/core/class/hookmanager.class.php';
842 $hookmanager = new HookManager($this->db);
843 }
844 $hookmanager->initHooks(array('productdao'));
845 $parameters = array('productIdArray' => $productIdArray, 'htmlname' => $htmlname);
846 $reshook = $hookmanager->executeHooks('selectLotDataList', $parameters, $this);
847 if ($reshook < 0) {
848 return $hookmanager->error;
849 } elseif ($reshook > 0) {
850 return $hookmanager->resPrint;
851 } else {
852 $out .= $hookmanager->resPrint;
853 }
854
855 $out .= '<datalist id="'.$htmlname.'" >';
856 foreach ($productIdArray as $productId) {
857 if (array_key_exists($productId, $this->cache_lot)) {
858 foreach ($this->cache_lot[$productId] as $id => $arraytypes) {
859 if (empty($fk_entrepot) || $fk_entrepot == $arraytypes['entrepot_id']) {
860 $label = $arraytypes['entrepot_label'] . ' - ';
861 $label .= $arraytypes['batch'];
862 // Notice: Chrome show 1 line with value and 1 for label. Firefox show only 1 line with label
863 $out .= '<option data-warehouse="'.dol_escape_htmltag($label).'" value="' . $arraytypes['batch'] . '">' . ($conf->browser->name === 'chrome' ? '' : $arraytypes['batch']) . ' (' . $langs->trans('Stock Total') . ': ' . $arraytypes['qty'] . ')</option>';
864 }
865 }
866 }
867 }
868 $out .= '</datalist>';
869
870 return $out;
871 }
872
873
881 private function loadLotStock($productIdArray = array())
882 {
883 global $conf, $langs;
884
885 $cacheLoaded = false;
886 if (empty($productIdArray)) {
887 // only Load lot stock for given products
888 $this->cache_lot = array();
889 return 0;
890 }
891 if (count($productIdArray) && count($this->cache_lot)) {
892 // check cache already loaded for product id's
893 foreach ($productIdArray as $productId) {
894 $cacheLoaded = !empty($this->cache_lot[$productId]);
895 }
896 }
897 if ($cacheLoaded) {
898 return count($this->cache_lot);
899 } else {
900 // clear cache
901 $this->cache_lot = array();
902 $productIdList = implode(',', $productIdArray);
903
904 $batch_count = 0;
905 global $hookmanager;
906 if (empty($hookmanager)) {
907 include_once DOL_DOCUMENT_ROOT . '/core/class/hookmanager.class.php';
908 $hookmanager = new HookManager($this->db);
909 }
910 $hookmanager->initHooks(array('productdao'));
911 $parameters = array('productIdList' => $productIdList);
912 $reshook = $hookmanager->executeHooks('loadLotStock', $parameters, $this);
913 if ($reshook < 0) {
914 $this->error = $hookmanager->error;
915 return -1;
916 }
917 if (!empty($hookmanager->resArray['batch_list']) && is_array($hookmanager->resArray['batch_list'])) {
918 $this->cache_lot = $hookmanager->resArray['batch_list'];
919 $batch_count = (int) $hookmanager->resArray['batch_count'];
920 }
921 if ($reshook > 0) {
922 return $batch_count;
923 }
924
925 $sql = "SELECT pb.batch, pb.rowid, ps.fk_entrepot, pb.qty, e.ref as label, ps.fk_product";
926 $sql .= " FROM ".$this->db->prefix()."product_batch as pb";
927 $sql .= " LEFT JOIN ".$this->db->prefix()."product_stock as ps on ps.rowid = pb.fk_product_stock";
928 $sql .= " LEFT JOIN ".$this->db->prefix()."entrepot as e on e.rowid = ps.fk_entrepot AND e.entity IN (".getEntity('stock').")";
929 if (!empty($productIdList)) {
930 $sql .= " WHERE ps.fk_product IN (".$this->db->sanitize($productIdList).")";
931 }
932 $sql .= " ORDER BY e.ref, pb.batch";
933
934 dol_syslog(get_class($this).'::loadLotStock', LOG_DEBUG);
935 $resql = $this->db->query($sql);
936 if ($resql) {
937 $num = $this->db->num_rows($resql);
938 $i = 0;
939 while ($i < $num) {
940 $obj = $this->db->fetch_object($resql);
941 $this->cache_lot[$obj->fk_product][$obj->rowid]['id'] = $obj->rowid;
942 $this->cache_lot[$obj->fk_product][$obj->rowid]['batch'] = $obj->batch;
943 $this->cache_lot[$obj->fk_product][$obj->rowid]['entrepot_id'] = $obj->fk_entrepot;
944 $this->cache_lot[$obj->fk_product][$obj->rowid]['entrepot_label'] = $obj->label;
945 $this->cache_lot[$obj->fk_product][$obj->rowid]['qty'] = $obj->qty;
946 $i++;
947 }
948
949 return $batch_count + $num;
950 } else {
951 dol_print_error($this->db);
952 return -1;
953 }
954 }
955 }
956}
$id
Definition account.php:48
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:459
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79