dolibarr 23.0.4
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-2025 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
6 * Copyright (C) 2025 Noé Cendrier <noe.cendrier@altairis.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
29require_once DOL_DOCUMENT_ROOT.'/mrp/class/moline.class.php';
30
34class Mo extends CommonObject
35{
39 public $element = 'mo';
40
44 public $table_element = 'mrp_mo';
45
49 public $picto = 'mrp';
50
51
52 const STATUS_DRAFT = 0;
53 const STATUS_VALIDATED = 1; // To produce
54 const STATUS_INPROGRESS = 2;
55 const STATUS_PRODUCED = 3;
56 const STATUS_CANCELED = 9;
57
58
88 public $fields = array(
89 'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -2, 'position' => 1, 'notnull' => 1, 'index' => 1, 'comment' => "Id",),
90 'entity' => array('type' => 'integer', 'label' => 'Entity', 'enabled' => 1, 'visible' => 0, 'position' => 5, 'notnull' => 1, 'default' => '1', 'index' => 1),
91 '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),
92 'fk_bom' => array('type' => 'integer:Bom:bom/class/bom.class.php:0:(t.status:=:1)', 'filter' => 'active=1', 'label' => 'BOM', 'enabled' => 'isModEnabled("bom")', 'visible' => 1, 'position' => 33, 'notnull' => -1, 'index' => 1, 'comment' => "Original BOM", 'css' => 'minwidth100 maxwidth500', 'csslist' => 'tdoverflowmax150', 'picto' => 'bom'),
93 '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'),
94 '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'),
95 'qty' => array('type' => 'real', 'label' => 'QtyToProduce', 'enabled' => 1, 'visible' => 1, 'position' => 40, 'notnull' => 1, 'comment' => "Qty to produce", 'css' => 'width75', 'default' => '1', 'isameasure' => 1),
96 '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),
97 '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'),
98 'fk_project' => array('type' => 'integer:Project:projet/class/project.class.php:1:(fk_statut:=:1)', 'label' => 'Project', 'picto' => 'project', 'enabled' => 'isModEnabled("project")', 'visible' => -1, 'position' => 51, 'notnull' => -1, 'index' => 1, 'css' => 'minwidth200 maxwidth400', 'csslist' => 'tdoverflowmax100'),
99 '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'),
100 'note_public' => array('type' => 'html', 'label' => 'NotePublic', 'enabled' => 1, 'visible' => 0, 'position' => 61, 'notnull' => -1,),
101 'note_private' => array('type' => 'html', 'label' => 'NotePrivate', 'enabled' => 1, 'visible' => 0, 'position' => 62, 'notnull' => -1,),
102 'date_creation' => array('type' => 'datetime', 'label' => 'DateCreation', 'enabled' => 1, 'visible' => -2, 'position' => 500, 'notnull' => 1,),
103 'tms' => array('type' => 'timestamp', 'label' => 'DateModification', 'enabled' => 1, 'visible' => -2, 'position' => 501, 'notnull' => 1,),
104 'date_valid' => array('type' => 'datetime', 'label' => 'DateValidation', 'enabled' => 1, 'visible' => -2, 'position' => 502,),
105 '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'),
106 'fk_user_modif' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserModif', 'enabled' => 1, 'visible' => -2, 'position' => 511, 'notnull' => -1, 'csslist' => 'tdoverflowmax100'),
107 'date_start_planned' => array('type' => 'datetime', 'label' => 'DateStartPlannedMo', 'enabled' => 1, 'visible' => 1, 'position' => 55, 'notnull' => -1, 'index' => 1, 'help' => 'KeepEmptyForAsap', 'alwayseditable' => 1, 'csslist' => 'nowraponall'),
108 'date_end_planned' => array('type' => 'datetime', 'label' => 'DateEndPlannedMo', 'enabled' => 1, 'visible' => 1, 'position' => 56, 'notnull' => -1, 'index' => 1, 'alwayseditable' => 1, 'csslist' => 'nowraponall'),
109 'import_key' => array('type' => 'varchar(14)', 'label' => 'ImportId', 'enabled' => 1, 'visible' => -2, 'position' => 1000, 'notnull' => -1,),
110 'model_pdf' => array('type' => 'varchar(255)', 'label' => 'Model pdf', 'enabled' => 1, 'visible' => 0, 'position' => 1010),
111 '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')),
112 '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),
113 );
114
118 public $rowid;
119
123 public $ref;
124
128 public $mrptype;
129
133 public $label;
134
138 public $qty;
139
143 public $fk_warehouse;
144
148 public $fk_soc;
149
153 public $socid;
154
158 public $note_public;
159
163 public $note_private;
164
168 public $date_valid;
169
173 public $fk_user_creat;
177 public $fk_user_modif;
181 public $import_key;
185 public $status;
186
190 public $fk_product;
191
195 public $product;
196
200 public $date_start_planned;
201
205 public $date_end_planned;
206
210 public $fk_bom;
211
215 public $bom;
216
220 public $fk_project;
221
226 public $oldQty;
227
228
229 // If this object has a subtable with lines
230
234 public $table_element_line = 'mrp_production';
235
239 public $fk_element = 'fk_mo';
240
244 public $class_element_line = 'MoLine';
245
249 protected $childtables = array();
250
254 protected $childtablesoncascade = array('mrp_production');
255
259 public $lines = array();
260
264 public $line = null;
265
269 public $fk_parent_line;
270
274 public $tpl = array();
275
282 public $noFlattenBomLineIds = array();
283
284
290 public function __construct(DoliDB $db)
291 {
292 global $langs;
293
294 $this->db = $db;
295
296 $this->ismultientitymanaged = 1;
297 $this->isextrafieldmanaged = 1;
298
299 if (!getDolGlobalString('MAIN_SHOW_TECHNICAL_ID') && isset($this->fields['rowid'])) {
300 $this->fields['rowid']['visible'] = 0;
301 }
302 if (!isModEnabled('multicompany') && isset($this->fields['entity'])) {
303 $this->fields['entity']['enabled'] = 0;
304 }
305
306 // Unset fields that are disabled
307 foreach ($this->fields as $key => $val) {
308 if (isset($val['enabled']) && empty($val['enabled'])) {
309 unset($this->fields[$key]);
310 }
311 }
312
313 // Translate some data of arrayofkeyval
314 foreach ($this->fields as $key => $val) {
315 if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
316 foreach ($val['arrayofkeyval'] as $key2 => $val2) {
317 $this->fields[$key]['arrayofkeyval'][$key2] = $langs->trans($val2);
318 }
319 }
320 }
321 }
322
330 public function create(User $user, $notrigger = 0)
331 {
332 $error = 0;
333 $idcreated = 0;
334
335 // 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
336 if (getDolGlobalString('PRODUIT_SOUSPRODUITS') && !getDolGlobalString('ALLOW_USE_KITS_INTO_BOM_AND_MO') && $this->fk_product > 0) {
337 include_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
338 $tmpproduct = new Product($this->db);
339 $tmpproduct->fetch((int) $this->fk_product);
340 if ($tmpproduct->hasFatherOrChild(1) > 0) {
341 $this->error = 'ErrorAVirtualProductCantBeUsedIntoABomOrMo';
342 $this->errors[] = $this->error;
343 return -2;
344 }
345 }
346
347 $this->db->begin();
348
349 if ($this->fk_bom > 0) {
350 // If there is a known BOM, we force the type of MO to the type of BOM
351 include_once DOL_DOCUMENT_ROOT.'/bom/class/bom.class.php';
352 $tmpbom = new BOM($this->db);
353 $tmpbom->fetch($this->fk_bom);
354
355 $this->mrptype = $tmpbom->bomtype;
356 }
357
358
359 $idcreated = $this->createCommon($user, $notrigger);
360 if ($idcreated <= 0) {
361 $error++;
362 }
363
364 if (!$error) {
365 $result = $this->createProduction($user, $notrigger); // Insert lines from BOM
366 if ($result <= 0) {
367 $error++;
368 }
369 }
370
371 if (!$error) {
372 $this->db->commit();
373 return $idcreated;
374 } else {
375 $this->db->rollback();
376 return -1;
377 }
378 }
379
387 public function createFromClone(User $user, $fromid)
388 {
389 global $langs, $extrafields;
390 $error = 0;
391
392 dol_syslog(__METHOD__, LOG_DEBUG);
393
394 $object = new self($this->db);
395
396 $this->db->begin();
397
398 // Load source object
399 $result = $object->fetchCommon($fromid);
400 if ($result > 0 && !empty($object->table_element_line)) {
401 $object->fetchLines();
402 }
403
404 // get lines so they will be clone
405 //foreach($this->lines as $line)
406 // $line->fetch_optionals();
407
408 // Reset some properties
409 unset($object->id);
410 unset($object->fk_user_creat);
411 unset($object->import_key);
412
413 // We make $object->lines empty to sort it without produced and consumed lines
414 $TLines = $object->lines;
415 $object->lines = array();
416
417 // Remove produced and consumed lines
418 foreach ($TLines as $key => $line) {
419 if (in_array($line->role, array('consumed', 'produced'))) {
420 unset($object->lines[$key]);
421 } else {
422 $object->lines[] = $line;
423 }
424 }
425
426
427 // Clear fields @phan-suppress-next-line PhanTypeMismatchProperty
428 $object->ref = empty($this->fields['ref']['default']) ? "copy_of_".$object->ref : $this->fields['ref']['default'];
429 // @phan-suppress-next-line PhanTypeInvalidDimOffset
430 $object->label = empty($this->fields['label']['default']) ? $langs->trans("CopyOf")." ".$object->label : $this->fields['label']['default'];
431 $object->status = self::STATUS_DRAFT;
432 // ...
433 // Clear extrafields that are unique
434 if (is_array($object->array_options) && count($object->array_options) > 0) {
435 $extrafields->fetch_name_optionals_label($this->table_element);
436 foreach ($object->array_options as $key => $option) {
437 $shortkey = preg_replace('/options_/', '', $key);
438 if (!empty($extrafields->attributes[$this->element]['unique'][$shortkey])) {
439 //var_dump($key);
440 //var_dump($clonedObj->array_options[$key]); exit;
441 unset($object->array_options[$key]);
442 }
443 }
444 }
445
446 // Create clone
447 $object->context['createfromclone'] = 'createfromclone';
448 $result = $object->createCommon($user);
449 if ($result < 0) {
450 $error++;
451 $this->error = $object->error;
452 $this->errors = $object->errors;
453 }
454
455 if (!$error) {
456 // copy internal contacts
457 if ($this->copy_linked_contact($object, 'internal') < 0) {
458 $error++;
459 }
460 }
461
462 if (!$error) {
463 // copy external contacts if same company
464 if (property_exists($this, 'socid') && $this->socid == $object->socid) {
465 if ($this->copy_linked_contact($object, 'external') < 0) {
466 $error++;
467 }
468 }
469 }
470
471 unset($object->context['createfromclone']);
472
473 // End
474 if (!$error) {
475 $this->db->commit();
476 return $object;
477 } else {
478 $this->db->rollback();
479 return -1;
480 }
481 }
482
490 public function fetch($id, $ref = null)
491 {
492 $result = $this->fetchCommon($id, $ref);
493 if ($result > 0 && !empty($this->table_element_line)) {
494 $this->fetchLines();
495 }
496
497 $this->socid = $this->fk_soc;
498
499 return $result;
500 }
501
507 public function fetchLines()
508 {
509 $this->lines = array();
510
511 $result = $this->fetchLinesCommon();
512 return $result;
513 }
514
515
527 public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, $filter = '', $filtermode = 'AND')
528 {
529 dol_syslog(__METHOD__, LOG_DEBUG);
530
531 $records = array();
532
533 $sql = 'SELECT ';
534 $sql .= $this->getFieldList();
535 $sql .= ' FROM '.MAIN_DB_PREFIX.$this->table_element.' as t';
536 if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
537 $sql .= ' WHERE t.entity IN ('.getEntity($this->element).')';
538 } else {
539 $sql .= ' WHERE 1 = 1';
540 }
541
542 // Manage filter
543 if (is_array($filter)) {
544 $sqlwhere = array();
545 if (count($filter) > 0) {
546 foreach ($filter as $key => $value) {
547 if ($key == 't.rowid') {
548 $sqlwhere[] = $this->db->sanitize($key)." = ".((int) $value);
549 } elseif (strpos($key, 'date') !== false) {
550 $sqlwhere[] = $this->db->sanitize($key)." = '".$this->db->idate((int) $value)."'";
551 } else {
552 $sqlwhere[] = $this->db->sanitize($key)." LIKE '%".$this->db->escape($this->db->escapeforlike($value))."%'";
553 }
554 }
555 }
556 if (count($sqlwhere) > 0) {
557 $sql .= ' AND ('.implode(' '.$this->db->escape($filtermode).' ', $sqlwhere).')';
558 }
559
560 $filter = '';
561 }
562
563 // Manage filter
564 $errormessage = '';
565 $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
566 if ($errormessage) {
567 $this->errors[] = $errormessage;
568 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
569 return -1;
570 }
571
572 if (!empty($sortfield)) {
573 $sql .= $this->db->order($sortfield, $sortorder);
574 }
575 if (!empty($limit)) {
576 $sql .= $this->db->plimit($limit, $offset);
577 }
578
579 $resql = $this->db->query($sql);
580 if ($resql) {
581 $num = $this->db->num_rows($resql);
582 $i = 0;
583 while ($i < min($limit, $num)) {
584 $obj = $this->db->fetch_object($resql);
585
586 $record = new self($this->db);
587 $record->setVarsFromFetchObj($obj);
588
589 $records[$record->id] = $record;
590
591 $i++;
592 }
593 $this->db->free($resql);
594
595 return $records;
596 } else {
597 $this->errors[] = 'Error '.$this->db->lasterror();
598 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
599
600 return -1;
601 }
602 }
603
611 public function fetchLinesLinked($role, $lineid = 0)
612 {
613 $resarray = array();
614 $mostatic = new MoLine($this->db);
615
616 $sql = 'SELECT ';
617 $sql .= $mostatic->getFieldList();
618 $sql .= ' FROM '.MAIN_DB_PREFIX.$mostatic->table_element.' as t';
619 $sql .= " WHERE t.role = '".$this->db->escape($role)."'";
620 if ($lineid > 0) {
621 $sql .= ' AND t.fk_mrp_production = '.((int) $lineid);
622 } else {
623 $sql .= 'AND t.fk_mo = '.((int) $this->id);
624 }
625
626 $resql = $this->db->query($sql);
627 if ($resql) {
628 $num = $this->db->num_rows($resql);
629
630 $i = 0;
631 while ($i < $num) {
632 $obj = $this->db->fetch_object($resql);
633 if ($obj) {
634 $resarray[] = array(
635 'rowid' => (int) $obj->rowid,
636 'date' => $this->db->jdate($obj->date_creation),
637 'qty' => (float) $obj->qty,
638 'role' => $obj->role,
639 'fk_product' => $obj->fk_product,
640 'fk_warehouse' => $obj->fk_warehouse,
641 'batch' => $obj->batch,
642 'fk_stock_movement' => $obj->fk_stock_movement,
643 'fk_unit' => $obj->fk_unit
644 );
645 }
646
647 $i++;
648 }
649
650 return $resarray;
651 } else {
652 $this->error = $this->db->lasterror();
653 return array();
654 }
655 }
656
657
663 public function countMovements()
664 {
665 $result = 0;
666
667 $sql = 'SELECT COUNT(rowid) as nb FROM '.MAIN_DB_PREFIX.'stock_mouvement as sm';
668 $sql .= " WHERE sm.origintype = 'mo' and sm.fk_origin = ".((int) $this->id);
669
670 $resql = $this->db->query($sql);
671 if ($resql) {
672 $num = $this->db->num_rows($resql);
673
674 $i = 0;
675 while ($i < $num) {
676 $obj = $this->db->fetch_object($resql);
677 if ($obj) {
678 $result = $obj->nb;
679 }
680
681 $i++;
682 }
683 } else {
684 $this->error = $this->db->lasterror();
685 }
686
687 return $result;
688 }
689
690
698 public function update(User $user, $notrigger = 0)
699 {
700 $error = 0;
701
702 $this->db->begin();
703
704 $result = $this->updateCommon($user, $notrigger);
705 if ($result <= 0) {
706 $error++;
707 }
708
709 // Update the lines (the qty) to consume or to produce
710 $result = $this->updateProduction($user, $notrigger);
711 if ($result <= 0) {
712 $error++;
713 }
714
715 if (!$error) {
716 $this->db->commit();
717 return 1;
718 } else {
719 $this->db->rollback();
720 return -1;
721 }
722 }
723
724
732 public function createProduction(User $user, $notrigger = 0)
733 {
734 $error = 0;
735 $role = "";
736
737 if ($this->status != self::STATUS_DRAFT) {
738 dol_syslog("Bad status for MO object. Can't add production lines. Check that MO has status DRAFT.");
739 $this->error = "Bad status for MO object. Can't add production lines. Check that MO has status DRAFT.";
740 return -1;
741 }
742
743 $this->db->begin();
744
745 // Insert lines in mrp_production table from BOM data
746
747 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'mrp_production WHERE fk_mo = '.((int) $this->id);
748 $this->db->query($sql);
749
750 $moline = new MoLine($this->db);
751
752 // Line to produce
753 $moline->fk_mo = (int) $this->id;
754 $moline->qty = (float) $this->qty;
755 $moline->fk_product = (int) $this->fk_product;
756 $moline->fk_warehouse = (int) $this->fk_warehouse;
757 $moline->position = 1;
758
759 include_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
760 $tmpproduct = new Product($this->db);
761 $tmpproduct->fetch((int) $this->fk_product);
762 $moline->fk_unit = $tmpproduct->fk_unit;
763
764 if ($this->fk_bom > 0) { // If a BOM is defined, we know what to produce.
765 include_once DOL_DOCUMENT_ROOT.'/bom/class/bom.class.php';
766 $bom = new BOM($this->db);
767 $bom->fetch($this->fk_bom);
768 if ($bom->bomtype == 1) {
769 $role = 'toproduce';
770 $moline->role = 'toconsume';
771 } else {
772 $role = 'toconsume';
773 $moline->role = 'toproduce';
774 }
775 } else {
776 $bom = null;
777 if ($this->mrptype == 1) {
778 $moline->role = 'toconsume';
779 } else {
780 $moline->role = 'toproduce';
781 }
782 }
783
784 $resultline = $moline->create($user, 0); // Never use triggers here
785 if ($resultline <= 0) {
786 $error++;
787 $this->setErrorsFromObject($moline);
788 }
789
790 if ($this->fk_bom > 0 && is_object($bom)) { // If a BOM is defined, we know what to consume.
791 if ($bom->id > 0) {
792 // process lines to consume, this needs to recurse through BOM's
793 $error += $this->processBOM($user, $role, $bom, (float) $this->qty);
794 }
795 }
796
797 if (!$error) {
798 $this->db->commit();
799 return 1;
800 } else {
801 $this->db->rollback();
802 return -1;
803 }
804 }
805
806
816 public function processBOM(User $user, $role, $bom, $quantity)
817 {
818 $error = 0;
819
820 $quantity /= $bom->qty;
821 foreach ($bom->lines as $line) {
822 $quantity_line = !$line->qty_frozen ? $line->qty * $quantity / (!empty($line->efficiency) ? $line->efficiency : 1) : 1;
823
824 $tmpproduct = new Product($this->db);
825 $tmpproduct->fetch($line->fk_product);
826 if ($line->fk_bom_child > 0 && !in_array($line->id, $this->noFlattenBomLineIds)) {
827 $bom = new BOM($this->db);
828 $bom->fetch((int) $line->fk_bom_child);
829 $error += $this->processBOM($user, $role, $bom, $quantity_line);
830 } else {
831 $moline = new MoLine($this->db);
832 $moline->fk_mo = $this->id;
833 $moline->origin_id = $line->id;
834 $moline->origin_type = 'bomline';
835 if (!empty($line->fk_unit)) {
836 $moline->fk_unit = $line->fk_unit;
837 }
838
839 $moline->qty = (float) price2num($quantity_line, 'MS'); // Calculate with Qty to produce and more presition
840 if ($moline->qty <= 0) {
841 $error++;
842 $this->error = "BadValueForquantityToConsume";
843 $this->errors[] = $this->error;
844 } else {
845 $moline->fk_product = $line->fk_product;
846 //$moline->fk_warehouse = !empty($line->fk_warehouse) ? $line->fk_warehouse : (!empty($bom->fk_warehouse) ? $bom->fk_warehouse : $this->fk_warehouse);
847 if (in_array($role, array('toconsume', 'consumed'))) {
848 $moline->fk_warehouse = null;
849 } else { // to produce / produced
850 $moline->fk_warehouse = $this->fk_warehouse; // We fill the production warehouse defined in MO. Do not use the one of the BOM, if a BOM has a production warehouse set, it should have been already copied into the MO.
851 }
852 $moline->role = $role;
853 $moline->position = $line->position;
854 $moline->qty_frozen = $line->qty_frozen;
855 $moline->disable_stock_change = $line->disable_stock_change;
856 if (!empty($line->fk_default_workstation)) {
857 $moline->fk_default_workstation = $line->fk_default_workstation;
858 }
859
860 $resultline = $moline->create($user, 0); // Never use triggers here
861 //var_dump($moline);
862 if ($resultline <= 0) {
863 $error++;
864 $this->error = $moline->error;
865 $this->errors[] = $moline->error;
866 $this->errors = array_merge($this->errors, $moline->errors);
867 dol_print_error($this->db, $moline->error, $moline->errors);
868 }
869 }
870 }
871 if ($error) {
872 break;
873 }
874 }
875 return $error;
876 }
877
878
886 public function updateProduction(User $user, $notrigger = 0)
887 {
888 $error = 0;
889
890 if ($this->status != self::STATUS_DRAFT) {
891 return 1;
892 }
893
894 $this->db->begin();
895
896 $oldQty = $this->oldQty;
897 $newQty = $this->qty;
898 if ($newQty != $oldQty && !empty($this->oldQty)) {
899 $sql = "SELECT rowid FROM " . MAIN_DB_PREFIX . "mrp_production WHERE fk_mo = " . (int) $this->id;
900 $resql = $this->db->query($sql);
901 if ($resql) {
902 while ($obj = $this->db->fetch_object($resql)) {
903 $moLine = new MoLine($this->db);
904 $res = $moLine->fetch($obj->rowid);
905 if (!$res) {
906 $error++;
907 }
908
909 if ($moLine->role == 'toconsume' || $moLine->role == 'toproduce') {
910 if (empty($moLine->qty_frozen)) {
911 $qty = $newQty * $moLine->qty / $oldQty;
912 $moLine->qty = (float) price2num($qty, 'MS');
913 $res = $moLine->update($user);
914 if (!$res) {
915 $error++;
916 }
917 }
918 }
919 }
920 }
921 }
922 if (!$error) {
923 $this->db->commit();
924 return 1;
925 } else {
926 $this->db->rollback();
927 return -1;
928 }
929 }
930
931
940 public function delete(User $user, $notrigger = 0, $also_cancel_consumed_and_produced_lines = false)
941 {
942 $error = 0;
943 $this->db->begin();
944
945 if ($also_cancel_consumed_and_produced_lines) {
946 $result = $this->cancelConsumedAndProducedLines($user, 0, false, $notrigger);
947 if ($result < 0) {
948 $error++;
949 }
950 }
951
952 if (!$error) {
953 $result = $this->deleteCommon($user, $notrigger);
954 if ($result < 0) {
955 $error++;
956 }
957 }
958
959 if ($error) {
960 $this->db->rollback();
961 return -1;
962 } else {
963 $this->db->commit();
964 return 1;
965 }
966 }
967
977 public function deleteLine(User $user, $idline, $notrigger = 0, $fk_movement = 0)
978 {
979 global $langs;
980 $langs->loadLangs(array('stocks', 'mrp'));
981
982 if ($this->status < 0) {
983 $this->error = 'ErrorDeleteLineNotAllowedByObjectStatus';
984 return -2;
985 }
986 $productstatic = new Product($this->db);
987
988 $arrayoflines = $this->fetchLinesLinked('consumed', $idline); // Get lines consumed under the one to delete
989
990 $result = 0;
991 $error = 0;
992
993 $this->db->begin();
994
995 if (!empty($fk_movement)) {
996 $stockmove = new MouvementStock($this->db);
997 $stockmove->setOrigin($this->element, $this->id);
998
999 // The fk_movement was not recorded so we try to guess the product and quantity to restore.
1000 $moline = new MoLine($this->db);
1001 $TArrayMoLine = $moline->fetchAll('', '', 1, 0, '(fk_stock_movement:=:'.((int) $fk_movement).')');
1002 $moline = array_shift($TArrayMoLine);
1003
1004 $movement = new MouvementStock($this->db);
1005 $movement->fetch($fk_movement);
1006 $productstatic->fetch($movement->product_id);
1007 $qtytoprocess = $movement->qty;
1008
1009 // Reverse stock movement
1010 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
1011 $codemovementCancel = $langs->trans("StockIncrease");
1012
1013 if (($qtytoprocess >= 0)) {
1014 $idstockmove = $stockmove->reception($user, $movement->product_id, $movement->warehouse_id, $qtytoprocess, 0, $labelmovementCancel, '', '', $movement->batch, dol_now(), 0, $codemovementCancel);
1015 } else {
1016 $idstockmove = $stockmove->livraison($user, $movement->product_id, $movement->warehouse_id, $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $movement->batch, 0, $codemovementCancel);
1017 }
1018 if ($idstockmove < 0) {
1019 $this->setErrorsFromObject($stockmove);
1020 } else {
1021 $result = $moline->delete($user, $notrigger);
1022 }
1023 } elseif (!empty($arrayoflines)) {
1024 $stockmove = new MouvementStock($this->db);
1025 $stockmove->setOrigin($this->element, $this->id);
1026
1027 // Loop on each child lines
1028 foreach ($arrayoflines as $key => $arrayofline) {
1029 $lineDetails = $arrayoflines[$key];
1030 $productstatic->fetch($lineDetails['fk_product']);
1031 $qtytoprocess = $lineDetails['qty'];
1032
1033 // Reverse stock movement
1034 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
1035 $codemovementCancel = $langs->trans("StockIncrease");
1036
1037
1038 if ($qtytoprocess >= 0) {
1039 $idstockmove = $stockmove->reception($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, '', '', $lineDetails['batch'], dol_now(), 0, $codemovementCancel);
1040 } else {
1041 $idstockmove = $stockmove->livraison($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $lineDetails['batch'], 0, $codemovementCancel);
1042 }
1043 if ($idstockmove < 0) {
1044 $error++;
1045 $this->setErrorsFromObject($stockmove);
1046 } else {
1047 $moline = new MoLine($this->db);
1048 $moline->fetch($lineDetails['rowid']);
1049
1050 $resdel = $moline->delete($user, $notrigger);
1051 if ($resdel < 0) {
1052 $error++;
1053 $this->setErrorsFromObject($moline);
1054 }
1055 }
1056
1057 if ($error == 0) {
1058 $result = $this->deleteLineCommon($user, $idline, $notrigger);
1059 }
1060 }
1061 } else {
1062 // No child lines and no associated movement
1063 $result = $this->deleteLineCommon($user, $idline, $notrigger);
1064 }
1065
1066 if ($error != 0 || $result <= 0) {
1067 $this->db->rollback();
1068 } else {
1069 $this->db->commit();
1070 }
1071
1072 return $result;
1073 }
1074
1075
1083 public function getNextNumRef($prod)
1084 {
1085 global $langs, $conf;
1086 $langs->load("mrp");
1087
1088 if (getDolGlobalString('MRP_MO_ADDON')) {
1089 $mybool = false;
1090
1091 $file = getDolGlobalString('MRP_MO_ADDON') . ".php";
1092 $classname = getDolGlobalString('MRP_MO_ADDON');
1093
1094 // Include file with class
1095 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
1096 foreach ($dirmodels as $reldir) {
1097 $dir = dol_buildpath($reldir."core/modules/mrp/");
1098
1099 // Load file with numbering class (if found)
1100 $mybool = ((bool) @include_once $dir.$file) || $mybool;
1101 }
1102
1103 if (!$mybool) {
1104 dol_print_error(null, "Failed to include file ".$file);
1105 return '';
1106 }
1107
1108 $obj = new $classname();
1109 '@phan-var-force ModeleNumRefMos $obj';
1110 $numref = $obj->getNextValue($prod, $this);
1111
1112 if ($numref != "") {
1113 return $numref;
1114 } else {
1115 $this->error = $obj->error;
1116 //dol_print_error($this->db,get_class($this)."::getNextNumRef ".$obj->error);
1117 return "";
1118 }
1119 } else {
1120 print $langs->trans("Error")." ".$langs->trans("Error_MRP_MO_ADDON_NotDefined");
1121 return "";
1122 }
1123 }
1124
1132 public function validate($user, $notrigger = 0)
1133 {
1134 global $conf;
1135
1136 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1137
1138 $error = 0;
1139
1140 // Protection
1141 if ($this->status == self::STATUS_VALIDATED) {
1142 dol_syslog(get_class($this)."::validate action abandoned: already validated", LOG_WARNING);
1143 return 0;
1144 }
1145
1146 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mrp->create))
1147 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mrp->mrp_advance->validate))))
1148 {
1149 $this->error='NotEnoughPermissions';
1150 dol_syslog(get_class($this)."::valid ".$this->error, LOG_ERR);
1151 return -1;
1152 }*/
1153
1154 $now = dol_now();
1155
1156 $this->db->begin();
1157
1158 // Define new ref
1159 if (preg_match('/^[\‍(]?PROV/i', $this->ref) || empty($this->ref)) { // empty should not happened, but when it occurs, the test save life
1160 $this->fetch_product();
1161 $num = $this->getNextNumRef($this->product);
1162 } else {
1163 $num = (string) $this->ref;
1164 }
1165 $this->newref = $num;
1166
1167 // Validate
1168 $sql = "UPDATE ".MAIN_DB_PREFIX.$this->table_element;
1169 $sql .= " SET ref = '".$this->db->escape($num)."',";
1170 $sql .= " status = ".self::STATUS_VALIDATED.",";
1171 $sql .= " date_valid = '".$this->db->idate($now)."',";
1172 $sql .= " fk_user_valid = ".((int) $user->id);
1173 $sql .= " WHERE rowid = ".((int) $this->id);
1174
1175 dol_syslog(get_class($this)."::validate()", LOG_DEBUG);
1176 $resql = $this->db->query($sql);
1177 if (!$resql) {
1178 dol_print_error($this->db);
1179 $this->error = $this->db->lasterror();
1180 $error++;
1181 }
1182
1183 if (!$error && !$notrigger) {
1184 // Call trigger
1185 $result = $this->call_trigger('MRP_MO_VALIDATE', $user);
1186 if ($result < 0) {
1187 $error++;
1188 }
1189 // End call triggers
1190 }
1191
1192 if (!$error) {
1193 $this->oldref = $this->ref;
1194
1195 // Rename directory if dir was a temporary ref
1196 if (preg_match('/^[\‍(]?PROV/i', $this->ref)) {
1197 // Now we rename also files into index
1198 $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)."'";
1199 $sql .= " WHERE filename LIKE '".$this->db->escape($this->ref)."%' AND filepath = 'mrp/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
1200 $resql = $this->db->query($sql);
1201 if (!$resql) {
1202 $error++;
1203 $this->error = $this->db->lasterror();
1204 }
1205 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filepath = 'mrp/".$this->db->escape($this->newref)."'";
1206 $sql .= " WHERE filepath = 'mrp/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
1207 $resql = $this->db->query($sql);
1208 if (!$resql) {
1209 $error++;
1210 $this->error = $this->db->lasterror();
1211 }
1212
1213 // We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
1214 $oldref = dol_sanitizeFileName($this->ref);
1215 $newref = dol_sanitizeFileName($num);
1216 $dirsource = $conf->mrp->dir_output.'/'.$oldref;
1217 $dirdest = $conf->mrp->dir_output.'/'.$newref;
1218 if (!$error && file_exists($dirsource)) {
1219 dol_syslog(get_class($this)."::validate() rename dir ".$dirsource." into ".$dirdest);
1220
1221 if (@rename($dirsource, $dirdest)) {
1222 dol_syslog("Rename ok");
1223 // Rename docs starting with $oldref with $newref
1224 $listoffiles = dol_dir_list($conf->mrp->dir_output.'/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
1225 foreach ($listoffiles as $fileentry) {
1226 $dirsource = $fileentry['name'];
1227 $dirdest = preg_replace('/^'.preg_quote($oldref, '/').'/', $newref, $dirsource);
1228 $dirsource = $fileentry['path'].'/'.$dirsource;
1229 $dirdest = $fileentry['path'].'/'.$dirdest;
1230 @rename($dirsource, $dirdest);
1231 }
1232 }
1233 }
1234 }
1235 }
1236
1237 // Set new ref and current status
1238 if (!$error) {
1239 $this->ref = $num;
1240 $this->status = self::STATUS_VALIDATED;
1241 }
1242
1243 if (!$error) {
1244 $this->db->commit();
1245 return 1;
1246 } else {
1247 $this->db->rollback();
1248 return -1;
1249 }
1250 }
1251
1259 public function setDraft($user, $notrigger = 0)
1260 {
1261 // Protection
1262 if ($this->status <= self::STATUS_DRAFT) {
1263 return 0;
1264 }
1265
1266 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->write))
1267 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->mymodule_advance->validate))))
1268 {
1269 $this->error='Permission denied';
1270 return -1;
1271 }*/
1272
1273 return $this->setStatusCommon($user, self::STATUS_DRAFT, $notrigger, 'MRP_MO_UNVALIDATE');
1274 }
1275
1284 public function cancel($user, $notrigger = 0, $also_cancel_consumed_and_produced_lines = false)
1285 {
1286 // Protection
1287 if ($this->status != self::STATUS_VALIDATED && $this->status != self::STATUS_INPROGRESS) {
1288 return 0;
1289 }
1290
1291 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->write))
1292 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->mymodule_advance->validate))))
1293 {
1294 $this->error='Permission denied';
1295 return -1;
1296 }*/
1297
1298 $error = 0;
1299 $this->db->begin();
1300
1301 if ($also_cancel_consumed_and_produced_lines) {
1302 $result = $this->cancelConsumedAndProducedLines($user, 0, true, $notrigger);
1303 if ($result < 0) {
1304 $error++;
1305 }
1306 }
1307
1308 if (!$error) {
1309 $result = $this->setStatusCommon($user, self::STATUS_CANCELED, $notrigger, 'MRP_MO_CANCEL');
1310 if ($result < 0) {
1311 $error++;
1312 }
1313 }
1314
1315 if ($error) {
1316 $this->db->rollback();
1317 return -1;
1318 } else {
1319 $this->db->commit();
1320 return 1;
1321 }
1322 }
1323
1331 public function reopen($user, $notrigger = 0)
1332 {
1333 // Protection
1334 if ($this->status != self::STATUS_PRODUCED && $this->status != self::STATUS_CANCELED) {
1335 return 0;
1336 }
1337
1338 /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->write))
1339 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->mymodule->mymodule_advance->validate))))
1340 {
1341 $this->error='Permission denied';
1342 return -1;
1343 }*/
1344
1345 return $this->setStatusCommon($user, self::STATUS_VALIDATED, $notrigger, 'MRP_MO_REOPEN');
1346 }
1347
1357 public function cancelConsumedAndProducedLines($user, $mode = 0, $also_delete_lines = false, $notrigger = 0)
1358 {
1359 global $langs;
1360
1361 if (!isModEnabled('stock')) {
1362 return 1;
1363 }
1364
1365 require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php';
1366 require_once DOL_DOCUMENT_ROOT . '/product/stock/class/mouvementstock.class.php';
1367 $error = 0;
1368 $langs->load('stocks');
1369
1370 $this->db->begin();
1371
1372 // Cancel consumed lines
1373 if (empty($mode) || $mode == 1) {
1374 $arrayoflines = $this->fetchLinesLinked('consumed');
1375 if (!empty($arrayoflines)) {
1376 foreach ($arrayoflines as $key => $lineDetails) {
1377 $productstatic = new Product($this->db);
1378 $productstatic->fetch($lineDetails['fk_product']);
1379 $qtytoprocess = $lineDetails['qty'];
1380
1381 // Reverse stock movement
1382 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
1383 $codemovementCancel = $langs->trans("StockIncrease");
1384
1385 $stockmove = new MouvementStock($this->db);
1386 $stockmove->setOrigin($this->element, $this->id);
1387 if ($qtytoprocess >= 0) {
1388 $idstockmove = $stockmove->reception($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, '', '', $lineDetails['batch'], dol_now(), 0, $codemovementCancel);
1389 } else {
1390 $idstockmove = $stockmove->livraison($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $lineDetails['batch'], 0, $codemovementCancel);
1391 }
1392 if ($idstockmove < 0) {
1393 $this->error = $stockmove->error;
1394 $this->errors = $stockmove->errors;
1395 $error++;
1396 break;
1397 }
1398
1399 if ($also_delete_lines) {
1400 $result = $this->deleteLineCommon($user, $lineDetails['rowid'], $notrigger);
1401 if ($result < 0) {
1402 $error++;
1403 break;
1404 }
1405 }
1406 }
1407 }
1408 }
1409
1410 // Cancel produced lines
1411 if (empty($mode) || $mode == 2) {
1412 $arrayoflines = $this->fetchLinesLinked('produced');
1413 if (!empty($arrayoflines)) {
1414 foreach ($arrayoflines as $key => $lineDetails) {
1415 $productstatic = new Product($this->db);
1416 $productstatic->fetch($lineDetails['fk_product']);
1417 $qtytoprocess = $lineDetails['qty'];
1418
1419 // Reverse stock movement
1420 $labelmovementCancel = $langs->trans("CancelProductionForRef", $productstatic->ref);
1421 $codemovementCancel = $langs->trans("StockDecrease");
1422
1423 $stockmove = new MouvementStock($this->db);
1424 $stockmove->setOrigin($this->element, $this->id);
1425 if ($qtytoprocess >= 0) {
1426 $idstockmove = $stockmove->livraison($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, dol_now(), '', '', $lineDetails['batch'], 0, $codemovementCancel);
1427 } else {
1428 $idstockmove = $stockmove->reception($user, $lineDetails['fk_product'], $lineDetails['fk_warehouse'], $qtytoprocess, 0, $labelmovementCancel, '', '', $lineDetails['batch'], dol_now(), 0, $codemovementCancel);
1429 }
1430 if ($idstockmove < 0) {
1431 $this->error = $stockmove->error;
1432 $this->errors = $stockmove->errors;
1433 $error++;
1434 break;
1435 }
1436
1437 if ($also_delete_lines) {
1438 $result = $this->deleteLineCommon($user, $lineDetails['rowid'], $notrigger);
1439 if ($result < 0) {
1440 $error++;
1441 break;
1442 }
1443 }
1444 }
1445 }
1446 }
1447
1448 if ($error) {
1449 $this->db->rollback();
1450 return -1;
1451 } else {
1452 $this->db->commit();
1453 return 1;
1454 }
1455 }
1456
1463 public function getTooltipContentArray($params)
1464 {
1465 global $langs;
1466
1467 $langs->loadLangs(['mrp', 'products']);
1468 $nofetch = isset($params['nofetch']);
1469
1470 $datas = [];
1471
1472 $datas['picto'] = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("ManufacturingOrder").'</u>';
1473 if (isset($this->status)) {
1474 $datas['picto'] .= ' '.$this->getLibStatut(5);
1475 }
1476 $datas['ref'] = '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
1477 if (isset($this->label)) {
1478 $datas['label'] = '<br><b>'.$langs->trans('Label').':</b> '.$this->label;
1479 }
1480 if (isset($this->mrptype)) {
1481 $datas['type'] = '<br><b>'.$langs->trans('Type').':</b> '.$this->fields['mrptype']['arrayofkeyval'][$this->mrptype];
1482 }
1483 if (isset($this->qty)) {
1484 $datas['qty'] = '<br><b>'.$langs->trans('QtyToProduce').':</b> '.$this->qty;
1485 }
1486 if (!$nofetch && isset($this->fk_product)) {
1487 require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php';
1488 $product = new Product($this->db);
1489 $product->fetch($this->fk_product);
1490 $datas['product'] = '<br><b>'.$langs->trans('Product').':</b> '.$product->getNomUrl(1, '', 0, -1, 1);
1491 }
1492 if (!$nofetch && isset($this->fk_warehouse)) {
1493 require_once DOL_DOCUMENT_ROOT . '/product/stock/class/entrepot.class.php';
1494 $warehouse = new Entrepot($this->db);
1495 $warehouse->fetch($this->fk_warehouse);
1496 $datas['warehouse'] = '<br><b>'.$langs->trans('WarehouseForProduction').':</b> '.$warehouse->getNomUrl(1, '', 0, 1);
1497 }
1498
1499 return $datas;
1500 }
1501
1512 public function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $morecss = '', $save_lastsearch_value = -1)
1513 {
1514 global $conf, $langs, $action, $hookmanager;
1515
1516 if (!empty($conf->dol_no_mouse_hover)) {
1517 $notooltip = 1; // Force disable tooltips
1518 }
1519
1520 $result = '';
1521 $params = [
1522 'id' => $this->id,
1523 'objecttype' => $this->element,
1524 'option' => $option,
1525 'nofetch' => 1,
1526 ];
1527 $classfortooltip = 'classfortooltip';
1528 $dataparams = '';
1529 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
1530 $classfortooltip = 'classforajaxtooltip';
1531 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
1532 $label = '';
1533 } else {
1534 $label = implode($this->getTooltipContentArray($params));
1535 }
1536
1537 $url = DOL_URL_ROOT.'/mrp/mo_card.php?id='.$this->id;
1538 if ($option == 'production') {
1539 $url = DOL_URL_ROOT.'/mrp/mo_production.php?id='.$this->id;
1540 }
1541
1542 if ($option != 'nolink') {
1543 // Add param to save lastsearch_values or not
1544 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1545 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
1546 $add_save_lastsearch_values = 1;
1547 }
1548 if ($add_save_lastsearch_values) {
1549 $url .= '&save_lastsearch_values=1';
1550 }
1551 }
1552
1553 $linkclose = '';
1554 if (empty($notooltip)) {
1555 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
1556 $label = $langs->trans("ShowMo");
1557 $linkclose .= ' alt="'.dolPrintHTMLForAttribute($label).'"';
1558 }
1559 $linkclose .= ($label ? ' title="'.dolPrintHTMLForAttribute($label).'"' : ' title="tocomplete"');
1560 $linkclose .= $dataparams.' class="'.$classfortooltip.($morecss ? ' '.$morecss : '').'"';
1561 } else {
1562 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
1563 }
1564
1565 $linkstart = '<a href="'.$url.'"';
1566 $linkstart .= $linkclose.'>';
1567 $linkend = '</a>';
1568
1569 $result .= $linkstart;
1570 if ($withpicto) {
1571 $result .= img_object(($notooltip ? '' : $label), ($this->picto ? $this->picto : 'generic'), (($withpicto != 2) ? 'class="paddingright"' : ''), 0, 0, $notooltip ? 0 : 1);
1572 }
1573 if ($withpicto != 2) {
1574 $result .= $this->ref;
1575 }
1576 $result .= $linkend;
1577 //if ($withpicto != 2) $result.=(($addlabel && $this->label) ? $sep . dol_trunc($this->label, ($addlabel > 1 ? $addlabel : 0)) : '');
1578
1579 $hookmanager->initHooks(array('modao'));
1580 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
1581 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1582 if ($reshook > 0) {
1583 $result = $hookmanager->resPrint;
1584 } else {
1585 $result .= $hookmanager->resPrint;
1586 }
1587
1588 return $result;
1589 }
1590
1597 public function getLibStatut($mode = 0)
1598 {
1599 return $this->LibStatut($this->status, $mode);
1600 }
1601
1602 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1610 public function LibStatut($status, $mode = 0)
1611 {
1612 // phpcs:enable
1613 if (empty($this->labelStatus)) {
1614 global $langs;
1615 //$langs->load("mrp");
1616 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Draft');
1617 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ValidatedToProduce');
1618 $this->labelStatus[self::STATUS_INPROGRESS] = $langs->transnoentitiesnoconv('InProgress');
1619 $this->labelStatus[self::STATUS_PRODUCED] = $langs->transnoentitiesnoconv('StatusMOProduced');
1620 $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('Canceled');
1621
1622 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('Draft');
1623 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('Validated');
1624 $this->labelStatusShort[self::STATUS_INPROGRESS] = $langs->transnoentitiesnoconv('InProgress');
1625 $this->labelStatusShort[self::STATUS_PRODUCED] = $langs->transnoentitiesnoconv('StatusMOProduced');
1626 $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('Canceled');
1627 }
1628
1629 $statusType = 'status'.$status;
1630 if ($status == self::STATUS_VALIDATED) {
1631 $statusType = 'status1';
1632 }
1633 if ($status == self::STATUS_INPROGRESS) {
1634 $statusType = 'status4';
1635 }
1636 if ($status == self::STATUS_PRODUCED) {
1637 $statusType = 'status6';
1638 }
1639 if ($status == self::STATUS_CANCELED) {
1640 $statusType = 'status9';
1641 }
1642
1643 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
1644 }
1645
1652 public function info($id)
1653 {
1654 $sql = 'SELECT rowid, date_creation as datec, tms as datem,';
1655 $sql .= ' fk_user_creat, fk_user_modif';
1656 $sql .= ' FROM '.MAIN_DB_PREFIX.$this->table_element.' as t';
1657 $sql .= ' WHERE t.rowid = '.((int) $id);
1658 $result = $this->db->query($sql);
1659 if ($result) {
1660 if ($this->db->num_rows($result)) {
1661 $obj = $this->db->fetch_object($result);
1662
1663 $this->id = $obj->rowid;
1664
1665 $this->user_creation_id = $obj->fk_user_creat;
1666 $this->user_modification_id = $obj->fk_user_modif;
1667 $this->date_creation = $this->db->jdate($obj->datec);
1668 $this->date_modification = empty($obj->datem) ? '' : $this->db->jdate($obj->datem);
1669 }
1670
1671 $this->db->free($result);
1672 } else {
1673 dol_print_error($this->db);
1674 }
1675 }
1676
1683 public function initAsSpecimen()
1684 {
1685 $ret = $this->initAsSpecimenCommon();
1686
1687 $this->lines = array();
1688
1689 return $ret;
1690 }
1691
1698 public function getLinesArray($rolefilter = '')
1699 {
1700 $this->lines = array();
1701
1702 $objectline = new MoLine($this->db);
1703
1704 $filter = '(fk_mo:=:'.((int) $this->id).')';
1705 if (!empty($rolefilter)) {
1706 $filter .= " AND (role:=:'".$this->db->escape($rolefilter)."')";
1707 }
1708 $result = $objectline->fetchAll('ASC', 'position', 0, 0, $filter);
1709
1710 if (is_numeric($result)) {
1711 $this->error = $objectline->error;
1712 $this->errors = $objectline->errors;
1713 return $result;
1714 } else {
1715 $this->lines = $result;
1716 return $this->lines;
1717 }
1718 }
1719
1731 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
1732 {
1733 global $langs;
1734
1735 $langs->load("mrp");
1736
1737 if (!dol_strlen($modele)) {
1738 //$modele = 'standard';
1739 $modele = ''; // Remove this once a pdf_standard.php exists.
1740
1741 if ($this->model_pdf) {
1742 $modele = $this->model_pdf;
1743 } elseif (getDolGlobalString('MRP_MO_ADDON_PDF')) {
1744 $modele = getDolGlobalString('MRP_MO_ADDON_PDF');
1745 }
1746 }
1747
1748 $modelpath = "core/modules/mrp/doc/";
1749
1750 if (empty($modele)) {
1751 return 1; // Remove this once a pdf_standard.php exists.
1752 }
1753
1754 return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
1755 }
1756
1767 public function printOriginLinesList($restrictlist = '', $selectedLines = array())
1768 {
1769 global $langs, $hookmanager, $form, $action;
1770
1771 $langs->load('stocks');
1772 $text_stock_options = $langs->trans("RealStockDesc").'<br>';
1773 $text_stock_options .= $langs->trans("RealStockWillAutomaticallyWhen").'<br>';
1774 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SHIPMENT') || getDolGlobalString('STOCK_CALCULATE_ON_SHIPMENT_CLOSE') ? '- '.$langs->trans("DeStockOnShipment").'<br>' : '');
1775 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_VALIDATE_ORDER') ? '- '.$langs->trans("DeStockOnValidateOrder").'<br>' : '');
1776 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_BILL') ? '- '.$langs->trans("DeStockOnBill").'<br>' : '');
1777 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SUPPLIER_BILL') ? '- '.$langs->trans("ReStockOnBill").'<br>' : '');
1778 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER') ? '- '.$langs->trans("ReStockOnValidateOrder").'<br>' : '');
1779 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER') ? '- '.$langs->trans("ReStockOnDispatchOrder").'<br>' : '');
1780 $text_stock_options .= (getDolGlobalString('STOCK_CALCULATE_ON_RECEPTION') || getDolGlobalString('STOCK_CALCULATE_ON_RECEPTION_CLOSE') ? '- '.$langs->trans("StockOnReception").'<br>' : '');
1781
1782 print '<tr class="liste_titre">';
1783 // Product or sub-bom
1784 print '<td class="linecoldescription">'.$langs->trans('Ref');
1785 if (getDolGlobalString('BOM_SUB_BOM')) {
1786 print ' &nbsp; <a id="show_all" href="#">'.img_picto('', 'folder-open', 'class="paddingright"').$langs->trans("ExpandAll").'</a>&nbsp;&nbsp;';
1787 print '<a id="hide_all" href="#">'.img_picto('', 'folder', 'class="paddingright"').$langs->trans("UndoExpandAll").'</a>&nbsp;';
1788 }
1789 print '</td>';
1790 // Qty
1791 print '<td class="right">'.$langs->trans('Qty');
1792 if ($this->bom->bomtype == 0) {
1793 print ' <span class="opacitymedium">('.$langs->trans("ForAQuantityOf", (string) $this->bom->qty).')</span>';
1794 } else {
1795 print ' <span class="opacitymedium">('.$langs->trans("ForAQuantityToConsumeOf", (string) $this->bom->qty).')</span>';
1796 }
1797 // Unit
1798 print '<td class="right">'.$langs->trans('Unit');
1799
1800 print '</td>';
1801 print '<td class="center">'.$form->textwithpicto($langs->trans("PhysicalStock"), $text_stock_options, 1).'</td>';
1802 print '<td class="center">'.$form->textwithpicto($langs->trans("VirtualStock"), $langs->trans("VirtualStockDesc")).'</td>';
1803 print '<td class="center">'.$langs->trans('QtyFrozen').'</td>';
1804 print '<td class="center">'.$langs->trans('DisableStockChange').'</td>';
1805 print '<td class="center">'.$langs->trans('MoChildGenerate').'</td>';
1806 //print '<td class="center">'.$form->showCheckAddButtons('checkforselect', 1).'</td>';
1807 //print '<td class="center"></td>';
1808 print '</tr>';
1809 $i = 0;
1810
1811 if (!empty($this->lines)) {
1812 foreach ($this->lines as $line) {
1813 $reshook = 0;
1814 if (is_object($hookmanager)) {
1815 $parameters = array('line' => $line, 'i' => $i, 'restrictlist' => $restrictlist, 'selectedLines' => $selectedLines);
1816 if (!empty($line->fk_parent_line)) {
1817 $parameters['fk_parent_line'] = $line->fk_parent_line;
1818 }
1819 $reshook = $hookmanager->executeHooks('printOriginObjectLine', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1820 }
1821 if (empty($reshook)) {
1822 $this->printOriginLine($line, '', $restrictlist, '/core/tpl', $selectedLines);
1823 }
1824
1825 $i++;
1826 }
1827 }
1828 }
1829
1830
1844 public function printOriginLine($line, $var, $restrictlist = '', $defaulttpldir = '/core/tpl', $selectedLines = array())
1845 {
1846 if (!$line instanceof MoLine) {
1847 dol_syslog(__METHOD__.'::pringOriginLine $line is '.get_class($line).'<>MoLine', LOG_WARNING);
1848 parent::printOriginLine($line, $var, $restrictlist, $defaulttpldir, $selectedLines);
1849 return;
1850 }
1851 $productstatic = new Product($this->db);
1852
1853 $this->tpl['id'] = $line->id;
1854
1855 $this->tpl['label'] = '';
1856 if (!empty($line->fk_product) && $line->fk_product > 0) {
1857 $productstatic->fetch($line->fk_product);
1858 $productstatic->load_stock(); // load_virtual_stock() is done in load_stock()
1859 $this->tpl['label'] .= $productstatic->getNomUrl(1);
1860 //$this->tpl['label'].= ' - '.$productstatic->label;
1861 } else {
1862 // If origin MO line is not a product, but another MO
1863 // TODO
1864 }
1865
1866 $this->tpl['qty_bom'] = 1;
1867 if (is_object($this->bom) && $this->bom->qty > 1) {
1868 $this->tpl['qty_bom'] = $this->bom->qty;
1869 }
1870
1871 $this->tpl['stock'] = $productstatic->stock_reel;
1872 $this->tpl['seuil_stock_alerte'] = $productstatic->seuil_stock_alerte;
1873 $this->tpl['virtual_stock'] = $productstatic->stock_theorique;
1874 $this->tpl['qty'] = $line->qty;
1875 $this->tpl['fk_unit'] = $line->fk_unit;
1876 $this->tpl['qty_frozen'] = $line->qty_frozen;
1877 $this->tpl['disable_stock_change'] = $line->disable_stock_change;
1878 $this->tpl['efficiency'] = $line->efficiency;
1879
1880
1881 global $conf; // used into template
1882 include DOL_DOCUMENT_ROOT.'/mrp/tpl/originproductline.tpl.php';
1883 }
1884
1893 public static function replaceThirdparty($db, $origin_id, $dest_id)
1894 {
1895 $tables = array('mrp_mo');
1896
1897 return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
1898 }
1899
1900
1906 public function getMoChilds()
1907 {
1908 $TMoChilds = array();
1909 $error = 0;
1910
1911 $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."mrp_mo as mo_child";
1912 $sql .= " WHERE fk_parent_line IN ";
1913 $sql .= " (SELECT rowid FROM ".MAIN_DB_PREFIX."mrp_production as line_parent";
1914 $sql .= " WHERE fk_mo=".((int) $this->id).")";
1915
1916 $resql = $this->db->query($sql);
1917
1918 if ($resql) {
1919 if ($this->db->num_rows($resql) > 0) {
1920 while ($obj = $this->db->fetch_object($resql)) {
1921 $MoChild = new Mo($this->db);
1922 $res = $MoChild->fetch($obj->rowid);
1923 if ($res > 0) {
1924 $TMoChilds[$MoChild->id] = $MoChild;
1925 } else {
1926 $error++;
1927 }
1928 }
1929 }
1930 } else {
1931 $error++;
1932 }
1933
1934 if ($error) {
1935 return -1;
1936 } else {
1937 return $TMoChilds;
1938 }
1939 }
1940
1947 public function getAllMoChilds($depth = 0)
1948 {
1949 if ($depth > 1000) {
1950 return -1;
1951 }
1952
1953 $TMoChilds = array();
1954 $error = 0;
1955
1956 $childMoList = $this->getMoChilds();
1957
1958 if ($childMoList == -1) {
1959 return -1;
1960 }
1961
1962 foreach ($childMoList as $childMo) {
1963 $TMoChilds[$childMo->id] = $childMo;
1964 }
1965
1966 foreach ($childMoList as $childMo) {
1967 $childMoChildren = $childMo->getAllMoChilds($depth + 1);
1968
1969 if ($childMoChildren == -1) {
1970 $error++;
1971 } else {
1972 foreach ($childMoChildren as $child) {
1973 $TMoChilds[$child->id] = $child;
1974 }
1975 }
1976 }
1977
1978 if ($error) {
1979 return -1;
1980 } else {
1981 return $TMoChilds;
1982 }
1983 }
1984
1985
1986
1992 public function getMoParent()
1993 {
1994 $MoParent = new Mo($this->db);
1995 $error = 0;
1996
1997 $sql = "SELECT lineparent.fk_mo as id_moparent FROM ".MAIN_DB_PREFIX."mrp_mo as mo";
1998 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."mrp_production lineparent ON mo.fk_parent_line = lineparent.rowid";
1999 $sql .= " WHERE mo.rowid = ".((int) $this->id);
2000
2001 $resql = $this->db->query($sql);
2002
2003 if ($resql) {
2004 if ($this->db->num_rows($resql) > 0) {
2005 $obj = $this->db->fetch_object($resql);
2006 $res = $MoParent->fetch($obj->id_moparent);
2007 if ($res < 0) {
2008 $error++;
2009 }
2010 } else {
2011 return 0;
2012 }
2013 } else {
2014 $error++;
2015 }
2016
2017 if ($error) {
2018 return -1;
2019 } else {
2020 return $MoParent;
2021 }
2022 }
2023
2024 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2031 public function load_board($user)
2032 {
2033 // phpcs:enable
2034 global $conf, $langs;
2035 if ($user->socid) {
2036 return -1; // Protection pour éviter appel par utilisateur externe
2037 }
2038
2039 $now = dol_now();
2040
2041 $sql = "SELECT rowid, date_end_planned FROM ".$this->db->prefix()."mrp_mo";
2042 $sql .= " WHERE status IN (" . self::STATUS_VALIDATED . ", " . self::STATUS_INPROGRESS .")"; // 1 = Ouvert, 2 = En cours
2043 $sql .= " AND entity IN (".getEntity('mrp_mo').")";
2044
2045 $resql = $this->db->query($sql);
2046 if ($resql) {
2047 $langs->load("mrp");
2048 $response = new WorkboardResponse();
2049 $warning_delay = $conf->mrp->progress->warning_delay ;
2050 $response->warning_delay = $warning_delay / 86400;
2051 $response->label = $langs->trans("MOProgress");
2052 $response->labelShort = $langs->trans("MOProgress");
2053 $response->url = DOL_URL_ROOT.'/mrp/mo_list.php?search_status=-2';
2054 $response->img = img_object('', "mrp");
2055
2056
2057 while ($obj = $this->db->fetch_object($resql)) {
2058 $response->nbtodo++;
2059
2060 if (!empty($obj->date_end_planned)) {
2061 $date_end_planned = $this->db->jdate($obj->date_end_planned);
2062 if ($now > ($date_end_planned + $warning_delay)) {
2063 $response->nbtodolate++;
2064 $response->url_late = DOL_URL_ROOT.'/mrp/mo_list.php?search_status=-2&search_option=late';
2065 }
2066 }
2067 }
2068
2069 return $response;
2070 } else {
2071 dol_print_error($this->db);
2072 $this->error = $this->db->error();
2073 return -1;
2074 }
2075 }
2076
2082 public function hasDelay()
2083 {
2084 global $conf;
2085
2086 if ($this->status != Mo::STATUS_VALIDATED && $this->status != Mo::STATUS_INPROGRESS) {
2087 return false;
2088 }
2089 if (empty($this->date_end_planned)) {
2090 return false;
2091 }
2092 return (dol_now() > ((int) $this->date_end_planned + $conf->mrp->progress->warning_delay));
2093 }
2094
2095
2103 public function getKanbanView($option = '', $arraydata = null)
2104 {
2105 global $langs;
2106 '@phan-var-force array{selected?:int<0,1>,bom?:Bom,product?:product} $arraydata';
2107
2108 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
2109
2110 $return = '<div class="box-flex-item box-flex-grow-zero">';
2111 $return .= '<div class="info-box info-box-sm">';
2112 $return .= '<span class="info-box-icon bg-infobox-action">';
2113 $return .= img_picto('', $this->picto);
2114 //$return .= '<i class="fa fa-dol-action"></i>'; // Can be image
2115 $return .= '</span>';
2116 $return .= '<div class="info-box-content">';
2117 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref).'</span>';
2118 if ($selected >= 0) {
2119 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2120 }
2121 if (!empty($arraydata['bom'])) {
2122 $return .= '<br><span class="info-box-label">'.$arraydata['bom']->getNomUrl(1).'</span>';
2123 }
2124 if (!empty($arraydata['product'])) {
2125 $return .= '<br><span class="info-box-label">'.$arraydata['product']->getNomUrl(1).'</span>';
2126 if (property_exists($this, 'qty')) {
2127 $return .= ' <span class="info-box-label">('.$langs->trans("Qty").' '.$this->qty.')</span>';
2128 }
2129 } else {
2130 if (property_exists($this, 'qty')) {
2131 $return .= '<br><span class="info-box-label">'.$langs->trans('Quantity').' : '.$this->qty.'</span>';
2132 }
2133 }
2134 if (method_exists($this, 'getLibStatut')) {
2135 $return .= '<br><div class="info-box-status">'.$this->getLibStatut(3).'</div>';
2136 }
2137 $return .= '</div>';
2138 $return .= '</div>';
2139 $return .= '</div>';
2140 return $return;
2141 }
2142}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
$object ref
Definition info.php:90
Class for BOM.
Definition bom.class.php:42
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.
setErrorsFromObject($object)
setErrorsFromObject
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.
Class to manage Dolibarr database access.
Class to manage warehouses.
Class for Mo.
Definition mo.class.php:35
__construct(DoliDB $db)
Constructor.
Definition mo.class.php:290
fetchLinesLinked($role, $lineid=0)
Get list of lines linked to current line for a defined role.
Definition mo.class.php:611
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.
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:507
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:330
fetch($id, $ref=null)
Load object in memory from the database.
Definition mo.class.php:490
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load list of objects in memory from the database.
Definition mo.class.php:527
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
processBOM(User $user, $role, $bom, $quantity)
Recurse through BOM only adding products to the list of lines to consume/produce.
Definition mo.class.php:816
reopen($user, $notrigger=0)
Set back to validated status.
hasDelay()
Is the manufactured delayed?
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:886
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:698
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:732
deleteLine(User $user, $idline, $notrigger=0, $fk_movement=0)
Delete a line of object in database.
Definition mo.class.php:977
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
load_board($user)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
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:663
createFromClone(User $user, $fromid)
Clone an object into another one.
Definition mo.class.php:387
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:171
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:64
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.