dolibarr  16.0.5
reception.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2008 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
4  * Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerke@telenet.be>
5  * Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net>
6  * Copyright (C) 2011-2017 Juanjo Menent <jmenent@2byte.es>
7  * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
8  * Copyright (C) 2014 Cedric GROSS <c.gross@kreiz-it.fr>
9  * Copyright (C) 2014-2015 Marcos GarcĂ­a <marcosgdf@gmail.com>
10  * Copyright (C) 2014-2020 Francis Appels <francis.appels@yahoo.com>
11  * Copyright (C) 2015 Claudio Aschieri <c.aschieri@19.coop>
12  * Copyright (C) 2016-2022 Ferran Marcet <fmarcet@2byte.es>
13  * Copyright (C) 2018 Quentin Vial-Gouteyron <quentin.vial-gouteyron@atm-consulting.fr>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program. If not, see <https://www.gnu.org/licenses/>.
27  */
28 
35 require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
36 require_once DOL_DOCUMENT_ROOT."/core/class/commonobjectline.class.php";
37 require_once DOL_DOCUMENT_ROOT.'/core/class/commonincoterm.class.php';
38 if (!empty($conf->propal->enabled)) {
39  require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
40 }
41 if (!empty($conf->commande->enabled)) {
42  require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
43 }
44 
45 
49 class Reception extends CommonObject
50 {
51  use CommonIncoterm;
52 
56  public $element = "reception";
57 
61  public $fk_element = "fk_reception";
62  public $table_element = "reception";
63  public $table_element_line = "commande_fournisseur_dispatch";
64  public $ismultientitymanaged = 1; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
65 
69  public $picto = 'dollyrevert';
70 
71  public $socid;
72  public $ref_supplier;
73 
78  public $ref_int;
79 
80  public $brouillon;
81  public $entrepot_id;
82  public $tracking_number;
83  public $tracking_url;
84  public $billed;
85  public $model_pdf;
86 
87  public $trueWeight;
88  public $weight_units;
89  public $trueWidth;
90  public $width_units;
91  public $trueHeight;
92  public $height_units;
93  public $trueDepth;
94  public $depth_units;
95  // A denormalized value
96  public $trueSize;
97 
98  public $date_delivery; // Date delivery planed
99 
100 
104  public $date_reception;
105 
109  public $date_creation;
110 
114  public $date_valid;
115 
116  public $meths;
117  public $listmeths; // List of carriers
118 
119  public $lines = array();
120 
121 
122  const STATUS_DRAFT = 0;
123  const STATUS_VALIDATED = 1;
124  const STATUS_CLOSED = 2;
125 
126 
127 
133  public function __construct($db)
134  {
135  $this->db = $db;
136 
137  // List of long language codes for status
138  $this->statuts = array();
139  $this->statuts[-1] = 'StatusReceptionCanceled';
140  $this->statuts[0] = 'StatusReceptionDraft';
141  // product to receive if stock increase is on close or already received if stock increase is on validation
142  $this->statuts[1] = 'StatusReceptionValidated';
143  if (getDolGlobalInt("STOCK_CALCULATE_ON_RECEPTION")) {
144  $this->statuts[1] = 'StatusReceptionValidatedReceived';
145  }
146  if (getDolGlobalInt("STOCK_CALCULATE_ON_RECEPTION_CLOSE")) {
147  $this->statuts[1] = 'StatusReceptionValidatedToReceive';
148  }
149  $this->statuts[2] = 'StatusReceptionProcessed';
150 
151  // List of short language codes for status
152  $this->statutshorts = array();
153  $this->statutshorts[-1] = 'StatusReceptionCanceledShort';
154  $this->statutshorts[0] = 'StatusReceptionDraftShort';
155  $this->statutshorts[1] = 'StatusReceptionValidatedShort';
156  $this->statutshorts[2] = 'StatusReceptionProcessedShort';
157  }
158 
165  public function getNextNumRef($soc)
166  {
167  global $langs, $conf;
168  $langs->load("receptions");
169 
170  if (!empty($conf->global->RECEPTION_ADDON_NUMBER)) {
171  $mybool = false;
172 
173  $file = $conf->global->RECEPTION_ADDON_NUMBER.".php";
174  $classname = $conf->global->RECEPTION_ADDON_NUMBER;
175 
176  // Include file with class
177  $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
178 
179  foreach ($dirmodels as $reldir) {
180  $dir = dol_buildpath($reldir."core/modules/reception/");
181 
182  // Load file with numbering class (if found)
183  $mybool |= @include_once $dir.$file;
184  }
185 
186  if (!$mybool) {
187  dol_print_error('', "Failed to include file ".$file);
188  return '';
189  }
190 
191  $obj = new $classname();
192 
193  $numref = "";
194  $numref = $obj->getNextValue($soc, $this);
195 
196  if ($numref != "") {
197  return $numref;
198  } else {
199  dol_print_error($this->db, get_class($this)."::getNextNumRef ".$obj->error);
200  return "";
201  }
202  } else {
203  print $langs->trans("Error")." ".$langs->trans("Error_RECEPTION_ADDON_NUMBER_NotDefined");
204  return "";
205  }
206  }
207 
215  public function create($user, $notrigger = 0)
216  {
217  global $conf, $hookmanager;
218 
219  $now = dol_now();
220 
221  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
222  $error = 0;
223 
224  // Clean parameters
225  $this->brouillon = 1;
226  $this->tracking_number = dol_sanitizeFileName($this->tracking_number);
227  if (empty($this->fk_project)) {
228  $this->fk_project = 0;
229  }
230  if (empty($this->weight_units)) {
231  $this->weight_units = 0;
232  }
233  if (empty($this->size_units)) {
234  $this->size_units = 0;
235  }
236 
237  $this->user = $user;
238 
239  $this->db->begin();
240 
241  $sql = "INSERT INTO ".MAIN_DB_PREFIX."reception (";
242  $sql .= "ref";
243  $sql .= ", entity";
244  $sql .= ", ref_supplier";
245  $sql .= ", date_creation";
246  $sql .= ", fk_user_author";
247  $sql .= ", date_reception";
248  $sql .= ", date_delivery";
249  $sql .= ", fk_soc";
250  $sql .= ", fk_projet";
251  $sql .= ", fk_shipping_method";
252  $sql .= ", tracking_number";
253  $sql .= ", weight";
254  $sql .= ", size";
255  $sql .= ", width";
256  $sql .= ", height";
257  $sql .= ", weight_units";
258  $sql .= ", size_units";
259  $sql .= ", note_private";
260  $sql .= ", note_public";
261  $sql .= ", model_pdf";
262  $sql .= ", fk_incoterms, location_incoterms";
263  $sql .= ") VALUES (";
264  $sql .= "'(PROV)'";
265  $sql .= ", ".((int) $conf->entity);
266  $sql .= ", ".($this->ref_supplier ? "'".$this->db->escape($this->ref_supplier)."'" : "null");
267  $sql .= ", '".$this->db->idate($now)."'";
268  $sql .= ", ".((int) $user->id);
269  $sql .= ", ".($this->date_reception > 0 ? "'".$this->db->idate($this->date_reception)."'" : "null");
270  $sql .= ", ".($this->date_delivery > 0 ? "'".$this->db->idate($this->date_delivery)."'" : "null");
271  $sql .= ", ".((int) $this->socid);
272  $sql .= ", ".((int) $this->fk_project);
273  $sql .= ", ".($this->shipping_method_id > 0 ? ((int) $this->shipping_method_id) : "null");
274  $sql .= ", '".$this->db->escape($this->tracking_number)."'";
275  $sql .= ", ".(is_null($this->weight) ? "NULL" : ((double) $this->weight));
276  $sql .= ", ".(is_null($this->trueDepth) ? "NULL" : ((double) $this->trueDepth));
277  $sql .= ", ".(is_null($this->trueWidth) ? "NULL" : ((double) $this->trueWidth));
278  $sql .= ", ".(is_null($this->trueHeight) ? "NULL" : ((double) $this->trueHeight));
279  $sql .= ", ".(is_null($this->weight_units) ? "NULL" : ((double) $this->weight_units));
280  $sql .= ", ".(is_null($this->size_units) ? "NULL" : ((double) $this->size_units));
281  $sql .= ", ".(!empty($this->note_private) ? "'".$this->db->escape($this->note_private)."'" : "null");
282  $sql .= ", ".(!empty($this->note_public) ? "'".$this->db->escape($this->note_public)."'" : "null");
283  $sql .= ", ".(!empty($this->model_pdf) ? "'".$this->db->escape($this->model_pdf)."'" : "null");
284  $sql .= ", ".(int) $this->fk_incoterms;
285  $sql .= ", '".$this->db->escape($this->location_incoterms)."'";
286  $sql .= ")";
287 
288  dol_syslog(get_class($this)."::create", LOG_DEBUG);
289 
290  $resql = $this->db->query($sql);
291 
292  if ($resql) {
293  $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."reception");
294 
295  $sql = "UPDATE ".MAIN_DB_PREFIX."reception";
296  $sql .= " SET ref = '(PROV".$this->id.")'";
297  $sql .= " WHERE rowid = ".((int) $this->id);
298 
299  dol_syslog(get_class($this)."::create", LOG_DEBUG);
300  if ($this->db->query($sql)) {
301  // Insert of lines
302  $num = count($this->lines);
303  for ($i = 0; $i < $num; $i++) {
304  $this->lines[$i]->fk_reception = $this->id;
305 
306  if (!$this->lines[$i]->create($user) > 0) {
307  $error++;
308  }
309  }
310 
311  if (!$error && $this->id && $this->origin_id) {
312  $ret = $this->add_object_linked();
313  if (!$ret) {
314  $error++;
315  }
316  }
317 
318  // Create extrafields
319  if (!$error) {
320  $result = $this->insertExtraFields();
321  if ($result < 0) {
322  $error++;
323  }
324  }
325 
326  if (!$error && !$notrigger) {
327  // Call trigger
328  $result = $this->call_trigger('RECEPTION_CREATE', $user);
329  if ($result < 0) {
330  $error++;
331  }
332  // End call triggers
333  }
334 
335  if (!$error) {
336  $this->db->commit();
337  return $this->id;
338  } else {
339  foreach ($this->errors as $errmsg) {
340  dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
341  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
342  }
343  $this->db->rollback();
344  return -1 * $error;
345  }
346  } else {
347  $error++;
348  $this->error = $this->db->lasterror()." - sql=$sql";
349  $this->db->rollback();
350  return -2;
351  }
352  } else {
353  $error++;
354  $this->error = $this->db->error()." - sql=$sql";
355  $this->db->rollback();
356  return -1;
357  }
358  }
359 
360 
361 
371  public function fetch($id, $ref = '', $ref_ext = '', $notused = '')
372  {
373  global $conf;
374 
375  // Check parameters
376  if (empty($id) && empty($ref) && empty($ref_ext)) {
377  return -1;
378  }
379 
380  $sql = "SELECT e.rowid, e.entity, e.ref, e.fk_soc as socid, e.date_creation, e.ref_supplier, e.ref_ext, e.fk_user_author, e.fk_statut";
381  $sql .= ", e.weight, e.weight_units, e.size, e.size_units, e.width, e.height";
382  $sql .= ", e.date_reception as date_reception, e.model_pdf, e.date_delivery";
383  $sql .= ", e.fk_shipping_method, e.tracking_number";
384  $sql .= ", el.fk_source as origin_id, el.sourcetype as origin";
385  $sql .= ", e.note_private, e.note_public";
386  $sql .= ', e.fk_incoterms, e.location_incoterms';
387  $sql .= ', i.libelle as label_incoterms';
388  $sql .= " FROM ".MAIN_DB_PREFIX."reception as e";
389  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."element_element as el ON el.fk_target = e.rowid AND el.targettype = '".$this->db->escape($this->element)."'";
390  $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_incoterms as i ON e.fk_incoterms = i.rowid';
391  $sql .= " WHERE e.entity IN (".getEntity('reception').")";
392  if ($id) {
393  $sql .= " AND e.rowid=".((int) $id);
394  }
395  if ($ref) {
396  $sql .= " AND e.ref='".$this->db->escape($ref)."'";
397  }
398  if ($ref_ext) {
399  $sql .= " AND e.ref_ext='".$this->db->escape($ref_ext)."'";
400  }
401  if ($notused) {
402  $sql .= " AND e.ref_int='".$this->db->escape($notused)."'";
403  }
404 
405  dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
406  $result = $this->db->query($sql);
407  if ($result) {
408  if ($this->db->num_rows($result)) {
409  $obj = $this->db->fetch_object($result);
410 
411  $this->id = $obj->rowid;
412  $this->entity = $obj->entity;
413  $this->ref = $obj->ref;
414  $this->socid = $obj->socid;
415  $this->ref_supplier = $obj->ref_supplier;
416  $this->ref_ext = $obj->ref_ext;
417  $this->statut = $obj->fk_statut;
418  $this->user_author_id = $obj->fk_user_author;
419  $this->date_creation = $this->db->jdate($obj->date_creation);
420  $this->date = $this->db->jdate($obj->date_reception); // TODO deprecated
421  $this->date_reception = $this->db->jdate($obj->date_reception); // TODO deprecated
422  $this->date_reception = $this->db->jdate($obj->date_reception); // Date real
423  $this->date_delivery = $this->db->jdate($obj->date_delivery); // Date planed
424  $this->model_pdf = $obj->model_pdf;
425  $this->modelpdf = $obj->model_pdf; // deprecated
426  $this->shipping_method_id = $obj->fk_shipping_method;
427  $this->tracking_number = $obj->tracking_number;
428  $this->origin = ($obj->origin ? $obj->origin : 'commande'); // For compatibility
429  $this->origin_id = $obj->origin_id;
430  $this->billed = ($obj->fk_statut == 2 ? 1 : 0);
431 
432  $this->trueWeight = $obj->weight;
433  $this->weight_units = $obj->weight_units;
434 
435  $this->trueWidth = $obj->width;
436  $this->width_units = $obj->size_units;
437  $this->trueHeight = $obj->height;
438  $this->height_units = $obj->size_units;
439  $this->trueDepth = $obj->size;
440  $this->depth_units = $obj->size_units;
441 
442  $this->note_public = $obj->note_public;
443  $this->note_private = $obj->note_private;
444 
445  // A denormalized value
446  $this->trueSize = $obj->size."x".$obj->width."x".$obj->height;
447  $this->size_units = $obj->size_units;
448 
449  //Incoterms
450  $this->fk_incoterms = $obj->fk_incoterms;
451  $this->location_incoterms = $obj->location_incoterms;
452  $this->label_incoterms = $obj->label_incoterms;
453 
454  $this->db->free($result);
455 
456  if ($this->statut == 0) {
457  $this->brouillon = 1;
458  }
459 
460  //$file = $conf->reception->dir_output."/".get_exdir(0, 0, 0, 1, $this, 'reception')."/".$this->id.".pdf";
461  //$this->pdf_filename = $file;
462 
463  // Tracking url
464  $this->getUrlTrackingStatus($obj->tracking_number);
465 
466  /*
467  * Thirdparty
468  */
469  $result = $this->fetch_thirdparty();
470 
471 
472  // Retrieve all extrafields for reception
473  // fetch optionals attributes and labels
474  require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
475  $extrafields = new ExtraFields($this->db);
476  $extrafields->fetch_name_optionals_label($this->table_element, true);
477  $this->fetch_optionals();
478 
479  /*
480  * Lines
481  */
482  $result = $this->fetch_lines();
483  if ($result < 0) {
484  return -3;
485  }
486 
487  return 1;
488  } else {
489  dol_syslog(get_class($this).'::Fetch no reception found', LOG_ERR);
490  $this->error = 'Delivery with id '.$id.' not found';
491  return 0;
492  }
493  } else {
494  $this->error = $this->db->error();
495  return -1;
496  }
497  }
498 
506  public function valid($user, $notrigger = 0)
507  {
508  global $conf, $langs;
509 
510  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
511 
512  dol_syslog(get_class($this)."::valid");
513 
514  // Protection
515  if ($this->statut) {
516  dol_syslog(get_class($this)."::valid no draft status", LOG_WARNING);
517  return 0;
518  }
519 
520  if (!((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->reception->creer))
521  || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->reception->reception_advance->validate)))) {
522  $this->error = 'Permission denied';
523  dol_syslog(get_class($this)."::valid ".$this->error, LOG_ERR);
524  return -1;
525  }
526 
527  $this->db->begin();
528 
529  $error = 0;
530 
531  // Define new ref
532  $soc = new Societe($this->db);
533  $soc->fetch($this->socid);
534 
535 
536  // Define new ref
537  if (!$error && (preg_match('/^[\(]?PROV/i', $this->ref) || empty($this->ref))) { // empty should not happened, but when it occurs, the test save life
538  $numref = $this->getNextNumRef($soc);
539  } else {
540  $numref = $this->ref;
541  }
542 
543  $this->newref = dol_sanitizeFileName($numref);
544 
545  $now = dol_now();
546 
547  // Validate
548  $sql = "UPDATE ".MAIN_DB_PREFIX."reception SET";
549  $sql .= " ref='".$this->db->escape($numref)."'";
550  $sql .= ", fk_statut = 1";
551  $sql .= ", date_valid = '".$this->db->idate($now)."'";
552  $sql .= ", fk_user_valid = ".$user->id;
553  $sql .= " WHERE rowid = ".((int) $this->id);
554  dol_syslog(get_class($this)."::valid update reception", LOG_DEBUG);
555  $resql = $this->db->query($sql);
556  if (!$resql) {
557  $this->error = $this->db->lasterror();
558  $error++;
559  }
560 
561  // If stock increment is done on reception (recommanded choice)
562  if (!$error && !empty($conf->stock->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION)) {
563  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
564 
565  $langs->load("agenda");
566 
567  // Loop on each product line to add a stock movement
568  // TODO in future, reception lines may not be linked to order line
569  $sql = "SELECT cd.fk_product, cd.subprice, cd.remise_percent,";
570  $sql .= " ed.rowid, ed.qty, ed.fk_entrepot,";
571  $sql .= " ed.eatby, ed.sellby, ed.batch,";
572  $sql .= " ed.cost_price";
573  $sql .= " FROM ".MAIN_DB_PREFIX."commande_fournisseurdet as cd,";
574  $sql .= " ".MAIN_DB_PREFIX."commande_fournisseur_dispatch as ed";
575  $sql .= " WHERE ed.fk_reception = ".((int) $this->id);
576  $sql .= " AND cd.rowid = ed.fk_commandefourndet";
577 
578  dol_syslog(get_class($this)."::valid select details", LOG_DEBUG);
579  $resql = $this->db->query($sql);
580  if ($resql) {
581  $cpt = $this->db->num_rows($resql);
582  for ($i = 0; $i < $cpt; $i++) {
583  $obj = $this->db->fetch_object($resql);
584 
585  $qty = $obj->qty;
586 
587  if ($qty == 0 || ($qty < 0 && !getDolGlobalInt('RECEPTION_ALLOW_NEGATIVE_QTY'))) {
588  continue;
589  }
590  dol_syslog(get_class($this)."::valid movement index ".$i." ed.rowid=".$obj->rowid." edb.rowid=".$obj->edbrowid);
591 
592  //var_dump($this->lines[$i]);
593  $mouvS = new MouvementStock($this->db);
594  $mouvS->origin = &$this;
595  $mouvS->setOrigin($this->element, $this->id);
596 
597  if (empty($obj->batch)) {
598  // line without batch detail
599 
600  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record.
601  $inventorycode = '';
602  $result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionValidatedInDolibarr", $numref), '', '', '', '', 0, $inventorycode);
603 
604  if (intval($result) < 0) {
605  $error++;
606  $this->errors[] = $mouvS->error;
607  $this->errors = array_merge($this->errors, $mouvS->errors);
608  break;
609  }
610  } else {
611  // line with batch detail
612 
613  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record.
614  // Note: ->fk_origin_stock = id into table llx_product_batch (may be rename into llx_product_stock_batch in another version)
615  $inventorycode = '';
616  $result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionValidatedInDolibarr", $numref), $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, '', 0, $inventorycode);
617 
618  if (intval($result) < 0) {
619  $error++;
620  $this->errors[] = $mouvS->error;
621  $this->errors = array_merge($this->errors, $mouvS->errors);
622  break;
623  }
624  }
625  }
626  } else {
627  $this->db->rollback();
628  $this->error = $this->db->error();
629  return -2;
630  }
631  }
632 
633  // Change status of order to "reception in process" or "totally received"
634  $status = $this->getStatusDispatch();
635  if ($status < 0) {
636  $error++;
637  } else {
638  $trigger_key = '';
640  $ret = $this->commandeFournisseur->Livraison($user, dol_now(), 'tot', '');
641  if ($ret < 0) {
642  $error++;
643  $this->errors = array_merge($this->errors, $this->commandeFournisseur->errors);
644  }
645  } else {
646  $ret = $this->setStatut($status, $this->origin_id, 'commande_fournisseur', $trigger_key);
647  if ($ret < 0) {
648  $error++;
649  }
650  }
651  }
652 
653  if (!$error && !$notrigger) {
654  // Call trigger
655  $result = $this->call_trigger('RECEPTION_VALIDATE', $user);
656  if ($result < 0) {
657  $error++;
658  }
659  // End call triggers
660  }
661 
662  if (!$error) {
663  $this->oldref = $this->ref;
664 
665  // Rename directory if dir was a temporary ref
666  if (preg_match('/^[\(]?PROV/i', $this->ref)) {
667  // Now we rename also files into index
668  $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filename = CONCAT('".$this->db->escape($this->newref)."', SUBSTR(filename, ".(strlen($this->ref) + 1).")), filepath = 'reception/".$this->db->escape($this->newref)."'";
669  $sql .= " WHERE filename LIKE '".$this->db->escape($this->ref)."%' AND filepath = 'reception/".$this->db->escape($this->ref)."' AND entity = ".((int) $conf->entity);
670  $resql = $this->db->query($sql);
671  if (!$resql) {
672  $error++; $this->error = $this->db->lasterror();
673  }
674 
675  // We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
676  $oldref = dol_sanitizeFileName($this->ref);
677  $newref = dol_sanitizeFileName($numref);
678  $dirsource = $conf->reception->dir_output.'/'.$oldref;
679  $dirdest = $conf->reception->dir_output.'/'.$newref;
680  if (!$error && file_exists($dirsource)) {
681  dol_syslog(get_class($this)."::valid rename dir ".$dirsource." into ".$dirdest);
682 
683  if (@rename($dirsource, $dirdest)) {
684  dol_syslog("Rename ok");
685  // Rename docs starting with $oldref with $newref
686  $listoffiles = dol_dir_list($conf->reception->dir_output.'/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
687  foreach ($listoffiles as $fileentry) {
688  $dirsource = $fileentry['name'];
689  $dirdest = preg_replace('/^'.preg_quote($oldref, '/').'/', $newref, $dirsource);
690  $dirsource = $fileentry['path'].'/'.$dirsource;
691  $dirdest = $fileentry['path'].'/'.$dirdest;
692  @rename($dirsource, $dirdest);
693  }
694  }
695  }
696  }
697  }
698 
699  // Set new ref and current status
700  if (!$error) {
701  $this->ref = $numref;
702  $this->statut = 1;
703  }
704 
705  if (!$error) {
706  $this->db->commit();
707  return 1;
708  } else {
709  foreach ($this->errors as $errmsg) {
710  dol_syslog(get_class($this)."::valid ".$errmsg, LOG_ERR);
711  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
712  }
713  $this->db->rollback();
714  return -1 * $error;
715  }
716  }
717 
723  public function getStatusDispatch()
724  {
725  global $conf;
726 
727  require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php';
728  require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.dispatch.class.php';
729 
731 
732  if (!empty($this->origin) && $this->origin_id > 0 && ($this->origin == 'order_supplier' || $this->origin == 'commandeFournisseur')) {
733  if (empty($this->commandeFournisseur)) {
734  $this->fetch_origin();
735  if (empty($this->commandeFournisseur->lines)) {
736  $res = $this->commandeFournisseur->fetch_lines();
737  if ($res < 0) return $res;
738  }
739  }
740 
741  $qty_received = array();
742  $qty_wished = array();
743 
744  $supplierorderdispatch = new CommandeFournisseurDispatch($this->db);
745  $filter = array('t.fk_commande'=>$this->origin_id);
746  if (!empty($conf->global->SUPPLIER_ORDER_USE_DISPATCH_STATUS)) {
747  $filter['t.status'] = 1; // Restrict to lines with status validated
748  }
749 
750  $ret = $supplierorderdispatch->fetchAll('', '', 0, 0, $filter);
751  if ($ret < 0) {
752  $this->error = $supplierorderdispatch->error;
753  $this->errors = $supplierorderdispatch->errors;
754  return $ret;
755  } else {
756  // build array with quantity received by product in all supplier orders (origin)
757  foreach ($supplierorderdispatch->lines as $dispatch_line) {
758  $qty_received[$dispatch_line->fk_product] += $dispatch_line->qty;
759  }
760 
761  // qty wished in order supplier (origin)
762  foreach ($this->commandeFournisseur->lines as $origin_line) {
763  // exclude lines not qualified for reception
764  if (empty($conf->global->STOCK_SUPPORTS_SERVICES) && $origin_line->product_type > 0) {
765  continue;
766  }
767 
768  $qty_wished[$origin_line->fk_product] += $origin_line->qty;
769  }
770 
771  // compare array
772  $diff_array = array_diff_assoc($qty_received, $qty_wished); // Warning: $diff_array is done only on common keys.
773  $keys_in_wished_not_in_received = array_diff(array_keys($qty_wished), array_keys($qty_received));
774  $keys_in_received_not_in_wished = array_diff(array_keys($qty_received), array_keys($qty_wished));
775 
776  if (count($diff_array) == 0 && count($keys_in_wished_not_in_received) == 0 && count($keys_in_received_not_in_wished) == 0) { // no diff => mean everything is received
778  } elseif (!empty($conf->global->SUPPLIER_ORDER_MORE_THAN_WISHED)) {
779  // set totally received if more products received than ordered
780  $close = 0;
781 
782  if (count($diff_array) > 0) {
783  // there are some difference between the two arrays
784  // scan the array of results
785  foreach ($diff_array as $key => $value) {
786  // if the quantity delivered is greater or equal to ordered quantity
787  if ($qty_received[$key] >= $qty_wished[$key]) {
788  $close++;
789  }
790  }
791  }
792 
793  if ($close == count($diff_array)) {
794  // all the products are received equal or more than the ordered quantity
796  }
797  }
798  }
799  }
800 
801  return $status;
802  }
803 
820  public function addline($entrepot_id, $id, $qty, $array_options = 0, $comment = '', $eatby = '', $sellby = '', $batch = '', $cost_price = 0)
821  {
822  global $conf, $langs, $user;
823 
824  $num = count($this->lines);
825  $line = new CommandeFournisseurDispatch($this->db);
826 
827  $line->fk_entrepot = $entrepot_id;
828  $line->fk_commandefourndet = $id;
829  $line->qty = $qty;
830 
831  $supplierorderline = new CommandeFournisseurLigne($this->db);
832  $result = $supplierorderline->fetch($id);
833  if ($result <= 0) {
834  $this->error = $supplierorderline->error;
835  $this->errors = $supplierorderline->errors;
836  return -1;
837  }
838 
839  $fk_product = 0;
840  if (!empty($conf->stock->enabled) && !empty($supplierorderline->fk_product)) {
841  $fk_product = $supplierorderline->fk_product;
842 
843  if (!($entrepot_id > 0) && empty($conf->global->STOCK_WAREHOUSE_NOT_REQUIRED_FOR_RECEPTIONS)) {
844  $langs->load("errors");
845  $this->error = $langs->trans("ErrorWarehouseRequiredIntoReceptionLine");
846  return -1;
847  }
848  }
849 
850  // Check batch is set
851  $product = new Product($this->db);
852  $product->fetch($fk_product);
853  if (!empty($conf->productbatch->enabled)) {
854  $langs->load("errors");
855  if (!empty($product->status_batch) && empty($batch)) {
856  $this->error = $langs->trans('ErrorProductNeedBatchNumber', $product->ref);
857  return -1;
858  } elseif (empty($product->status_batch) && !empty($batch)) {
859  $this->error = $langs->trans('ErrorProductDoesNotNeedBatchNumber', $product->ref);
860  return -1;
861  }
862  }
863  unset($product);
864 
865  // extrafields
866  $line->array_options = $supplierorderline->array_options;
867  if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options) > 0) {
868  foreach ($array_options as $key => $value) {
869  $line->array_options[$key] = $value;
870  }
871  }
872 
873  $line->fk_product = $fk_product;
874  $line->fk_commande = $supplierorderline->fk_commande;
875  $line->fk_user = $user->id;
876  $line->comment = $comment;
877  $line->batch = $batch;
878  $line->eatby = $eatby;
879  $line->sellby = $sellby;
880  $line->status = 1;
881  $line->cost_price = $cost_price;
882  $line->fk_reception = $this->id;
883 
884  $this->lines[$num] = $line;
885 
886  return $num;
887  }
888 
889 
897  public function update($user = null, $notrigger = 0)
898  {
899  global $conf;
900  $error = 0;
901 
902  // Clean parameters
903 
904  if (isset($this->ref)) {
905  $this->ref = trim($this->ref);
906  }
907  if (isset($this->entity)) {
908  $this->entity = trim($this->entity);
909  }
910  if (isset($this->ref_supplier)) {
911  $this->ref_supplier = trim($this->ref_supplier);
912  }
913  if (isset($this->socid)) {
914  $this->socid = trim($this->socid);
915  }
916  if (isset($this->fk_user_author)) {
917  $this->fk_user_author = trim($this->fk_user_author);
918  }
919  if (isset($this->fk_user_valid)) {
920  $this->fk_user_valid = trim($this->fk_user_valid);
921  }
922  if (isset($this->shipping_method_id)) {
923  $this->shipping_method_id = trim($this->shipping_method_id);
924  }
925  if (isset($this->tracking_number)) {
926  $this->tracking_number = trim($this->tracking_number);
927  }
928  if (isset($this->statut)) {
929  $this->statut = (int) $this->statut;
930  }
931  if (isset($this->trueDepth)) {
932  $this->trueDepth = trim($this->trueDepth);
933  }
934  if (isset($this->trueWidth)) {
935  $this->trueWidth = trim($this->trueWidth);
936  }
937  if (isset($this->trueHeight)) {
938  $this->trueHeight = trim($this->trueHeight);
939  }
940  if (isset($this->size_units)) {
941  $this->size_units = trim($this->size_units);
942  }
943  if (isset($this->weight_units)) {
944  $this->weight_units = trim($this->weight_units);
945  }
946  if (isset($this->trueWeight)) {
947  $this->weight = trim($this->trueWeight);
948  }
949  if (isset($this->note_private)) {
950  $this->note_private = trim($this->note_private);
951  }
952  if (isset($this->note_public)) {
953  $this->note_public = trim($this->note_public);
954  }
955  if (isset($this->model_pdf)) {
956  $this->model_pdf = trim($this->model_pdf);
957  }
958 
959 
960  // Check parameters
961  // Put here code to add control on parameters values
962 
963  // Update request
964  $sql = "UPDATE ".MAIN_DB_PREFIX."reception SET";
965 
966  $sql .= " ref=".(isset($this->ref) ? "'".$this->db->escape($this->ref)."'" : "null").",";
967  $sql .= " ref_supplier=".(isset($this->ref_supplier) ? "'".$this->db->escape($this->ref_supplier)."'" : "null").",";
968  $sql .= " fk_soc=".(isset($this->socid) ? $this->socid : "null").",";
969  $sql .= " date_creation=".(dol_strlen($this->date_creation) != 0 ? "'".$this->db->idate($this->date_creation)."'" : 'null').",";
970  $sql .= " fk_user_author=".(isset($this->fk_user_author) ? $this->fk_user_author : "null").",";
971  $sql .= " date_valid=".(dol_strlen($this->date_valid) != 0 ? "'".$this->db->idate($this->date_valid)."'" : 'null').",";
972  $sql .= " fk_user_valid=".(isset($this->fk_user_valid) ? $this->fk_user_valid : "null").",";
973  $sql .= " date_reception=".(dol_strlen($this->date_reception) != 0 ? "'".$this->db->idate($this->date_reception)."'" : 'null').",";
974  $sql .= " date_delivery=".(dol_strlen($this->date_delivery) != 0 ? "'".$this->db->idate($this->date_delivery)."'" : 'null').",";
975  $sql .= " fk_shipping_method=".((isset($this->shipping_method_id) && $this->shipping_method_id > 0) ? $this->shipping_method_id : "null").",";
976  $sql .= " tracking_number=".(isset($this->tracking_number) ? "'".$this->db->escape($this->tracking_number)."'" : "null").",";
977  $sql .= " fk_statut=".(isset($this->statut) ? $this->statut : "null").",";
978  $sql .= " height=".(($this->trueHeight != '') ? $this->trueHeight : "null").",";
979  $sql .= " width=".(($this->trueWidth != '') ? $this->trueWidth : "null").",";
980  $sql .= " size_units=".(isset($this->size_units) ? $this->size_units : "null").",";
981  $sql .= " size=".(($this->trueDepth != '') ? $this->trueDepth : "null").",";
982  $sql .= " weight_units=".(isset($this->weight_units) ? $this->weight_units : "null").",";
983  $sql .= " weight=".(($this->trueWeight != '') ? $this->trueWeight : "null").",";
984  $sql .= " note_private=".(isset($this->note_private) ? "'".$this->db->escape($this->note_private)."'" : "null").",";
985  $sql .= " note_public=".(isset($this->note_public) ? "'".$this->db->escape($this->note_public)."'" : "null").",";
986  $sql .= " model_pdf=".(isset($this->model_pdf) ? "'".$this->db->escape($this->model_pdf)."'" : "null").",";
987  $sql .= " entity = ".((int) $conf->entity);
988  $sql .= " WHERE rowid=".((int) $this->id);
989 
990  $this->db->begin();
991 
992  dol_syslog(get_class($this)."::update", LOG_DEBUG);
993  $resql = $this->db->query($sql);
994  if (!$resql) {
995  $error++; $this->errors[] = "Error ".$this->db->lasterror();
996  }
997 
998  if (!$error) {
999  if (!$notrigger) {
1000  // Call trigger
1001  $result = $this->call_trigger('RECEPTION_MODIFY', $user);
1002  if ($result < 0) {
1003  $error++;
1004  }
1005  // End call triggers
1006  }
1007  }
1008 
1009  // Commit or rollback
1010  if ($error) {
1011  foreach ($this->errors as $errmsg) {
1012  dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
1013  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1014  }
1015  $this->db->rollback();
1016  return -1 * $error;
1017  } else {
1018  $this->db->commit();
1019  return 1;
1020  }
1021  }
1022 
1029  public function delete(User $user)
1030  {
1031  global $conf, $langs, $user;
1032  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1033 
1034  $error = 0;
1035  $this->error = '';
1036 
1037 
1038  $this->db->begin();
1039 
1040  // Stock control
1041  if ($conf->stock->enabled && $conf->global->STOCK_CALCULATE_ON_RECEPTION && $this->statut > 0) {
1042  require_once DOL_DOCUMENT_ROOT."/product/stock/class/mouvementstock.class.php";
1043 
1044  $langs->load("agenda");
1045 
1046  // Loop on each product line to add a stock movement
1047  $sql = "SELECT cd.fk_product, cd.subprice, ed.qty, ed.fk_entrepot, ed.eatby, ed.sellby, ed.batch, ed.rowid as commande_fournisseur_dispatch_id";
1048  $sql .= " FROM ".MAIN_DB_PREFIX."commande_fournisseurdet as cd,";
1049  $sql .= " ".MAIN_DB_PREFIX."commande_fournisseur_dispatch as ed";
1050  $sql .= " WHERE ed.fk_reception = ".((int) $this->id);
1051  $sql .= " AND cd.rowid = ed.fk_commandefourndet";
1052 
1053  dol_syslog(get_class($this)."::delete select details", LOG_DEBUG);
1054  $resql = $this->db->query($sql);
1055  if ($resql) {
1056  $cpt = $this->db->num_rows($resql);
1057  for ($i = 0; $i < $cpt; $i++) {
1058  dol_syslog(get_class($this)."::delete movement index ".$i);
1059  $obj = $this->db->fetch_object($resql);
1060 
1061  $mouvS = new MouvementStock($this->db);
1062  // we do not log origin because it will be deleted
1063  $mouvS->origin = null;
1064 
1065  $result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $obj->qty, 0, $langs->trans("ReceptionDeletedInDolibarr", $this->ref), '', $obj->eatby, $obj->sellby, $obj->batch); // Price is set to 0, because we don't want to see WAP changed
1066  }
1067  } else {
1068  $error++; $this->errors[] = "Error ".$this->db->lasterror();
1069  }
1070  }
1071 
1072  if (!$error) {
1073  $main = MAIN_DB_PREFIX.'commande_fournisseur_dispatch';
1074  $ef = $main."_extrafields";
1075 
1076  $sqlef = "DELETE FROM ".$ef." WHERE fk_object IN (SELECT rowid FROM ".$main." WHERE fk_reception = ".((int) $this->id).")";
1077 
1078  $sql = "DELETE FROM ".MAIN_DB_PREFIX."commande_fournisseur_dispatch";
1079  $sql .= " WHERE fk_reception = ".((int) $this->id);
1080 
1081  if ($this->db->query($sqlef) && $this->db->query($sql)) {
1082  // Delete linked object
1083  $res = $this->deleteObjectLinked();
1084  if ($res < 0) {
1085  $error++;
1086  }
1087 
1088  if (!$error) {
1089  $sql = "DELETE FROM ".MAIN_DB_PREFIX."reception";
1090  $sql .= " WHERE rowid = ".((int) $this->id);
1091 
1092  if ($this->db->query($sql)) {
1093  // Call trigger
1094  $result = $this->call_trigger('RECEPTION_DELETE', $user);
1095  if ($result < 0) {
1096  $error++;
1097  }
1098  // End call triggers
1099 
1100  if (!empty($this->origin) && $this->origin_id > 0) {
1101  $this->fetch_origin();
1102  $origin = $this->origin;
1103  if ($this->$origin->statut == 4) { // If order source of reception is "partially received"
1104  // Check if there is no more reception. If not, we can move back status of order to "validated" instead of "reception in progress"
1105  $this->$origin->loadReceptions();
1106  //var_dump($this->$origin->receptions);exit;
1107  if (count($this->$origin->receptions) <= 0) {
1108  $this->$origin->setStatut(3); // ordered
1109  }
1110  }
1111  }
1112 
1113  if (!$error) {
1114  $this->db->commit();
1115 
1116  // We delete PDFs
1117  $ref = dol_sanitizeFileName($this->ref);
1118  if (!empty($conf->reception->dir_output)) {
1119  $dir = $conf->reception->dir_output.'/'.$ref;
1120  $file = $dir.'/'.$ref.'.pdf';
1121  if (file_exists($file)) {
1122  if (!dol_delete_file($file)) {
1123  return 0;
1124  }
1125  }
1126  if (file_exists($dir)) {
1127  if (!dol_delete_dir_recursive($dir)) {
1128  $this->error = $langs->trans("ErrorCanNotDeleteDir", $dir);
1129  return 0;
1130  }
1131  }
1132  }
1133 
1134  return 1;
1135  } else {
1136  $this->db->rollback();
1137  return -1;
1138  }
1139  } else {
1140  $this->error = $this->db->lasterror()." - sql=$sql";
1141  $this->db->rollback();
1142  return -3;
1143  }
1144  } else {
1145  $this->error = $this->db->lasterror()." - sql=$sql";
1146  $this->db->rollback();
1147  return -2;
1148  }
1149  } else {
1150  $this->error = $this->db->lasterror()." - sql=$sql";
1151  $this->db->rollback();
1152  return -1;
1153  }
1154  } else {
1155  $this->db->rollback();
1156  return -1;
1157  }
1158  }
1159 
1160  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1166  public function fetch_lines()
1167  {
1168  // phpcs:enable
1169  $this->lines = array();
1170 
1171  require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.dispatch.class.php';
1172 
1173  $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."commande_fournisseur_dispatch WHERE fk_reception = ".((int) $this->id);
1174  $resql = $this->db->query($sql);
1175 
1176  if (!empty($resql)) {
1177  while ($obj = $this->db->fetch_object($resql)) {
1178  $line = new CommandeFournisseurDispatch($this->db);
1179 
1180  $line->fetch($obj->rowid);
1181 
1182  // TODO Remove or keep this ?
1183  $line->fetch_product();
1184 
1185  $sql_commfourndet = 'SELECT qty, ref, label, description, tva_tx, vat_src_code, subprice, multicurrency_subprice, remise_percent';
1186  $sql_commfourndet .= ' FROM '.MAIN_DB_PREFIX.'commande_fournisseurdet';
1187  $sql_commfourndet .= ' WHERE rowid = '.((int) $line->fk_commandefourndet);
1188  $sql_commfourndet .= ' ORDER BY rang';
1189 
1190  $resql_commfourndet = $this->db->query($sql_commfourndet);
1191  if (!empty($resql_commfourndet)) {
1192  $obj = $this->db->fetch_object($resql_commfourndet);
1193  $line->qty_asked = $obj->qty;
1194  $line->description = $obj->description;
1195  $line->desc = $obj->description;
1196  $line->tva_tx = $obj->tva_tx;
1197  $line->vat_src_code = $obj->vat_src_code;
1198  $line->subprice = $obj->subprice;
1199  $line->multicurrency_subprice = $obj->multicurrency_subprice;
1200  $line->remise_percent = $obj->remise_percent;
1201  $line->label = !empty($obj->label) ? $obj->label : $line->product->label;
1202  $line->ref_supplier = $obj->ref;
1203  } else {
1204  $line->qty_asked = 0;
1205  $line->description = '';
1206  $line->desc = '';
1207  $line->label = $obj->label;
1208  }
1209 
1210  $pu_ht = ($line->subprice * $line->qty) * (100 - $line->remise_percent) / 100;
1211  $tva = $pu_ht * $line->tva_tx / 100;
1212  $this->total_ht += $pu_ht;
1213  $this->total_tva += $pu_ht * $line->tva_tx / 100;
1214 
1215  $this->total_ttc += $pu_ht + $tva;
1216 
1217 
1218  $this->lines[] = $line;
1219  }
1220 
1221  return 1;
1222  } else {
1223  return -1;
1224  }
1225  }
1226 
1237  public function getNomUrl($withpicto = 0, $option = 0, $max = 0, $short = 0, $notooltip = 0)
1238  {
1239  global $conf, $langs, $hookmanager;
1240  $result = '';
1241  $label = img_picto('', $this->picto).' <u>'.$langs->trans("Reception").'</u>';
1242  $label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
1243  $label .= '<br><b>'.$langs->trans('RefSupplier').':</b> '.($this->ref_supplier ? $this->ref_supplier : '');
1244 
1245  $url = DOL_URL_ROOT.'/reception/card.php?id='.$this->id;
1246 
1247  if ($short) {
1248  return $url;
1249  }
1250 
1251  $linkclose = '';
1252  if (empty($notooltip)) {
1253  if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
1254  $label = $langs->trans("Reception");
1255  $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
1256  }
1257  $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
1258  $linkclose .= ' class="classfortooltip"';
1259  }
1260 
1261  $linkstart = '<a href="'.$url.'"';
1262  $linkstart .= $linkclose.'>';
1263  $linkend = '</a>';
1264 
1265  if ($withpicto) {
1266  $result .= ($linkstart.img_object(($notooltip ? '' : $label), $this->picto, ($notooltip ? '' : 'class="classfortooltip"'), 0, 0, $notooltip ? 0 : 1).$linkend);
1267  }
1268  if ($withpicto && $withpicto != 2) {
1269  $result .= ' ';
1270  }
1271  $result .= $linkstart.$this->ref.$linkend;
1272 
1273  global $action;
1274  $hookmanager->initHooks(array($this->element . 'dao'));
1275  $parameters = array('id'=>$this->id, 'getnomurl' => &$result);
1276  $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1277  if ($reshook > 0) {
1278  $result = $hookmanager->resPrint;
1279  } else {
1280  $result .= $hookmanager->resPrint;
1281  }
1282  return $result;
1283  }
1284 
1291  public function getLibStatut($mode = 0)
1292  {
1293  return $this->LibStatut($this->statut, $mode);
1294  }
1295 
1296  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1304  public function LibStatut($status, $mode)
1305  {
1306  // phpcs:enable
1307  global $langs;
1308 
1309  $labelStatus = $langs->transnoentitiesnoconv($this->statuts[$status]);
1310  $labelStatusShort = $langs->transnoentitiesnoconv($this->statutshorts[$status]);
1311 
1312  $statusType = 'status'.$status;
1313  if ($status == self::STATUS_VALIDATED) {
1314  $statusType = 'status4';
1315  }
1316  if ($status == self::STATUS_CLOSED) {
1317  $statusType = 'status6';
1318  }
1319 
1320  return dolGetStatus($labelStatus, $labelStatusShort, '', $statusType, $mode);
1321  }
1322 
1330  public function initAsSpecimen()
1331  {
1332  global $langs;
1333 
1334  include_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php';
1335  include_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.dispatch.class.php';
1336  $now = dol_now();
1337 
1338  dol_syslog(get_class($this)."::initAsSpecimen");
1339 
1340  // Load array of products prodids
1341  $num_prods = 0;
1342  $prodids = array();
1343  $sql = "SELECT rowid";
1344  $sql .= " FROM ".MAIN_DB_PREFIX."product";
1345  $sql .= " WHERE entity IN (".getEntity('product').")";
1346  $sql .= $this->db->plimit(100);
1347 
1348  $resql = $this->db->query($sql);
1349  if ($resql) {
1350  $num_prods = $this->db->num_rows($resql);
1351  $i = 0;
1352  while ($i < $num_prods) {
1353  $i++;
1354  $row = $this->db->fetch_row($resql);
1355  $prodids[$i] = $row[0];
1356  }
1357  }
1358 
1359  $order = new CommandeFournisseur($this->db);
1360  $order->initAsSpecimen();
1361 
1362  // Initialise parametres
1363  $this->id = 0;
1364  $this->ref = 'SPECIMEN';
1365  $this->specimen = 1;
1366  $this->statut = 1;
1367  $this->livraison_id = 0;
1368  $this->date = $now;
1369  $this->date_creation = $now;
1370  $this->date_valid = $now;
1371  $this->date_delivery = $now;
1372  $this->date_reception = $now + 24 * 3600;
1373 
1374  $this->entrepot_id = 0;
1375  $this->socid = 1;
1376 
1377  $this->commande_id = 0;
1378  $this->commande = $order;
1379 
1380  $this->origin_id = 1;
1381  $this->origin = 'commande';
1382 
1383  $this->note_private = 'Private note';
1384  $this->note_public = 'Public note';
1385 
1386  $nbp = 5;
1387  $xnbp = 0;
1388  while ($xnbp < $nbp) {
1389  $line = new CommandeFournisseurDispatch($this->db);
1390  $line->desc = $langs->trans("Description")." ".$xnbp;
1391  $line->libelle = $langs->trans("Description")." ".$xnbp;
1392  $line->qty = 10;
1393 
1394  $line->fk_product = $this->commande->lines[$xnbp]->fk_product;
1395 
1396  $this->lines[] = $line;
1397  $xnbp++;
1398  }
1399  }
1400 
1408  public function setDeliveryDate($user, $delivery_date)
1409  {
1410  // phpcs:enable
1411  if ($user->rights->reception->creer) {
1412  $sql = "UPDATE ".MAIN_DB_PREFIX."reception";
1413  $sql .= " SET date_delivery = ".($delivery_date ? "'".$this->db->idate($delivery_date)."'" : 'null');
1414  $sql .= " WHERE rowid = ".((int) $this->id);
1415 
1416  dol_syslog(get_class($this)."::setDeliveryDate", LOG_DEBUG);
1417  $resql = $this->db->query($sql);
1418  if ($resql) {
1419  $this->date_delivery = $delivery_date;
1420  return 1;
1421  } else {
1422  $this->error = $this->db->error();
1423  return -1;
1424  }
1425  } else {
1426  return -2;
1427  }
1428  }
1429 
1430  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1436  public function fetch_delivery_methods()
1437  {
1438  // phpcs:enable
1439  global $langs;
1440  $this->meths = array();
1441 
1442  $sql = "SELECT em.rowid, em.code, em.libelle";
1443  $sql .= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1444  $sql .= " WHERE em.active = 1";
1445  $sql .= " ORDER BY em.libelle ASC";
1446 
1447  $resql = $this->db->query($sql);
1448  if ($resql) {
1449  while ($obj = $this->db->fetch_object($resql)) {
1450  $label = $langs->trans('ReceptionMethod'.$obj->code);
1451  $this->meths[$obj->rowid] = ($label != 'ReceptionMethod'.$obj->code ? $label : $obj->libelle);
1452  }
1453  }
1454  }
1455 
1456  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1463  public function list_delivery_methods($id = '')
1464  {
1465  // phpcs:enable
1466  global $langs;
1467 
1468  $this->listmeths = array();
1469  $i = 0;
1470 
1471  $sql = "SELECT em.rowid, em.code, em.libelle, em.description, em.tracking, em.active";
1472  $sql .= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1473  if ($id != '') {
1474  $sql .= " WHERE em.rowid = ".((int) $id);
1475  }
1476 
1477  $resql = $this->db->query($sql);
1478  if ($resql) {
1479  while ($obj = $this->db->fetch_object($resql)) {
1480  $this->listmeths[$i]['rowid'] = $obj->rowid;
1481  $this->listmeths[$i]['code'] = $obj->code;
1482  $label = $langs->trans('ReceptionMethod'.$obj->code);
1483  $this->listmeths[$i]['libelle'] = ($label != 'ReceptionMethod'.$obj->code ? $label : $obj->libelle);
1484  $this->listmeths[$i]['description'] = $obj->description;
1485  $this->listmeths[$i]['tracking'] = $obj->tracking;
1486  $this->listmeths[$i]['active'] = $obj->active;
1487  $i++;
1488  }
1489  }
1490  }
1491 
1498  public function getUrlTrackingStatus($value = '')
1499  {
1500  if (!empty($this->shipping_method_id)) {
1501  $sql = "SELECT em.code, em.tracking";
1502  $sql .= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1503  $sql .= " WHERE em.rowid = ".((int) $this->shipping_method_id);
1504 
1505  $resql = $this->db->query($sql);
1506  if ($resql) {
1507  if ($obj = $this->db->fetch_object($resql)) {
1508  $tracking = $obj->tracking;
1509  }
1510  }
1511  }
1512 
1513  if (!empty($tracking) && !empty($value)) {
1514  $url = str_replace('{TRACKID}', $value, $tracking);
1515  $this->tracking_url = sprintf('<a target="_blank" rel="noopener noreferrer" href="%s">'.($value ? $value : 'url').'</a>', $url, $url);
1516  } else {
1517  $this->tracking_url = $value;
1518  }
1519  }
1520 
1526  public function setClosed()
1527  {
1528  global $conf, $langs, $user;
1529 
1530  $error = 0;
1531 
1532  $this->db->begin();
1533 
1534  $sql = 'UPDATE '.MAIN_DB_PREFIX.'reception SET fk_statut='.self::STATUS_CLOSED;
1535  $sql .= " WHERE rowid = ".((int) $this->id).' AND fk_statut > 0';
1536 
1537  $resql = $this->db->query($sql);
1538  if ($resql) {
1539  // Set order billed if 100% of order is received (qty in reception lines match qty in order lines)
1540  if ($this->origin == 'order_supplier' && $this->origin_id > 0) {
1541  $order = new CommandeFournisseur($this->db);
1542  $order->fetch($this->origin_id);
1543 
1544  $order->loadReceptions(self::STATUS_CLOSED); // Fill $order->receptions = array(orderlineid => qty)
1545 
1546  $receptions_match_order = 1;
1547  foreach ($order->lines as $line) {
1548  $lineid = $line->id;
1549  $qty = $line->qty;
1550  if (($line->product_type == 0 || !empty($conf->global->STOCK_SUPPORTS_SERVICES)) && $order->receptions[$lineid] < $qty) {
1551  $receptions_match_order = 0;
1552  $text = 'Qty for order line id '.$lineid.' is '.$qty.'. However in the receptions with status Reception::STATUS_CLOSED='.self::STATUS_CLOSED.' we have qty = '.$order->receptions[$lineid].', so we can t close order';
1553  dol_syslog($text);
1554  break;
1555  }
1556  }
1557  if ($receptions_match_order) {
1558  dol_syslog("Qty for the ".count($order->lines)." lines of order have same value for receptions with status Reception::STATUS_CLOSED=".self::STATUS_CLOSED.', so we close order');
1559  $order->Livraison($user, dol_now(), 'tot', 'Reception '.$this->ref);
1560  }
1561  }
1562 
1563  $this->statut = self::STATUS_CLOSED;
1564 
1565 
1566  // If stock increment is done on closing
1567  if (!$error && !empty($conf->stock->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
1568  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
1569 
1570  $langs->load("agenda");
1571 
1572  // Loop on each product line to add a stock movement
1573  // TODO possibilite de receptionner a partir d'une propale ou autre origine ?
1574  $sql = "SELECT cd.fk_product, cd.subprice,";
1575  $sql .= " ed.rowid, ed.qty, ed.fk_entrepot,";
1576  $sql .= " ed.eatby, ed.sellby, ed.batch,";
1577  $sql .= " ed.cost_price";
1578  $sql .= " FROM ".MAIN_DB_PREFIX."commande_fournisseurdet as cd,";
1579  $sql .= " ".MAIN_DB_PREFIX."commande_fournisseur_dispatch as ed";
1580  $sql .= " WHERE ed.fk_reception = ".((int) $this->id);
1581  $sql .= " AND cd.rowid = ed.fk_commandefourndet";
1582 
1583  dol_syslog(get_class($this)."::valid select details", LOG_DEBUG);
1584  $resql = $this->db->query($sql);
1585 
1586  if ($resql) {
1587  $cpt = $this->db->num_rows($resql);
1588  for ($i = 0; $i < $cpt; $i++) {
1589  $obj = $this->db->fetch_object($resql);
1590 
1591  $qty = $obj->qty;
1592 
1593  if ($qty <= 0) {
1594  continue;
1595  }
1596  dol_syslog(get_class($this)."::valid movement index ".$i." ed.rowid=".$obj->rowid." edb.rowid=".$obj->edbrowid);
1597 
1598  $mouvS = new MouvementStock($this->db);
1599  $mouvS->origin = &$this;
1600  $mouvS->setOrigin($this->element, $this->id);
1601 
1602  if (empty($obj->batch)) {
1603  // line without batch detail
1604 
1605  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
1606  $inventorycode = '';
1607  $result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionClassifyClosedInDolibarr", $this->ref), '', '', '', '', 0, $inventorycode);
1608  if ($result < 0) {
1609  $this->error = $mouvS->error;
1610  $this->errors = $mouvS->errors;
1611  $error++; break;
1612  }
1613  } else {
1614  // line with batch detail
1615 
1616  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
1617  $inventorycode = '';
1618  $result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionClassifyClosedInDolibarr", $this->ref), $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, '', 0, $inventorycode);
1619 
1620  if ($result < 0) {
1621  $this->error = $mouvS->error;
1622  $this->errors = $mouvS->errors;
1623  $error++; break;
1624  }
1625  }
1626  }
1627  } else {
1628  $this->error = $this->db->lasterror();
1629  $error++;
1630  }
1631  }
1632 
1633  // Call trigger
1634  if (!$error) {
1635  $result = $this->call_trigger('RECEPTION_CLOSED', $user);
1636  if ($result < 0) {
1637  $error++;
1638  }
1639  }
1640  } else {
1641  dol_print_error($this->db);
1642  $error++;
1643  }
1644 
1645  if (!$error) {
1646  $this->db->commit();
1647  return 1;
1648  } else {
1649  $this->db->rollback();
1650  return -1;
1651  }
1652  }
1653 
1654  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1662  public function set_billed()
1663  {
1664  // phpcs:enable
1665  dol_syslog(get_class($this)."::set_billed is deprecated, use setBilled instead", LOG_NOTICE);
1666  return $this->setBilled();
1667  }
1668 
1674  public function setBilled()
1675  {
1676  global $user;
1677  $error = 0;
1678 
1679  $this->db->begin();
1680 
1681  $this->setClosed();
1682 
1683  $sql = 'UPDATE '.MAIN_DB_PREFIX.'reception SET billed=1';
1684  $sql .= " WHERE rowid = ".((int) $this->id).' AND fk_statut > 0';
1685 
1686  $resql = $this->db->query($sql);
1687  if ($resql) {
1688  $this->statut = 2;
1689  $this->billed = 1;
1690 
1691  // Call trigger
1692  $result = $this->call_trigger('RECEPTION_BILLED', $user);
1693  if ($result < 0) {
1694  $error++;
1695  }
1696  } else {
1697  $error++;
1698  $this->errors[] = $this->db->lasterror;
1699  }
1700 
1701  if (empty($error)) {
1702  $this->db->commit();
1703  return 1;
1704  } else {
1705  $this->db->rollback();
1706  return -1;
1707  }
1708  }
1709 
1715  public function reOpen()
1716  {
1717  global $conf, $langs, $user;
1718 
1719  $error = 0;
1720 
1721  $this->db->begin();
1722 
1723  $sql = 'UPDATE '.MAIN_DB_PREFIX.'reception SET fk_statut=1, billed=0';
1724  $sql .= " WHERE rowid = ".((int) $this->id).' AND fk_statut > 0';
1725 
1726  $resql = $this->db->query($sql);
1727  if ($resql) {
1728  $this->statut = 1;
1729  $this->billed = 0;
1730 
1731  // If stock increment is done on closing
1732  if (!$error && !empty($conf->stock->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
1733  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
1734  $numref = $this->ref;
1735  $langs->load("agenda");
1736 
1737  // Loop on each product line to add a stock movement
1738  // TODO possibilite de receptionner a partir d'une propale ou autre origine
1739  $sql = "SELECT ed.fk_product, cd.subprice,";
1740  $sql .= " ed.rowid, ed.qty, ed.fk_entrepot,";
1741  $sql .= " ed.eatby, ed.sellby, ed.batch,";
1742  $sql .= " ed.cost_price";
1743  $sql .= " FROM ".MAIN_DB_PREFIX."commande_fournisseurdet as cd,";
1744  $sql .= " ".MAIN_DB_PREFIX."commande_fournisseur_dispatch as ed";
1745  $sql .= " WHERE ed.fk_reception = ".((int) $this->id);
1746  $sql .= " AND cd.rowid = ed.fk_commandefourndet";
1747 
1748  dol_syslog(get_class($this)."::valid select details", LOG_DEBUG);
1749  $resql = $this->db->query($sql);
1750  if ($resql) {
1751  $cpt = $this->db->num_rows($resql);
1752  for ($i = 0; $i < $cpt; $i++) {
1753  $obj = $this->db->fetch_object($resql);
1754 
1755  $qty = $obj->qty;
1756 
1757  if ($qty <= 0) {
1758  continue;
1759  }
1760 
1761  dol_syslog(get_class($this)."::reopen reception movement index ".$i." ed.rowid=".$obj->rowid);
1762 
1763  //var_dump($this->lines[$i]);
1764  $mouvS = new MouvementStock($this->db);
1765  $mouvS->origin = &$this;
1766  $mouvS->setOrigin($this->element, $this->id);
1767 
1768  if (empty($obj->batch)) {
1769  // line without batch detail
1770 
1771  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
1772  $inventorycode = '';
1773  $result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionUnClassifyCloseddInDolibarr", $numref), '', '', '', '', 0, $inventorycode);
1774 
1775  if ($result < 0) {
1776  $this->error = $mouvS->error;
1777  $this->errors = $mouvS->errors;
1778  $error++; break;
1779  }
1780  } else {
1781  // line with batch detail
1782 
1783  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
1784  $inventorycode = '';
1785  $result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionUnClassifyCloseddInDolibarr", $numref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, $obj->fk_origin_stock, $inventorycode);
1786  if ($result < 0) {
1787  $this->error = $mouvS->error;
1788  $this->errors = $mouvS->errors;
1789  $error++; break;
1790  }
1791  }
1792  }
1793  } else {
1794  $this->error = $this->db->lasterror();
1795  $error++;
1796  }
1797  }
1798 
1799  if (!$error) {
1800  // Call trigger
1801  $result = $this->call_trigger('RECEPTION_REOPEN', $user);
1802  if ($result < 0) {
1803  $error++;
1804  }
1805  }
1806 
1807  if (!$error && $this->origin == 'order_supplier') {
1808  $commande = new CommandeFournisseur($this->db);
1809  $commande->fetch($this->origin_id);
1810  $result = $commande->setStatus($user, 4);
1811  if ($result < 0) {
1812  $error++;
1813  $this->error = $commande->error;
1814  $this->errors = $commande->errors;
1815  }
1816  }
1817  } else {
1818  $error++;
1819  $this->errors[] = $this->db->lasterror();
1820  }
1821 
1822  if (!$error) {
1823  $this->db->commit();
1824  return 1;
1825  } else {
1826  $this->db->rollback();
1827  return -1;
1828  }
1829  }
1830 
1837  public function setDraft($user)
1838  {
1839  // phpcs:enable
1840  global $conf, $langs;
1841 
1842  $error = 0;
1843 
1844  // Protection
1845  if ($this->statut <= self::STATUS_DRAFT) {
1846  return 0;
1847  }
1848 
1849  if (!((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->reception->creer))
1850  || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->reception->reception_advance->validate)))) {
1851  $this->error = 'Permission denied';
1852  return -1;
1853  }
1854 
1855  $this->db->begin();
1856 
1857  $sql = "UPDATE ".MAIN_DB_PREFIX."reception";
1858  $sql .= " SET fk_statut = ".self::STATUS_DRAFT;
1859  $sql .= " WHERE rowid = ".((int) $this->id);
1860 
1861  dol_syslog(__METHOD__, LOG_DEBUG);
1862  if ($this->db->query($sql)) {
1863  // If stock increment is done on closing
1864  if (!$error && !empty($conf->stock->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION)) {
1865  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
1866 
1867  $langs->load("agenda");
1868 
1869  // Loop on each product line to add a stock movement
1870  // TODO possibilite de receptionner a partir d'une propale ou autre origine
1871  $sql = "SELECT cd.fk_product, cd.subprice,";
1872  $sql .= " ed.rowid, ed.qty, ed.fk_entrepot,";
1873  $sql .= " ed.eatby, ed.sellby, ed.batch,";
1874  $sql .= " ed.cost_price";
1875  $sql .= " FROM ".MAIN_DB_PREFIX."commande_fournisseurdet as cd,";
1876  $sql .= " ".MAIN_DB_PREFIX."commande_fournisseur_dispatch as ed";
1877  $sql .= " WHERE ed.fk_reception = ".((int) $this->id);
1878  $sql .= " AND cd.rowid = ed.fk_commandefourndet";
1879 
1880  dol_syslog(get_class($this)."::valid select details", LOG_DEBUG);
1881  $resql = $this->db->query($sql);
1882  if ($resql) {
1883  $cpt = $this->db->num_rows($resql);
1884  for ($i = 0; $i < $cpt; $i++) {
1885  $obj = $this->db->fetch_object($resql);
1886 
1887  $qty = $obj->qty;
1888 
1889 
1890  if ($qty <= 0) {
1891  continue;
1892  }
1893  dol_syslog(get_class($this)."::reopen reception movement index ".$i." ed.rowid=".$obj->rowid." edb.rowid=".$obj->edbrowid);
1894 
1895  //var_dump($this->lines[$i]);
1896  $mouvS = new MouvementStock($this->db);
1897  $mouvS->origin = &$this;
1898  $mouvS->setOrigin($this->element, $this->id);
1899 
1900  if (empty($obj->batch)) {
1901  // line without batch detail
1902 
1903  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
1904  $inventorycode = '';
1905  $result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionBackToDraftInDolibarr", $this->ref), '', '', '', '', 0, $inventorycode);
1906  if ($result < 0) {
1907  $this->error = $mouvS->error;
1908  $this->errors = $mouvS->errors;
1909  $error++;
1910  break;
1911  }
1912  } else {
1913  // line with batch detail
1914 
1915  // We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
1916  $inventorycode = '';
1917  $result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans("ReceptionBackToDraftInDolibarr", $this->ref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, 0, $inventorycode);
1918  if ($result < 0) {
1919  $this->error = $mouvS->error;
1920  $this->errors = $mouvS->errors;
1921  $error++; break;
1922  }
1923  }
1924  }
1925  } else {
1926  $this->error = $this->db->lasterror();
1927  $error++;
1928  }
1929  }
1930 
1931  if (!$error) {
1932  // Call trigger
1933  $result = $this->call_trigger('RECEPTION_UNVALIDATE', $user);
1934  if ($result < 0) {
1935  $error++;
1936  }
1937  }
1938  if ($this->origin == 'order_supplier') {
1939  if (!empty($this->origin) && $this->origin_id > 0) {
1940  $this->fetch_origin();
1941  $origin = $this->origin;
1942  if ($this->$origin->statut == 4) { // If order source of reception is "partially received"
1943  // Check if there is no more reception validated.
1944  $this->$origin->fetchObjectLinked();
1945  $setStatut = 1;
1946  if (!empty($this->$origin->linkedObjects['reception'])) {
1947  foreach ($this->$origin->linkedObjects['reception'] as $rcption) {
1948  if ($rcption->statut > 0) {
1949  $setStatut = 0;
1950  break;
1951  }
1952  }
1953  //var_dump($this->$origin->receptions);exit;
1954  if ($setStatut) {
1955  $this->$origin->setStatut(3); // ordered
1956  }
1957  }
1958  }
1959  }
1960  }
1961 
1962  if (!$error) {
1963  $this->statut = self::STATUS_DRAFT;
1964  $this->db->commit();
1965  return 1;
1966  } else {
1967  $this->db->rollback();
1968  return -1;
1969  }
1970  } else {
1971  $this->error = $this->db->error();
1972  $this->db->rollback();
1973  return -1;
1974  }
1975  }
1976 
1987  public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
1988  {
1989  global $conf, $langs;
1990 
1991  $langs->load("receptions");
1992 
1993  if (!dol_strlen($modele)) {
1994  $modele = 'squille';
1995 
1996  if ($this->model_pdf) {
1997  $modele = $this->model_pdf;
1998  } elseif (!empty($conf->global->RECEPTION_ADDON_PDF)) {
1999  $modele = $conf->global->RECEPTION_ADDON_PDF;
2000  }
2001  }
2002 
2003  $modelpath = "core/modules/reception/doc/";
2004 
2005  $this->fetch_origin();
2006 
2007  return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref);
2008  }
2009 
2018  public static function replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
2019  {
2020  $tables = array('reception');
2021 
2022  return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
2023  }
2024 
2033  public static function replaceProduct(DoliDB $db, $origin_id, $dest_id)
2034  {
2035  $tables = array(
2036  'commande_fournisseur_dispatch'
2037  );
2038 
2039  return CommonObject::commonReplaceProduct($db, $origin_id, $dest_id, $tables);
2040  }
2041 }
Reception\fetch
fetch($id, $ref='', $ref_ext='', $notused='')
Get object and lines from database.
Definition: reception.class.php:371
Societe
Class to manage third parties objects (customers, suppliers, prospects...)
Definition: societe.class.php:48
Reception\set_billed
set_billed()
Classify the reception as invoiced (used when WORKFLOW_BILL_ON_RECEPTION is on)
Definition: reception.class.php:1662
db
$conf db
API class for accounts.
Definition: inc.php:41
Reception\getNomUrl
getNomUrl($withpicto=0, $option=0, $max=0, $short=0, $notooltip=0)
Return clicable link of object (with eventually picto)
Definition: reception.class.php:1237
Reception
Class to manage receptions.
Definition: reception.class.php:49
dol_sanitizeFileName
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
Definition: functions.lib.php:1226
Reception\fetch_lines
fetch_lines()
Load lines.
Definition: reception.class.php:1166
dol_delete_dir_recursive
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
Definition: files.lib.php:1383
DoliDB
Class to manage Dolibarr database access.
Definition: DoliDB.class.php:30
Reception\setBilled
setBilled()
Classify the reception as invoiced (used when WORKFLOW_BILL_ON_RECEPTION is on)
Definition: reception.class.php:1674
Reception\generateDocument
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0)
Create a document onto disk according to template module.
Definition: reception.class.php:1987
CommandeFournisseurDispatch
Class to manage table commandefournisseurdispatch.
Definition: fournisseur.commande.dispatch.class.php:34
Reception\create
create($user, $notrigger=0)
Create reception en base.
Definition: reception.class.php:215
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4844
Reception\getStatusDispatch
getStatusDispatch()
Get status from all dispatched lines.
Definition: reception.class.php:723
dol_buildpath
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
Definition: functions.lib.php:1062
CommonIncoterm
trait CommonIncoterm
Superclass for incoterm classes.
Definition: commonincoterm.class.php:29
CommonObject\deleteObjectLinked
deleteObjectLinked($sourceid=null, $sourcetype='', $targetid=null, $targettype='', $rowid='', $f_user=null, $notrigger=0)
Delete all links between an object $this.
Definition: commonobject.class.php:4228
ref
$object ref
Definition: info.php:77
CommonObject\commonReplaceProduct
static commonReplaceProduct(DoliDB $db, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a product id with another one.
Definition: commonobject.class.php:8376
Reception\getNextNumRef
getNextNumRef($soc)
Return next contract ref.
Definition: reception.class.php:165
Reception\addline
addline($entrepot_id, $id, $qty, $array_options=0, $comment='', $eatby='', $sellby='', $batch='', $cost_price=0)
Add an reception line.
Definition: reception.class.php:820
Reception\replaceThirdparty
static replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
Definition: reception.class.php:2018
CommonObject\setStatut
setStatut($status, $elementId=null, $elementType='', $trigkey='', $fieldstatus='fk_statut')
Set status of an object.
Definition: commonobject.class.php:4364
dol_dir_list
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:60
CommonObject
Parent class of all other business classes (invoices, contracts, proposals, orders,...
Definition: commonobject.class.php:44
Reception\fetch_delivery_methods
fetch_delivery_methods()
Fetch deliveries method and return an array.
Definition: reception.class.php:1436
CommonObject\fetch_origin
fetch_origin()
Read linked origin object.
Definition: commonobject.class.php:1929
CommonObject\fetch_thirdparty
fetch_thirdparty($force_thirdparty_id=0)
Load the third party of object, from id $this->socid or $this->fk_soc, into this->thirdparty.
Definition: commonobject.class.php:1736
img_picto
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
Definition: functions.lib.php:3880
Reception\__construct
__construct($db)
Constructor.
Definition: reception.class.php:133
CommonObject\commonGenerateDocument
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
Definition: commonobject.class.php:5406
Reception\valid
valid($user, $notrigger=0)
Validate object and update stock if option enabled.
Definition: reception.class.php:506
dol_delete_file
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
Definition: files.lib.php:1231
Reception\getLibStatut
getLibStatut($mode=0)
Return status label.
Definition: reception.class.php:1291
MouvementStock
Class to manage stock movements.
Definition: mouvementstock.class.php:31
CommonObject\insertExtraFields
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
Definition: commonobject.class.php:6156
Reception\initAsSpecimen
initAsSpecimen()
Initialise an instance with random values.
Definition: reception.class.php:1330
Reception\setDeliveryDate
setDeliveryDate($user, $delivery_date)
Set the planned delivery date.
Definition: reception.class.php:1408
CommonObject\commonReplaceThirdparty
static commonReplaceThirdparty(DoliDB $db, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
Definition: commonobject.class.php:8347
dol_syslog
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
Definition: functions.lib.php:1603
Reception\LibStatut
LibStatut($status, $mode)
Return label of a status.
Definition: reception.class.php:1304
CommandeFournisseur\STATUS_RECEIVED_COMPLETELY
const STATUS_RECEIVED_COMPLETELY
Received completely.
Definition: fournisseur.commande.class.php:293
CommonObject\fetch_optionals
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
Definition: commonobject.class.php:6007
dol_strlen
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
Definition: functions.lib.php:3747
Reception\getUrlTrackingStatus
getUrlTrackingStatus($value='')
Forge an set tracking url.
Definition: reception.class.php:1498
CommandeFournisseur
Class to manage predefined suppliers products.
Definition: fournisseur.commande.class.php:47
User
Class to manage Dolibarr users.
Definition: user.class.php:44
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Product
Class to manage products or services.
Definition: product.class.php:46
Reception\replaceProduct
static replaceProduct(DoliDB $db, $origin_id, $dest_id)
Function used to replace a product id with another one.
Definition: reception.class.php:2033
CommonObject\add_object_linked
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add an object link into llx_element_element.
Definition: commonobject.class.php:3818
dolGetStatus
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
Definition: functions.lib.php:10338
Reception\setClosed
setClosed()
Classify the reception as closed (this record also the stock movement)
Definition: reception.class.php:1526
Reception\update
update($user=null, $notrigger=0)
Update database.
Definition: reception.class.php:897
dol_now
dol_now($mode='auto')
Return date for now.
Definition: functions.lib.php:2845
$resql
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice') && $user->rights->supplier_invoice->lire)) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:742
Reception\reOpen
reOpen()
Classify the reception as validated/opened.
Definition: reception.class.php:1715
CommonObject\call_trigger
call_trigger($triggerName, $user)
Call trigger based on this instance.
Definition: commonobject.class.php:5791
CommandeFournisseur\STATUS_RECEIVED_PARTIALLY
const STATUS_RECEIVED_PARTIALLY
Received partially.
Definition: fournisseur.commande.class.php:288
user
$conf db user
Definition: repair.php:123
Reception\setDraft
setDraft($user)
Set draft status.
Definition: reception.class.php:1837
getDolGlobalInt
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
Definition: functions.lib.php:93
CommandeFournisseurLigne
Class to manage line orders.
Definition: fournisseur.commande.class.php:3550
Reception\list_delivery_methods
list_delivery_methods($id='')
Fetch all deliveries method and return an array.
Definition: reception.class.php:1463