dolibarr 21.0.0-alpha
mo.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2020 Lenin Rivas <lenin@leninrivas.com>
4 * Copyright (C) 2023-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
27require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
28require_once DOL_DOCUMENT_ROOT.'/mrp/class/moline.class.php';
29
33class Mo extends CommonObject
34{
38 public $element = 'mo';
39
43 public $table_element = 'mrp_mo';
44
48 public $picto = 'mrp';
49
50
51 const STATUS_DRAFT = 0;
52 const STATUS_VALIDATED = 1; // To produce
53 const STATUS_INPROGRESS = 2;
54 const STATUS_PRODUCED = 3;
55 const STATUS_CANCELED = 9;
56
57
87 public $fields = array(
88 'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -2, 'position' => 1, 'notnull' => 1, 'index' => 1, 'comment' => "Id",),
89 'entity' => array('type' => 'integer', 'label' => 'Entity', 'enabled' => 1, 'visible' => 0, 'position' => 5, 'notnull' => 1, 'default' => '1', 'index' => 1),
90 'ref' => array('type' => 'varchar(128)', 'label' => 'Ref', 'enabled' => 1, 'visible' => 4, 'position' => 10, 'notnull' => 1, 'default' => '(PROV)', 'index' => 1, 'searchall' => 1, 'comment' => "Reference of object", 'showoncombobox' => 1, 'noteditable' => 1),
91 'fk_bom' => array('type' => 'integer:Bom:bom/class/bom.class.php:0:(t.status:=:1)', 'filter' => 'active=1', 'label' => 'BOM', 'enabled' => '$conf->bom->enabled', 'visible' => 1, 'position' => 33, 'notnull' => -1, 'index' => 1, 'comment' => "Original BOM", 'css' => 'minwidth100 maxwidth500', 'csslist' => 'tdoverflowmax150', 'picto' => 'bom'),
92 'mrptype' => array('type' => 'integer', 'label' => 'Type', 'enabled' => 1, 'visible' => 1, 'position' => 34, 'notnull' => 1, 'default' => '0', 'arrayofkeyval' => array(0 => 'Manufacturing', 1 => 'Disassemble'), 'css' => 'minwidth150', 'csslist' => 'minwidth150 center'),
93 'fk_product' => array('type' => 'integer:Product:product/class/product.class.php:0', 'label' => 'Product', 'enabled' => 'isModEnabled("product")', 'visible' => 1, 'position' => 35, 'notnull' => 1, 'index' => 1, 'comment' => "Product to produce", 'css' => 'maxwidth300', 'csslist' => 'tdoverflowmax100', 'picto' => 'product'),
94 'qty' => array('type' => 'real', 'label' => 'QtyToProduce', 'enabled' => 1, 'visible' => 1, 'position' => 40, 'notnull' => 1, 'comment' => "Qty to produce", 'css' => 'width75', 'default' => '1', 'isameasure' => 1),
95 'label' => array('type' => 'varchar(255)', 'label' => 'Label', 'enabled' => 1, 'visible' => 1, 'position' => 42, 'notnull' => -1, 'searchall' => 1, 'showoncombobox' => 2, 'css' => 'maxwidth300', 'csslist' => 'tdoverflowmax200', 'alwayseditable' => 1),
96 'fk_soc' => array('type' => 'integer:Societe:societe/class/societe.class.php:1', 'label' => 'ThirdParty', 'picto' => 'company', 'enabled' => 'isModEnabled("societe")', 'visible' => -1, 'position' => 50, 'notnull' => -1, 'index' => 1, 'css' => 'maxwidth400', 'csslist' => 'tdoverflowmax150'),
97 'fk_project' => array('type' => 'integer:Project:projet/class/project.class.php:1:(fk_statut:=:1)', 'label' => 'Project', 'picto' => 'project', 'enabled' => '$conf->project->enabled', 'visible' => -1, 'position' => 51, 'notnull' => -1, 'index' => 1, 'css' => 'minwidth200 maxwidth400', 'csslist' => 'tdoverflowmax100'),
98 'fk_warehouse' => array('type' => 'integer:Entrepot:product/stock/class/entrepot.class.php:0', 'label' => 'WarehouseForProduction', 'picto' => 'stock', 'enabled' => 'isModEnabled("stock")', 'visible' => 1, 'position' => 52, 'css' => 'maxwidth400', 'csslist' => 'tdoverflowmax200'),
99 'note_public' => array('type' => 'html', 'label' => 'NotePublic', 'enabled' => 1, 'visible' => 0, 'position' => 61, 'notnull' => -1,),
100 'note_private' => array('type' => 'html', 'label' => 'NotePrivate', 'enabled' => 1, 'visible' => 0, 'position' => 62, 'notnull' => -1,),
101 'date_creation' => array('type' => 'datetime', 'label' => 'DateCreation', 'enabled' => 1, 'visible' => -2, 'position' => 500, 'notnull' => 1,),
102 'tms' => array('type' => 'timestamp', 'label' => 'DateModification', 'enabled' => 1, 'visible' => -2, 'position' => 501, 'notnull' => 1,),
103 'date_valid' => array('type' => 'datetime', 'label' => 'DateValidation', 'enabled' => 1, 'visible' => -2, 'position' => 502,),
104 'fk_user_creat' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserAuthor', 'enabled' => 1, 'visible' => -2, 'position' => 510, 'notnull' => 1, 'foreignkey' => 'user.rowid', 'csslist' => 'tdoverflowmax100'),
105 'fk_user_modif' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserModif', 'enabled' => 1, 'visible' => -2, 'position' => 511, 'notnull' => -1, 'csslist' => 'tdoverflowmax100'),
106 'date_start_planned' => array('type' => 'datetime', 'label' => 'DateStartPlannedMo', 'enabled' => 1, 'visible' => 1, 'position' => 55, 'notnull' => -1, 'index' => 1, 'help' => 'KeepEmptyForAsap', 'alwayseditable' => 1, 'csslist' => 'nowraponall'),
107 'date_end_planned' => array('type' => 'datetime', 'label' => 'DateEndPlannedMo', 'enabled' => 1, 'visible' => 1, 'position' => 56, 'notnull' => -1, 'index' => 1, 'alwayseditable' => 1, 'csslist' => 'nowraponall'),
108 'import_key' => array('type' => 'varchar(14)', 'label' => 'ImportId', 'enabled' => 1, 'visible' => -2, 'position' => 1000, 'notnull' => -1,),
109 'model_pdf' => array('type' => 'varchar(255)', 'label' => 'Model pdf', 'enabled' => 1, 'visible' => 0, 'position' => 1010),
110 'status' => array('type' => 'integer', 'label' => 'Status', 'enabled' => 1, 'visible' => 2, 'position' => 1000, 'default' => '0', 'notnull' => 1, 'index' => 1, 'arrayofkeyval' => array('0' => 'Draft', '1' => 'Validated', '2' => 'InProgress', '3' => 'StatusMOProduced', '9' => 'Canceled')),
111 'fk_parent_line' => array('type' => 'integer:MoLine:mrp/class/mo.class.php', 'label' => 'ParentMo', 'enabled' => 1, 'visible' => 0, 'position' => 1020, 'default' => '0', 'notnull' => 0, 'index' => 1,'showoncombobox' => 0),
112 );
116 public $rowid;
120 public $entity;
124 public $ref;
125
129 public $mrptype;
133 public $label;
134
138 public $qty;
142 public $fk_warehouse;
146 public $fk_soc;
150 public $socid;
151
155 public $note_public;
156
160 public $note_private;
161
165 public $date_valid;
166
170 public $fk_user_creat;
174 public $fk_user_modif;
178 public $import_key;
182 public $status;
183
187 public $fk_product;
188
192 public $product;
193
197 public $date_start_planned;
198
202 public $date_end_planned;
203
207 public $fk_bom;
208
212 public $bom;
213
217 public $fk_project;
218
223 public $oldQty;
224
225
226 // If this object has a subtable with lines
227
231 public $table_element_line = 'mrp_production';
232
236 public $fk_element = 'fk_mo';
237
241 public $class_element_line = 'MoLine';
242
246 protected $childtables = array();
247
251 protected $childtablesoncascade = array('mrp_production');
252
256 public $lines = array();
257
261 public $line = null;
262
266 public $fk_parent_line;
267
271 public $tpl = array();
272
273
279 public function __construct(DoliDB $db)
280 {
281 global $langs;
282
283 $this->db = $db;
284
285 $this->ismultientitymanaged = 1;
286 $this->isextrafieldmanaged = 1;
287
288 if (!getDolGlobalString('MAIN_SHOW_TECHNICAL_ID') && isset($this->fields['rowid'])) {
289 $this->fields['rowid']['visible'] = 0;
290 }
291 if (!isModEnabled('multicompany') && isset($this->fields['entity'])) {
292 $this->fields['entity']['enabled'] = 0;
293 }
294
295 // Unset fields that are disabled
296 foreach ($this->fields as $key => $val) {
297 if (isset($val['enabled']) && empty($val['enabled'])) {
298 unset($this->fields[$key]);
299 }
300 }
301
302 // Translate some data of arrayofkeyval
303 foreach ($this->fields as $key => $val) {
304 if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
305 foreach ($val['arrayofkeyval'] as $key2 => $val2) {
306 $this->fields[$key]['arrayofkeyval'][$key2] = $langs->trans($val2);
307 }
308 }
309 }
310 }
311
319 public function create(User $user, $notrigger = 0)
320 {
321 $error = 0;
322 $idcreated = 0;
323
324 // If kits feature is enabled and we don't allow kits into BOM and MO, we check that the product is not a kit/virtual product
325 if (getDolGlobalString('PRODUIT_SOUSPRODUITS') && !getDolGlobalString('ALLOW_USE_KITS_INTO_BOM_AND_MO') && $this->fk_product > 0) {
326 include_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
327 $tmpproduct = new Product($this->db);
328 $tmpproduct->fetch($this->fk_product);
329 if ($tmpproduct->hasFatherOrChild(1) > 0) {
330 $this->error = 'ErrorAVirtualProductCantBeUsedIntoABomOrMo';
331 $this->errors[] = $this->error;
332 return -1;
333 }
334 }
335
336 $this->db->begin();
337
338 if ($this->fk_bom > 0) {
339 // If there is a known BOM, we force the type of MO to the type of BOM
340 include_once DOL_DOCUMENT_ROOT.'/bom/class/bom.class.php';
341 $tmpbom = new BOM($this->db);
342 $tmpbom->fetch($this->fk_bom);
343
344 $this->mrptype = $tmpbom->bomtype;
345 }
346
347 if (!$error) {
348 $idcreated = $this->createCommon($user, $notrigger);
349 if ($idcreated <= 0) {
350 $error++;
351 }
352 }
353
354 if (!$error) {
355 $result = $this->createProduction($user, $notrigger); // Insert lines from BOM
356 if ($result <= 0) {
357 $error++;
358 }
359 }
360
361 if (!$error) {
362 $this->db->commit();
363 return $idcreated;
364 } else {
365 $this->db->rollback();
366 return -1;
367 }
368 }
369
377 public function createFromClone(User $user, $fromid)
378 {
379 global $langs, $extrafields;
380 $error = 0;
381
382 dol_syslog(__METHOD__, LOG_DEBUG);
383
384 $object = new self($this->db);
385
386 $this->db->begin();
387
388 // Load source object
389 $result = $object->fetchCommon($fromid);
390 if ($result > 0 && !empty($object->table_element_line)) {
391 $object->fetchLines();
392 }
393
394 // get lines so they will be clone
395 //foreach($this->lines as $line)
396 // $line->fetch_optionals();
397
398 // Reset some properties
399 unset($object->id);
400 unset($object->fk_user_creat);
401 unset($object->import_key);
402
403 // We make $object->lines empty to sort it without produced and consumed lines
404 $TLines = $object->lines;
405 $object->lines = array();
406
407 // Remove produced and consumed lines
408 foreach ($TLines as $key => $line) {
409 if (in_array($line->role, array('consumed', 'produced'))) {
410 unset($object->lines[$key]);
411 } else {
412 $object->lines[] = $line;
413 }
414 }
415
416
417 // Clear fields @phan-suppress-next-line PhanTypeMismatchProperty
418 $object->ref = empty($this->fields['ref']['default']) ? "copy_of_".$object->ref : $this->fields['ref']['default'];
419 // @phan-suppress-next-line PhanTypeInvalidDimOffset
420 $object->label = empty($this->fields['label']['default']) ? $langs->trans("CopyOf")." ".$object->label : $this->fields['label']['default'];
421 $object->status = self::STATUS_DRAFT;
422 // ...
423 // Clear extrafields that are unique
424 if (is_array($object->array_options) && count($object->array_options) > 0) {
425 $extrafields->fetch_name_optionals_label($this->table_element);
426 foreach ($object->array_options as $key => $option) {
427 $shortkey = preg_replace('/options_/', '', $key);
428 if (!empty($extrafields->attributes[$this->element]['unique'][$shortkey])) {
429 //var_dump($key);
430 //var_dump($clonedObj->array_options[$key]); exit;
431 unset($object->array_options[$key]);
432 }
433 }
434 }
435
436 // Create clone
437 $object->context['createfromclone'] = 'createfromclone';
438 $result = $object->createCommon($user);
439 if ($result < 0) {
440 $error++;
441 $this->error = $object->error;
442 $this->errors = $object->errors;
443 }
444
445 if (!$error) {
446 // copy internal contacts
447 if ($this->copy_linked_contact($object, 'internal') < 0) {
448 $error++;
449 }
450 }
451
452 if (!$error) {
453 // copy external contacts if same company
454 if (property_exists($this, 'socid') && $this->socid == $object->socid) {
455 if ($this->copy_linked_contact($object, 'external') < 0) {
456 $error++;
457 }
458 }
459 }
460
461 unset($object->context['createfromclone']);
462
463 // End
464 if (!$error) {
465 $this->db->commit();
466 return $object;
467 } else {
468 $this->db->rollback();
469 return -1;
470 }
471 }
472
480 public function fetch($id, $ref = null)
481 {
482 $result = $this->fetchCommon($id, $ref);
483 if ($result > 0 && !empty($this->table_element_line)) {
484 $this->fetchLines();
485 }
486
487 $this->socid = $this->fk_soc;
488
489 return $result;
490 }
491
497 public function fetchLines()
498 {
499 $this->lines = array();
500
501 $result = $this->fetchLinesCommon();
502 return $result;
503 }
504
505
517 public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, $filter = '', $filtermode = 'AND')
518 {
519 dol_syslog(__METHOD__, LOG_DEBUG);
520
521 $records = array();
522
523 $sql = 'SELECT ';
524 $sql .= $this->getFieldList();
525 $sql .= ' FROM '.MAIN_DB_PREFIX.$this->table_element.' as t';
526 if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
527 $sql .= ' WHERE t.entity IN ('.getEntity($this->element).')';
528 } else {
529 $sql .= ' WHERE 1 = 1';
530 }
531
532 // Manage filter
533 if (is_array($filter)) {
534 $sqlwhere = array();
535 if (count($filter) > 0) {
536 foreach ($filter as $key => $value) {
537 if ($key == 't.rowid') {
538 $sqlwhere[] = $this->db->sanitize($key)." = ".((int) $value);
539 } elseif (strpos($key, 'date') !== false) {
540 $sqlwhere[] = $this->db->sanitize($key)." = '".$this->db->idate($value)."'";
541 } else {
542 $sqlwhere[] = $this->db->sanitize($key)." LIKE '%".$this->db->escape($this->db->escapeforlike($value))."%'";
543 }
544 }
545 }
546 if (count($sqlwhere) > 0) {
547 $sql .= ' AND ('.implode(' '.$this->db->escape($filtermode).' ', $sqlwhere).')';
548 }
549
550 $filter = '';
551 }
552
553 // Manage filter
554 $errormessage = '';
555 $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
556 if ($errormessage) {
557 $this->errors[] = $errormessage;
558 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
559 return -1;
560 }
561
562 if (!empty($sortfield)) {
563 $sql .= $this->db->order($sortfield, $sortorder);
564 }
565 if (!empty($limit)) {
566 $sql .= $this->db->plimit($limit, $offset);
567 }
568
569 $resql = $this->db->query($sql);
570 if ($resql) {
571 $num = $this->db->num_rows($resql);
572 $i = 0;
573 while ($i < min($limit, $num)) {
574 $obj = $this->db->fetch_object($resql);
575
576 $record = new self($this->db);
577 $record->setVarsFromFetchObj($obj);
578
579 $records[$record->id] = $record;
580
581 $i++;
582 }
583 $this->db->free($resql);
584
585 return $records;
586 } else {
587 $this->errors[] = 'Error '.$this->db->lasterror();
588 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
589
590 return -1;
591 }
592 }
593
601 public function fetchLinesLinked($role, $lineid = 0)
602 {
603 $resarray = array();
604 $mostatic = new MoLine($this->db);
605
606 $sql = 'SELECT ';
607 $sql .= $mostatic->getFieldList();
608 $sql .= ' FROM '.MAIN_DB_PREFIX.$mostatic->table_element.' as t';
609 $sql .= " WHERE t.role = '".$this->db->escape($role)."'";
610 if ($lineid > 0) {
611 $sql .= ' AND t.fk_mrp_production = '.((int) $lineid);
612 } else {
613 $sql .= 'AND t.fk_mo = '.((int) $this->id);
614 }
615
616 $resql = $this->db->query($sql);
617 if ($resql) {
618 $num = $this->db->num_rows($resql);
619
620 $i = 0;
621 while ($i < $num) {
622 $obj = $this->db->fetch_object($resql);
623 if ($obj) {
624 $resarray[] = array(
625 'rowid' => $obj->rowid,
626 'date' => $this->db->jdate($obj->date_creation),
627 'qty' => $obj->qty,
628 'role' => $obj->role,
629 'fk_product' => $obj->fk_product,
630 'fk_warehouse' => $obj->fk_warehouse,
631 'batch' => $obj->batch,
632 'fk_stock_movement' => $obj->fk_stock_movement,
633 'fk_unit' => $obj->fk_unit
634 );
635 }
636
637 $i++;
638 }
639
640 return $resarray;
641 } else {
642 $this->error = $this->db->lasterror();
643 return array();
644 }
645 }
646
647
653 public function countMovements()
654 {
655 $result = 0;
656
657 $sql = 'SELECT COUNT(rowid) as nb FROM '.MAIN_DB_PREFIX.'stock_mouvement as sm';
658 $sql .= " WHERE sm.origintype = 'mo' and sm.fk_origin = ".((int) $this->id);
659
660 $resql = $this->db->query($sql);
661 if ($resql) {
662 $num = $this->db->num_rows($resql);
663
664 $i = 0;
665 while ($i < $num) {
666 $obj = $this->db->fetch_object($resql);
667 if ($obj) {
668 $result = $obj->nb;
669 }
670
671 $i++;
672 }
673 } else {
674 $this->error = $this->db->lasterror();
675 }
676
677 return $result;
678 }
679
680
688 public function update(User $user, $notrigger = 0)
689 {
690 $error = 0;
691
692 $this->db->begin();
693
694 $result = $this->updateCommon($user, $notrigger);
695 if ($result <= 0) {
696 $error++;
697 }
698
699 // Update the lines (the qty) to consume or to produce
700 $result = $this->updateProduction($user, $notrigger);
701 if ($result <= 0) {
702 $error++;
703 }
704
705 if (!$error) {
706 $this->db->commit();
707 return 1;
708 } else {
709 $this->db->rollback();
710 return -1;
711 }
712 }
713
714
722 public function createProduction(User $user, $notrigger = 0)
723 {
724 $error = 0;
725 $role = "";
726
727 if ($this->status != self::STATUS_DRAFT) {
728 return -1;
729 }
730
731 $this->db->begin();
732
733 // Insert lines in mrp_production table from BOM data
734 if (!$error) {
735 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'mrp_production WHERE fk_mo = '.((int) $this->id);
736 $this->db->query($sql);
737
738 $moline = new MoLine($this->db);
739
740 // Line to produce
741 $moline->fk_mo = $this->id;
742 $moline->qty = $this->qty;
743 $moline->fk_product = $this->fk_product;
744 $moline->position = 1;
745 include_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
746 $tmpproduct = new Product($this->db);
747 $tmpproduct->fetch($this->fk_product);
748 $moline->fk_unit = $tmpproduct->fk_unit;
749
750 if ($this->fk_bom > 0) { // If a BOM is defined, we know what to produce.
751 include_once DOL_DOCUMENT_ROOT.'/bom/class/bom.class.php';
752 $bom = new BOM($this->db);
753 $bom->fetch($this->fk_bom);
754 if ($bom->bomtype == 1) {
755 $role = 'toproduce';
756 $moline->role = 'toconsume';
757 } else {
758 $role = 'toconsume';
759 $moline->role = 'toproduce';
760 }
761 } else {
762 $bom = null;
763 if ($this->mrptype == 1) {
764 $moline->role = 'toconsume';
765 } else {
766 $moline->role = 'toproduce';
767 }
768 }
769
770 $resultline = $moline->create($user, false); // Never use triggers here
771 if ($resultline <= 0) {
772 $error++;
773 $this->error = $moline->error;
774 $this->errors = $moline->errors;
775 }
776
777 if ($this->fk_bom > 0 && is_object($bom)) { // If a BOM is defined, we know what to consume.
778 if ($bom->id > 0) {
779 // Lines to consume
780 if (!$error) {
781 foreach ($bom->lines as $line) {
782 $moline = new MoLine($this->db);
783
784 $moline->fk_mo = $this->id;
785 $moline->origin_id = $line->id;
786 $moline->origin_type = 'bomline';
787 if (!empty($line->fk_unit)) {
788 $moline->fk_unit = $line->fk_unit;
789 }
790 if ($line->qty_frozen) {
791 $moline->qty = $line->qty; // Qty to consume does not depends on quantity to produce
792 } else {
793 $moline->qty = (float) price2num(($line->qty / (!empty($bom->qty) ? $bom->qty : 1)) * $this->qty / (!empty($line->efficiency) ? $line->efficiency : 1), 'MS'); // Calculate with Qty to produce and more presition
794 }
795 if ($moline->qty <= 0) {
796 $error++;
797 $this->error = "BadValueForquantityToConsume";
798 $this->errors[] = $this->error;
799 break;
800 } else {
801 $moline->fk_product = $line->fk_product;
802 $moline->role = $role;
803 $moline->position = $line->position;
804 $moline->qty_frozen = $line->qty_frozen;
805 $moline->disable_stock_change = $line->disable_stock_change;
806 if (!empty($line->fk_default_workstation)) {
807 $moline->fk_default_workstation = $line->fk_default_workstation;
808 }
809
810 $resultline = $moline->create($user, false); // Never use triggers here
811 if ($resultline <= 0) {
812 $error++;
813 $this->error = $moline->error;
814 $this->errors[] = $moline->error;
815 $this->errors = array_merge($this->errors, $moline->errors);
816 dol_print_error($this->db, $moline->error, $moline->errors);
817 break;
818 }
819 }
820 }
821 }
822 }
823 }
824 }
825
826 if (!$error) {
827 $this->db->commit();
828 return 1;
829 } else {
830 $this->db->rollback();
831 return -1;
832 }
833 }
834
842 public function updateProduction(User $user, $notrigger = 0)
843 {
844 $error = 0;
845
846 if ($this->status != self::STATUS_DRAFT) {
847 return 1;
848 }
849
850 $this->db->begin();
851
852 $oldQty = $this->oldQty;
853 $newQty = $this->qty;
854 if ($newQty != $oldQty && !empty($this->oldQty)) {
855 $sql = "SELECT rowid FROM " . MAIN_DB_PREFIX . "mrp_production WHERE fk_mo = " . (int) $this->id;
856 $resql = $this->db->query($sql);
857 if ($resql) {
858 while ($obj = $this->db->fetch_object($resql)) {
859 $moLine = new MoLine($this->db);
860 $res = $moLine->fetch($obj->rowid);
861 if (!$res) {
862 $error++;
863 }
864
865 if ($moLine->role == 'toconsume' || $moLine->role == 'toproduce') {
866 if (empty($moLine->qty_frozen)) {
867 $qty = $newQty * $moLine->qty / $oldQty;
868 $moLine->qty = (float) price2num($qty, 'MS');
869 $res = $moLine->update($user);
870 if (!$res) {
871 $error++;
872 }
873 }
874 }
875 }
876 }
877 }
878 if (!$error) {
879 $this->db->commit();
880 return 1;
881 } else {
882 $this->db->rollback();
883 return -1;
884 }
885 }
886
887
896 public function delete(User $user, $notrigger = 0, $also_cancel_consumed_and_produced_lines = false)
897 {
898 $error = 0;
899 $this->db->begin();
900
901 if ($also_cancel_consumed_and_produced_lines) {
902 $result = $this->cancelConsumedAndProducedLines($user, 0, false, $notrigger);
903 if ($result < 0) {
904 $error++;
905 }
906 }
907
908 if (!$error) {
909 $result = $this->deleteCommon($user, $notrigger);
910 if ($result < 0) {
911 $error++;
912 }
913 }
914
915 if ($error) {
916 $this->db->rollback();
917 return -1;
918 } else {
919 $this->db->commit();
920 return 1;
921 }
922 }
923
933 public function deleteLine(User $user, $idline, $notrigger = 0, $fk_movement = 0)
934 {
935 global $langs;
936 $langs->loadLangs(array('stocks', 'mrp'));
937
938 if ($this->status < 0) {
939 $this->error = 'ErrorDeleteLineNotAllowedByObjectStatus';
940 return -2;
941 }
942 $productstatic = new Product($this->db);
943
944 $arrayoflines = $this->fetchLinesLinked('consumed', $idline); // Get lines consumed under the one to delete
945
946 $result = 0;
947
948 $this->db->begin();
949
950 if (!empty($arrayoflines)) {
951 // If there is child lines
952 $stockmove = new MouvementStock($this->db);
953 $stockmove->setOrigin($this->element, $this->id);
954
955 if (!empty($fk_movement)) {
956 // The fk_movement was not recorded so we try to guess the product and quantity to restore.
957 $moline = new MoLine($this->db);
958 $TArrayMoLine = $moline->fetchAll('', '', 1, 0, '(fk_stock_movement:=:'.((int) $fk_movement).')');
959 $moline = array_shift($TArrayMoLine);
960
961 $movement = new MouvementStock($this->db);
962 $movement->fetch($fk_movement);
963 $productstatic->fetch($movement->product_id);
964 $qtytoprocess = $movement->qty;
965
966 // Reverse stock movement
967 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
968 $codemovementCancel = $langs->trans("StockIncrease");
969
970 if (($qtytoprocess >= 0)) {
971 $idstockmove = $stockmove->reception($user, $movement->product_id, $movement->warehouse_id, $qtytoprocess, 0, $labelmovementCancel, '', '', $movement->batch, dol_now(), 0, $codemovementCancel);
972 } else {
973 $idstockmove = $stockmove->livraison($user, $movement->product_id, $movement->warehouse_id, $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $movement->batch, 0, $codemovementCancel);
974 }
975 if ($idstockmove < 0) {
976 $this->error++;
977 setEventMessages($stockmove->error, $stockmove->errors, 'errors');
978 } else {
979 $result = $moline->delete($user, $notrigger);
980 }
981 } else {
982 // Loop on each child lines
983 foreach ($arrayoflines as $key => $arrayofline) {
984 $lineDetails = $arrayoflines[$key];
985 $productstatic->fetch($lineDetails['fk_product']);
986 $qtytoprocess = $lineDetails['qty'];
987
988 // Reverse stock movement
989 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
990 $codemovementCancel = $langs->trans("StockIncrease");
991
992
993 if ($qtytoprocess >= 0) {
994 $idstockmove = $stockmove->reception($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, '', '', $lineDetails['batch'], dol_now(), 0, $codemovementCancel);
995 } else {
996 $idstockmove = $stockmove->livraison($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $lineDetails['batch'], 0, $codemovementCancel);
997 }
998 if ($idstockmove < 0) {
999 $this->error++;
1000 setEventMessages($stockmove->error, $stockmove->errors, 'errors');
1001 } else {
1002 $moline = new MoLine($this->db);
1003 $moline->fetch($lineDetails['rowid']);
1004
1005 $resdel = $moline->delete($user, $notrigger);
1006 if ($resdel < 0) {
1007 $this->error++;
1008 setEventMessages($moline->error, $moline->errors, 'errors');
1009 }
1010 }
1011 }
1012
1013 if (empty($this->error)) {
1014 $result = $this->deleteLineCommon($user, $idline, $notrigger);
1015 }
1016 }
1017 } else {
1018 // No child lines
1019 $result = $this->deleteLineCommon($user, $idline, $notrigger);
1020 }
1021
1022 if (!empty($this->error) || $result <= 0) {
1023 $this->db->rollback();
1024 } else {
1025 $this->db->commit();
1026 }
1027
1028 return $result;
1029 }
1030
1031
1039 public function getNextNumRef($prod)
1040 {
1041 global $langs, $conf;
1042 $langs->load("mrp");
1043
1044 if (getDolGlobalString('MRP_MO_ADDON')) {
1045 $mybool = false;
1046
1047 $file = getDolGlobalString('MRP_MO_ADDON') . ".php";
1048 $classname = getDolGlobalString('MRP_MO_ADDON');
1049
1050 // Include file with class
1051 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
1052 foreach ($dirmodels as $reldir) {
1053 $dir = dol_buildpath($reldir."core/modules/mrp/");
1054
1055 // Load file with numbering class (if found)
1056 $mybool = ((bool) @include_once $dir.$file) || $mybool;
1057 }
1058
1059 if (!$mybool) {
1060 dol_print_error(null, "Failed to include file ".$file);
1061 return '';
1062 }
1063
1064 $obj = new $classname();
1065 '@phan-var-force ModeleNumRefMos $obj';
1066 $numref = $obj->getNextValue($prod, $this);
1067
1068 if ($numref != "") {
1069 return $numref;
1070 } else {
1071 $this->error = $obj->error;
1072 //dol_print_error($this->db,get_class($this)."::getNextNumRef ".$obj->error);
1073 return "";
1074 }
1075 } else {
1076 print $langs->trans("Error")." ".$langs->trans("Error_MRP_MO_ADDON_NotDefined");
1077 return "";
1078 }
1079 }
1080
1088 public function validate($user, $notrigger = 0)
1089 {
1090 global $conf;
1091
1092 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1093
1094 $error = 0;
1095
1096 // Protection
1097 if ($this->status == self::STATUS_VALIDATED) {
1098 dol_syslog(get_class($this)."::validate action abandoned: already validated", LOG_WARNING);
1099 return 0;
1100 }
1101
1102 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mrp->create))
1103 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mrp->mrp_advance->validate))))
1104 {
1105 $this->error='NotEnoughPermissions';
1106 dol_syslog(get_class($this)."::valid ".$this->error, LOG_ERR);
1107 return -1;
1108 }*/
1109
1110 $now = dol_now();
1111
1112 $this->db->begin();
1113
1114 // Define new ref
1115 if (!$error && (preg_match('/^[\‍(]?PROV/i', $this->ref) || empty($this->ref))) { // empty should not happened, but when it occurs, the test save life
1116 $this->fetch_product();
1117 $num = $this->getNextNumRef($this->product);
1118 } else {
1119 $num = $this->ref;
1120 }
1121 $this->newref = $num;
1122
1123 // Validate
1124 $sql = "UPDATE ".MAIN_DB_PREFIX.$this->table_element;
1125 $sql .= " SET ref = '".$this->db->escape($num)."',";
1126 $sql .= " status = ".self::STATUS_VALIDATED.",";
1127 $sql .= " date_valid = '".$this->db->idate($now)."',";
1128 $sql .= " fk_user_valid = ".((int) $user->id);
1129 $sql .= " WHERE rowid = ".((int) $this->id);
1130
1131 dol_syslog(get_class($this)."::validate()", LOG_DEBUG);
1132 $resql = $this->db->query($sql);
1133 if (!$resql) {
1134 dol_print_error($this->db);
1135 $this->error = $this->db->lasterror();
1136 $error++;
1137 }
1138
1139 if (!$error && !$notrigger) {
1140 // Call trigger
1141 $result = $this->call_trigger('MRP_MO_VALIDATE', $user);
1142 if ($result < 0) {
1143 $error++;
1144 }
1145 // End call triggers
1146 }
1147
1148 if (!$error) {
1149 $this->oldref = $this->ref;
1150
1151 // Rename directory if dir was a temporary ref
1152 if (preg_match('/^[\‍(]?PROV/i', $this->ref)) {
1153 // Now we rename also files into index
1154 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filename = CONCAT('".$this->db->escape($this->newref)."', SUBSTR(filename, ".(strlen($this->ref) + 1).")), filepath = 'mrp/".$this->db->escape($this->newref)."'";
1155 $sql .= " WHERE filename LIKE '".$this->db->escape($this->ref)."%' AND filepath = 'mrp/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
1156 $resql = $this->db->query($sql);
1157 if (!$resql) {
1158 $error++;
1159 $this->error = $this->db->lasterror();
1160 }
1161 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filepath = 'mrp/".$this->db->escape($this->newref)."'";
1162 $sql .= " WHERE filepath = 'mrp/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
1163 $resql = $this->db->query($sql);
1164 if (!$resql) {
1165 $error++;
1166 $this->error = $this->db->lasterror();
1167 }
1168
1169 // We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
1170 $oldref = dol_sanitizeFileName($this->ref);
1171 $newref = dol_sanitizeFileName($num);
1172 $dirsource = $conf->mrp->dir_output.'/'.$oldref;
1173 $dirdest = $conf->mrp->dir_output.'/'.$newref;
1174 if (!$error && file_exists($dirsource)) {
1175 dol_syslog(get_class($this)."::validate() rename dir ".$dirsource." into ".$dirdest);
1176
1177 if (@rename($dirsource, $dirdest)) {
1178 dol_syslog("Rename ok");
1179 // Rename docs starting with $oldref with $newref
1180 $listoffiles = dol_dir_list($conf->mrp->dir_output.'/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
1181 foreach ($listoffiles as $fileentry) {
1182 $dirsource = $fileentry['name'];
1183 $dirdest = preg_replace('/^'.preg_quote($oldref, '/').'/', $newref, $dirsource);
1184 $dirsource = $fileentry['path'].'/'.$dirsource;
1185 $dirdest = $fileentry['path'].'/'.$dirdest;
1186 @rename($dirsource, $dirdest);
1187 }
1188 }
1189 }
1190 }
1191 }
1192
1193 // Set new ref and current status
1194 if (!$error) {
1195 $this->ref = $num;
1196 $this->status = self::STATUS_VALIDATED;
1197 }
1198
1199 if (!$error) {
1200 $this->db->commit();
1201 return 1;
1202 } else {
1203 $this->db->rollback();
1204 return -1;
1205 }
1206 }
1207
1215 public function setDraft($user, $notrigger = 0)
1216 {
1217 // Protection
1218 if ($this->status <= self::STATUS_DRAFT) {
1219 return 0;
1220 }
1221
1222 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->write))
1223 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->mymodule_advance->validate))))
1224 {
1225 $this->error='Permission denied';
1226 return -1;
1227 }*/
1228
1229 return $this->setStatusCommon($user, self::STATUS_DRAFT, $notrigger, 'MRP_MO_UNVALIDATE');
1230 }
1231
1240 public function cancel($user, $notrigger = 0, $also_cancel_consumed_and_produced_lines = false)
1241 {
1242 // Protection
1243 if ($this->status != self::STATUS_VALIDATED && $this->status != self::STATUS_INPROGRESS) {
1244 return 0;
1245 }
1246
1247 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->write))
1248 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->mymodule_advance->validate))))
1249 {
1250 $this->error='Permission denied';
1251 return -1;
1252 }*/
1253
1254 $error = 0;
1255 $this->db->begin();
1256
1257 if ($also_cancel_consumed_and_produced_lines) {
1258 $result = $this->cancelConsumedAndProducedLines($user, 0, true, $notrigger);
1259 if ($result < 0) {
1260 $error++;
1261 }
1262 }
1263
1264 if (!$error) {
1265 $result = $this->setStatusCommon($user, self::STATUS_CANCELED, $notrigger, 'MRP_MO_CANCEL');
1266 if ($result < 0) {
1267 $error++;
1268 }
1269 }
1270
1271 if ($error) {
1272 $this->db->rollback();
1273 return -1;
1274 } else {
1275 $this->db->commit();
1276 return 1;
1277 }
1278 }
1279
1287 public function reopen($user, $notrigger = 0)
1288 {
1289 // Protection
1290 if ($this->status != self::STATUS_PRODUCED && $this->status != self::STATUS_CANCELED) {
1291 return 0;
1292 }
1293
1294 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->write))
1295 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->mymodule_advance->validate))))
1296 {
1297 $this->error='Permission denied';
1298 return -1;
1299 }*/
1300
1301 return $this->setStatusCommon($user, self::STATUS_VALIDATED, $notrigger, 'MRP_MO_REOPEN');
1302 }
1303
1313 public function cancelConsumedAndProducedLines($user, $mode = 0, $also_delete_lines = false, $notrigger = 0)
1314 {
1315 global $langs;
1316
1317 if (!isModEnabled('stock')) {
1318 return 1;
1319 }
1320
1321 require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php';
1322 require_once DOL_DOCUMENT_ROOT . '/product/stock/class/mouvementstock.class.php';
1323 $error = 0;
1324 $langs->load('stocks');
1325
1326 $this->db->begin();
1327
1328 // Cancel consumed lines
1329 if (empty($mode) || $mode == 1) {
1330 $arrayoflines = $this->fetchLinesLinked('consumed');
1331 if (!empty($arrayoflines)) {
1332 foreach ($arrayoflines as $key => $lineDetails) {
1333 $productstatic = new Product($this->db);
1334 $productstatic->fetch($lineDetails['fk_product']);
1335 $qtytoprocess = $lineDetails['qty'];
1336
1337 // Reverse stock movement
1338 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
1339 $codemovementCancel = $langs->trans("StockIncrease");
1340
1341 $stockmove = new MouvementStock($this->db);
1342 $stockmove->setOrigin($this->element, $this->id);
1343 if ($qtytoprocess >= 0) {
1344 $idstockmove = $stockmove->reception($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, '', '', $lineDetails['batch'], dol_now(), 0, $codemovementCancel);
1345 } else {
1346 $idstockmove = $stockmove->livraison($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $lineDetails['batch'], 0, $codemovementCancel);
1347 }
1348 if ($idstockmove < 0) {
1349 $this->error = $stockmove->error;
1350 $this->errors = $stockmove->errors;
1351 $error++;
1352 break;
1353 }
1354
1355 if ($also_delete_lines) {
1356 $result = $this->deleteLineCommon($user, $lineDetails['rowid'], $notrigger);
1357 if ($result < 0) {
1358 $error++;
1359 break;
1360 }
1361 }
1362 }
1363 }
1364 }
1365
1366 // Cancel produced lines
1367 if (empty($mode) || $mode == 2) {
1368 $arrayoflines = $this->fetchLinesLinked('produced');
1369 if (!empty($arrayoflines)) {
1370 foreach ($arrayoflines as $key => $lineDetails) {
1371 $productstatic = new Product($this->db);
1372 $productstatic->fetch($lineDetails['fk_product']);
1373 $qtytoprocess = $lineDetails['qty'];
1374
1375 // Reverse stock movement
1376 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
1377 $codemovementCancel = $langs->trans("StockDecrease");
1378
1379 $stockmove = new MouvementStock($this->db);
1380 $stockmove->setOrigin($this->element, $this->id);
1381 if ($qtytoprocess >= 0) {
1382 $idstockmove = $stockmove->livraison($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $lineDetails['batch'], 0, $codemovementCancel);
1383 } else {
1384 $idstockmove = $stockmove->reception($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, '', '', $lineDetails['batch'], dol_now(), 0, $codemovementCancel);
1385 }
1386 if ($idstockmove < 0) {
1387 $this->error = $stockmove->error;
1388 $this->errors = $stockmove->errors;
1389 $error++;
1390 break;
1391 }
1392
1393 if ($also_delete_lines) {
1394 $result = $this->deleteLineCommon($user, $lineDetails['rowid'], $notrigger);
1395 if ($result < 0) {
1396 $error++;
1397 break;
1398 }
1399 }
1400 }
1401 }
1402 }
1403
1404 if ($error) {
1405 $this->db->rollback();
1406 return -1;
1407 } else {
1408 $this->db->commit();
1409 return 1;
1410 }
1411 }
1412
1419 public function getTooltipContentArray($params)
1420 {
1421 global $langs;
1422
1423 $langs->loadLangs(['mrp', 'products']);
1424 $nofetch = isset($params['nofetch']);
1425
1426 $datas = [];
1427
1428 $datas['picto'] = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("ManufacturingOrder").'</u>';
1429 if (isset($this->status)) {
1430 $datas['picto'] .= ' '.$this->getLibStatut(5);
1431 }
1432 $datas['ref'] = '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
1433 if (isset($this->label)) {
1434 $datas['label'] = '<br><b>'.$langs->trans('Label').':</b> '.$this->label;
1435 }
1436 if (isset($this->mrptype)) {
1437 $datas['type'] = '<br><b>'.$langs->trans('Type').':</b> '.$this->fields['mrptype']['arrayofkeyval'][$this->mrptype];
1438 }
1439 if (isset($this->qty)) {
1440 $datas['qty'] = '<br><b>'.$langs->trans('QtyToProduce').':</b> '.$this->qty;
1441 }
1442 if (!$nofetch && isset($this->fk_product)) {
1443 require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php';
1444 $product = new Product($this->db);
1445 $product->fetch($this->fk_product);
1446 $datas['product'] = '<br><b>'.$langs->trans('Product').':</b> '.$product->getNomUrl(1, '', 0, -1, 1);
1447 }
1448 if (!$nofetch && isset($this->fk_warehouse)) {
1449 require_once DOL_DOCUMENT_ROOT . '/product/stock/class/entrepot.class.php';
1450 $warehouse = new Entrepot($this->db);
1451 $warehouse->fetch($this->fk_warehouse);
1452 $datas['warehouse'] = '<br><b>'.$langs->trans('WarehouseForProduction').':</b> '.$warehouse->getNomUrl(1, '', 0, 1);
1453 }
1454
1455 return $datas;
1456 }
1457
1468 public function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $morecss = '', $save_lastsearch_value = -1)
1469 {
1470 global $conf, $langs, $action, $hookmanager;
1471
1472 if (!empty($conf->dol_no_mouse_hover)) {
1473 $notooltip = 1; // Force disable tooltips
1474 }
1475
1476 $result = '';
1477 $params = [
1478 'id' => $this->id,
1479 'objecttype' => $this->element,
1480 'option' => $option,
1481 'nofetch' => 1,
1482 ];
1483 $classfortooltip = 'classfortooltip';
1484 $dataparams = '';
1485 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
1486 $classfortooltip = 'classforajaxtooltip';
1487 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
1488 $label = '';
1489 } else {
1490 $label = implode($this->getTooltipContentArray($params));
1491 }
1492
1493 $url = DOL_URL_ROOT.'/mrp/mo_card.php?id='.$this->id;
1494 if ($option == 'production') {
1495 $url = DOL_URL_ROOT.'/mrp/mo_production.php?id='.$this->id;
1496 }
1497
1498 if ($option != 'nolink') {
1499 // Add param to save lastsearch_values or not
1500 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1501 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
1502 $add_save_lastsearch_values = 1;
1503 }
1504 if ($add_save_lastsearch_values) {
1505 $url .= '&save_lastsearch_values=1';
1506 }
1507 }
1508
1509 $linkclose = '';
1510 if (empty($notooltip)) {
1511 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
1512 $label = $langs->trans("ShowMo");
1513 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
1514 }
1515 $linkclose .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"');
1516 $linkclose .= $dataparams.' class="'.$classfortooltip.($morecss ? ' '.$morecss : '').'"';
1517 } else {
1518 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
1519 }
1520
1521 $linkstart = '<a href="'.$url.'"';
1522 $linkstart .= $linkclose.'>';
1523 $linkend = '</a>';
1524
1525 $result .= $linkstart;
1526 if ($withpicto) {
1527 $result .= img_object(($notooltip ? '' : $label), ($this->picto ? $this->picto : 'generic'), (($withpicto != 2) ? 'class="paddingright"' : ''), 0, 0, $notooltip ? 0 : 1);
1528 }
1529 if ($withpicto != 2) {
1530 $result .= $this->ref;
1531 }
1532 $result .= $linkend;
1533 //if ($withpicto != 2) $result.=(($addlabel && $this->label) ? $sep . dol_trunc($this->label, ($addlabel > 1 ? $addlabel : 0)) : '');
1534
1535 $hookmanager->initHooks(array('modao'));
1536 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
1537 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1538 if ($reshook > 0) {
1539 $result = $hookmanager->resPrint;
1540 } else {
1541 $result .= $hookmanager->resPrint;
1542 }
1543
1544 return $result;
1545 }
1546
1553 public function getLibStatut($mode = 0)
1554 {
1555 return $this->LibStatut($this->status, $mode);
1556 }
1557
1558 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1566 public function LibStatut($status, $mode = 0)
1567 {
1568 // phpcs:enable
1569 if (empty($this->labelStatus)) {
1570 global $langs;
1571 //$langs->load("mrp");
1572 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Draft');
1573 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ValidatedToProduce');
1574 $this->labelStatus[self::STATUS_INPROGRESS] = $langs->transnoentitiesnoconv('InProgress');
1575 $this->labelStatus[self::STATUS_PRODUCED] = $langs->transnoentitiesnoconv('StatusMOProduced');
1576 $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('Canceled');
1577
1578 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Draft');
1579 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('Validated');
1580 $this->labelStatusShort[self::STATUS_INPROGRESS] = $langs->transnoentitiesnoconv('InProgress');
1581 $this->labelStatusShort[self::STATUS_PRODUCED] = $langs->transnoentitiesnoconv('StatusMOProduced');
1582 $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('Canceled');
1583 }
1584
1585 $statusType = 'status'.$status;
1586 if ($status == self::STATUS_VALIDATED) {
1587 $statusType = 'status1';
1588 }
1589 if ($status == self::STATUS_INPROGRESS) {
1590 $statusType = 'status4';
1591 }
1592 if ($status == self::STATUS_PRODUCED) {
1593 $statusType = 'status6';
1594 }
1595 if ($status == self::STATUS_CANCELED) {
1596 $statusType = 'status9';
1597 }
1598
1599 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
1600 }
1601
1608 public function info($id)
1609 {
1610 $sql = 'SELECT rowid, date_creation as datec, tms as datem,';
1611 $sql .= ' fk_user_creat, fk_user_modif';
1612 $sql .= ' FROM '.MAIN_DB_PREFIX.$this->table_element.' as t';
1613 $sql .= ' WHERE t.rowid = '.((int) $id);
1614 $result = $this->db->query($sql);
1615 if ($result) {
1616 if ($this->db->num_rows($result)) {
1617 $obj = $this->db->fetch_object($result);
1618
1619 $this->id = $obj->rowid;
1620
1621 $this->user_creation_id = $obj->fk_user_creat;
1622 $this->user_modification_id = $obj->fk_user_modif;
1623 $this->date_creation = $this->db->jdate($obj->datec);
1624 $this->date_modification = empty($obj->datem) ? '' : $this->db->jdate($obj->datem);
1625 }
1626
1627 $this->db->free($result);
1628 } else {
1629 dol_print_error($this->db);
1630 }
1631 }
1632
1639 public function initAsSpecimen()
1640 {
1641 $ret = $this->initAsSpecimenCommon();
1642
1643 $this->lines = array();
1644
1645 return $ret;
1646 }
1647
1654 public function getLinesArray($rolefilter = '')
1655 {
1656 $this->lines = array();
1657
1658 $objectline = new MoLine($this->db);
1659
1660 $filter = '(fk_mo:=:'.((int) $this->id).')';
1661 if (!empty($rolefilter)) {
1662 $filter .= " AND (role:=:'".$this->db->escape($rolefilter)."')";
1663 }
1664 $result = $objectline->fetchAll('ASC', 'position', 0, 0, $filter);
1665
1666 if (is_numeric($result)) {
1667 $this->error = $objectline->error;
1668 $this->errors = $objectline->errors;
1669 return $result;
1670 } else {
1671 $this->lines = $result;
1672 return $this->lines;
1673 }
1674 }
1675
1687 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
1688 {
1689 global $langs;
1690
1691 $langs->load("mrp");
1692
1693 if (!dol_strlen($modele)) {
1694 //$modele = 'standard';
1695 $modele = ''; // Remove this once a pdf_standard.php exists.
1696
1697 if ($this->model_pdf) {
1698 $modele = $this->model_pdf;
1699 } elseif (getDolGlobalString('MRP_MO_ADDON_PDF')) {
1700 $modele = getDolGlobalString('MRP_MO_ADDON_PDF');
1701 }
1702 }
1703
1704 $modelpath = "core/modules/mrp/doc/";
1705
1706 if (empty($modele)) {
1707 return 1; // Remove this once a pdf_standard.php exists.
1708 }
1709
1710 return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
1711 }
1712
1723 public function printOriginLinesList($restrictlist = '', $selectedLines = array())
1724 {
1725 global $langs, $hookmanager, $form, $action;
1726
1727 $langs->load('stocks');
1728 $text_stock_options = $langs->trans("RealStockDesc").'<br>';
1729 $text_stock_options .= $langs->trans("RealStockWillAutomaticallyWhen").'<br>';
1730 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SHIPMENT') || getDolGlobalString('STOCK_CALCULATE_ON_SHIPMENT_CLOSE') ? '- '.$langs->trans("DeStockOnShipment").'<br>' : '');
1731 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_VALIDATE_ORDER') ? '- '.$langs->trans("DeStockOnValidateOrder").'<br>' : '');
1732 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_BILL') ? '- '.$langs->trans("DeStockOnBill").'<br>' : '');
1733 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SUPPLIER_BILL') ? '- '.$langs->trans("ReStockOnBill").'<br>' : '');
1734 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER') ? '- '.$langs->trans("ReStockOnValidateOrder").'<br>' : '');
1735 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER') ? '- '.$langs->trans("ReStockOnDispatchOrder").'<br>' : '');
1736 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_RECEPTION') || getDolGlobalString('STOCK_CALCULATE_ON_RECEPTION_CLOSE') ? '- '.$langs->trans("StockOnReception").'<br>' : '');
1737
1738 print '<tr class="liste_titre">';
1739 // Product or sub-bom
1740 print '<td class="linecoldescription">'.$langs->trans('Ref');
1741 if (getDolGlobalString('BOM_SUB_BOM')) {
1742 print ' &nbsp; <a id="show_all" href="#">'.img_picto('', 'folder-open', 'class="paddingright"').$langs->trans("ExpandAll").'</a>&nbsp;&nbsp;';
1743 print '<a id="hide_all" href="#">'.img_picto('', 'folder', 'class="paddingright"').$langs->trans("UndoExpandAll").'</a>&nbsp;';
1744 }
1745 print '</td>';
1746 // Qty
1747 print '<td class="right">'.$langs->trans('Qty');
1748 if ($this->bom->bomtype == 0) {
1749 print ' <span class="opacitymedium">('.$langs->trans("ForAQuantityOf", $this->bom->qty).')</span>';
1750 } else {
1751 print ' <span class="opacitymedium">('.$langs->trans("ForAQuantityToConsumeOf", $this->bom->qty).')</span>';
1752 }
1753 // Unit
1754 print '<td class="right">'.$langs->trans('Unit');
1755
1756 print '</td>';
1757 print '<td class="center">'.$form->textwithpicto($langs->trans("PhysicalStock"), $text_stock_options, 1).'</td>';
1758 print '<td class="center">'.$form->textwithpicto($langs->trans("VirtualStock"), $langs->trans("VirtualStockDesc")).'</td>';
1759 print '<td class="center">'.$langs->trans('QtyFrozen').'</td>';
1760 print '<td class="center">'.$langs->trans('DisableStockChange').'</td>';
1761 print '<td class="center">'.$langs->trans('MoChildGenerate').'</td>';
1762 //print '<td class="center">'.$form->showCheckAddButtons('checkforselect', 1).'</td>';
1763 //print '<td class="center"></td>';
1764 print '</tr>';
1765 $i = 0;
1766
1767 if (!empty($this->lines)) {
1768 foreach ($this->lines as $line) {
1769 $reshook = 0;
1770 if (is_object($hookmanager)) {
1771 $parameters = array('line' => $line, 'i' => $i, 'restrictlist' => $restrictlist, 'selectedLines' => $selectedLines);
1772 if (!empty($line->fk_parent_line)) {
1773 $parameters['fk_parent_line'] = $line->fk_parent_line;
1774 }
1775 $reshook = $hookmanager->executeHooks('printOriginObjectLine', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1776 }
1777 if (empty($reshook)) {
1778 $this->printOriginLine($line, '', $restrictlist, '/core/tpl', $selectedLines);
1779 }
1780
1781 $i++;
1782 }
1783 }
1784 }
1785
1786
1800 public function printOriginLine($line, $var, $restrictlist = '', $defaulttpldir = '/core/tpl', $selectedLines = array())
1801 {
1802 if (!$line instanceof MoLine) {
1803 dol_syslog(__METHOD__.'::pringOriginLine $line is '.get_class($line).'<>MoLine', LOG_WARNING);
1804 parent::printOriginLine($line, $var, $restrictlist, $defaulttpldir, $selectedLines);
1805 return;
1806 }
1807 $productstatic = new Product($this->db);
1808
1809 $this->tpl['id'] = $line->id;
1810
1811 $this->tpl['label'] = '';
1812 if (!empty($line->fk_product) && $line->fk_product > 0) {
1813 $productstatic->fetch($line->fk_product);
1814 $productstatic->load_virtual_stock();
1815 $this->tpl['label'] .= $productstatic->getNomUrl(1);
1816 //$this->tpl['label'].= ' - '.$productstatic->label;
1817 } else {
1818 // If origin MO line is not a product, but another MO
1819 // TODO
1820 }
1821
1822 $this->tpl['qty_bom'] = 1;
1823 if (is_object($this->bom) && $this->bom->qty > 1) {
1824 $this->tpl['qty_bom'] = $this->bom->qty;
1825 }
1826
1827 $this->tpl['stock'] = $productstatic->stock_reel;
1828 $this->tpl['seuil_stock_alerte'] = $productstatic->seuil_stock_alerte;
1829 $this->tpl['virtual_stock'] = $productstatic->stock_theorique;
1830 $this->tpl['qty'] = $line->qty;
1831 $this->tpl['fk_unit'] = $line->fk_unit;
1832 $this->tpl['qty_frozen'] = $line->qty_frozen;
1833 $this->tpl['disable_stock_change'] = $line->disable_stock_change;
1834 $this->tpl['efficiency'] = $line->efficiency;
1835
1836
1837 global $conf; // used into template
1838 $res = include DOL_DOCUMENT_ROOT.'/mrp/tpl/originproductline.tpl.php';
1839 }
1840
1849 public static function replaceThirdparty($db, $origin_id, $dest_id)
1850 {
1851 $tables = array('mrp_mo');
1852
1853 return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
1854 }
1855
1856
1862 public function getMoChilds()
1863 {
1864 $TMoChilds = array();
1865 $error = 0;
1866
1867 $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."mrp_mo as mo_child";
1868 $sql .= " WHERE fk_parent_line IN ";
1869 $sql .= " (SELECT rowid FROM ".MAIN_DB_PREFIX."mrp_production as line_parent";
1870 $sql .= " WHERE fk_mo=".((int) $this->id).")";
1871
1872 $resql = $this->db->query($sql);
1873
1874 if ($resql) {
1875 if ($this->db->num_rows($resql) > 0) {
1876 while ($obj = $this->db->fetch_object($resql)) {
1877 $MoChild = new Mo($this->db);
1878 $res = $MoChild->fetch($obj->rowid);
1879 if ($res > 0) {
1880 $TMoChilds[$MoChild->id] = $MoChild;
1881 } else {
1882 $error++;
1883 }
1884 }
1885 }
1886 } else {
1887 $error++;
1888 }
1889
1890 if ($error) {
1891 return -1;
1892 } else {
1893 return $TMoChilds;
1894 }
1895 }
1896
1903 public function getAllMoChilds($depth = 0)
1904 {
1905 if ($depth > 1000) {
1906 return -1;
1907 }
1908
1909 $TMoChilds = array();
1910 $error = 0;
1911
1912 $childMoList = $this->getMoChilds();
1913
1914 if ($childMoList == -1) {
1915 return -1;
1916 }
1917
1918 foreach ($childMoList as $childMo) {
1919 $TMoChilds[$childMo->id] = $childMo;
1920 }
1921
1922 foreach ($childMoList as $childMo) {
1923 $childMoChildren = $childMo->getAllMoChilds($depth + 1);
1924
1925 if ($childMoChildren == -1) {
1926 $error++;
1927 } else {
1928 foreach ($childMoChildren as $child) {
1929 $TMoChilds[$child->id] = $child;
1930 }
1931 }
1932 }
1933
1934 if ($error) {
1935 return -1;
1936 } else {
1937 return $TMoChilds;
1938 }
1939 }
1940
1941
1942
1948 public function getMoParent()
1949 {
1950 $MoParent = new Mo($this->db);
1951 $error = 0;
1952
1953 $sql = "SELECT lineparent.fk_mo as id_moparent FROM ".MAIN_DB_PREFIX."mrp_mo as mo";
1954 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."mrp_production lineparent ON mo.fk_parent_line = lineparent.rowid";
1955 $sql .= " WHERE mo.rowid = ".((int) $this->id);
1956
1957 $resql = $this->db->query($sql);
1958
1959 if ($resql) {
1960 if ($this->db->num_rows($resql) > 0) {
1961 $obj = $this->db->fetch_object($resql);
1962 $res = $MoParent->fetch($obj->id_moparent);
1963 if ($res < 0) {
1964 $error++;
1965 }
1966 } else {
1967 return 0;
1968 }
1969 } else {
1970 $error++;
1971 }
1972
1973 if ($error) {
1974 return -1;
1975 } else {
1976 return $MoParent;
1977 }
1978 }
1979
1987 public function getKanbanView($option = '', $arraydata = null)
1988 {
1989 global $langs;
1990 '@phan-var-force array{selected?:int<0,1>,bom?:Bom,product?:product} $arraydata';
1991
1992 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
1993
1994 $return = '<div class="box-flex-item box-flex-grow-zero">';
1995 $return .= '<div class="info-box info-box-sm">';
1996 $return .= '<span class="info-box-icon bg-infobox-action">';
1997 $return .= img_picto('', $this->picto);
1998 //$return .= '<i class="fa fa-dol-action"></i>'; // Can be image
1999 $return .= '</span>';
2000 $return .= '<div class="info-box-content">';
2001 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref).'</span>';
2002 if ($selected >= 0) {
2003 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2004 }
2005 if (!empty($arraydata['bom'])) {
2006 $return .= '<br><span class="info-box-label">'.$arraydata['bom']->getNomUrl(1).'</span>';
2007 }
2008 if (!empty($arraydata['product'])) {
2009 $return .= '<br><span class="info-box-label">'.$arraydata['product']->getNomUrl(1).'</span>';
2010 if (property_exists($this, 'qty')) {
2011 $return .= ' <span class="info-box-label">('.$langs->trans("Qty").' '.$this->qty.')</span>';
2012 }
2013 } else {
2014 if (property_exists($this, 'qty')) {
2015 $return .= '<br><span class="info-box-label">'.$langs->trans('Quantity').' : '.$this->qty.'</span>';
2016 }
2017 }
2018 if (method_exists($this, 'getLibStatut')) {
2019 $return .= '<br><div class="info-box-status">'.$this->getLibStatut(3).'</div>';
2020 }
2021 $return .= '</div>';
2022 $return .= '</div>';
2023 $return .= '</div>';
2024 return $return;
2025 }
2026}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
$object ref
Definition info.php:79
Class for BOM.
Definition bom.class.php:45
Parent class of all other business classes (invoices, contracts, proposals, orders,...
deleteLineCommon(User $user, $idline, $notrigger=0)
Delete a line of object in database.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
createCommon(User $user, $notrigger=0)
Create object in the database.
getFieldList($alias='', $excludefields=array())
Function to concat keys of fields.
updateCommon(User $user, $notrigger=0)
Update object into database.
setStatusCommon($user, $status, $notrigger=0, $triggercode='')
Set to a status.
initAsSpecimenCommon()
Initialise object with example values Id must be 0 if object instance is a specimen.
copy_linked_contact($objFrom, $source='internal')
Copy contact from one element to current.
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
fetch_product()
Load the product with id $this->fk_product into this->product.
fetchLinesCommon($morewhere='', $noextrafields=0)
Load object in memory from the database.
fetchCommon($id, $ref=null, $morewhere='', $noextrafields=0)
Load object in memory from the database.
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Class to manage Dolibarr database access.
Class to manage warehouses.
Class for Mo.
Definition mo.class.php:34
__construct(DoliDB $db)
Constructor.
Definition mo.class.php:279
fetchLinesLinked($role, $lineid=0)
Get list of lines linked to current line for a defined role.
Definition mo.class.php:601
getMoChilds()
Function used to return children of Mo.
static replaceThirdparty($db, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
$tpl
@ var array{id:int,label:string,qty_bom:int|float,stock:float,seuil_stock_alerte:float,...
Definition mo.class.php:271
printOriginLinesList($restrictlist='', $selectedLines=array())
Return HTML table table of source object lines TODO Move this and previous function into output html ...
fetchLines()
Load object lines in memory from the database.
Definition mo.class.php:497
getNextNumRef($prod)
Returns the reference to the following non used MO depending on the active numbering module defined i...
create(User $user, $notrigger=0)
Create object into database.
Definition mo.class.php:319
fetch($id, $ref=null)
Load object in memory from the database.
Definition mo.class.php:480
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load list of objects in memory from the database.
Definition mo.class.php:517
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
reopen($user, $notrigger=0)
Set back to validated status.
getMoParent()
Function used to return children of Mo.
getLinesArray($rolefilter='')
Create an array of lines.
updateProduction(User $user, $notrigger=0)
Update quantities in lines to consume and/or lines to produce.
Definition mo.class.php:842
LibStatut($status, $mode=0)
Return the status.
cancel($user, $notrigger=0, $also_cancel_consumed_and_produced_lines=false)
Set cancel status.
setDraft($user, $notrigger=0)
Set draft status.
printOriginLine($line, $var, $restrictlist='', $defaulttpldir='/core/tpl', $selectedLines=array())
Return HTML with a line of table array of source object lines TODO Move this and previous function in...
update(User $user, $notrigger=0)
Update object into database.
Definition mo.class.php:688
getAllMoChilds($depth=0)
Function used to return all child MOs recursively.
createProduction(User $user, $notrigger=0)
Erase and update the line to consume and to produce.
Definition mo.class.php:722
deleteLine(User $user, $idline, $notrigger=0, $fk_movement=0)
Delete a line of object in database.
Definition mo.class.php:933
getKanbanView($option='', $arraydata=null)
Return clickable link of object (with eventually picto)
validate($user, $notrigger=0)
Validate Mo.
cancelConsumedAndProducedLines($user, $mode=0, $also_delete_lines=false, $notrigger=0)
Cancel consumed and produced lines (movement stocks)
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
getTooltipContentArray($params)
getTooltipContentArray
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
getLibStatut($mode=0)
Return label of the status.
info($id)
Load the info information in the object.
countMovements()
Count number of movement with origin of MO.
Definition mo.class.php:653
createFromClone(User $user, $fromid)
Clone an object into another one.
Definition mo.class.php:377
Class MoLine.
Class to manage stock movements.
Class to manage products or services.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition index.php:162
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:63
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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.