36 require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
37 require_once DOL_DOCUMENT_ROOT.
"/core/class/commonobjectline.class.php";
38 require_once DOL_DOCUMENT_ROOT.
'/core/class/commonincoterm.class.php';
40 require_once DOL_DOCUMENT_ROOT.
'/comm/propal/class/propal.class.php';
43 require_once DOL_DOCUMENT_ROOT.
'/commande/class/commande.class.php';
62 public $element =
"reception";
67 public $fk_element =
"fk_reception";
68 public $table_element =
"reception";
69 public $table_element_line =
"commande_fournisseur_dispatch";
70 public $ismultientitymanaged = 1;
75 public $picto =
'dollyrevert';
82 public $tracking_number;
98 public $date_delivery;
104 public $date_reception;
109 public $date_creation;
122 public $lines = array();
127 public $detail_batch;
129 const STATUS_DRAFT = 0;
130 const STATUS_VALIDATED = 1;
131 const STATUS_CLOSED = 2;
145 $this->statuts = array();
146 $this->statuts[-1] =
'StatusReceptionCanceled';
147 $this->statuts[0] =
'StatusReceptionDraft';
149 $this->statuts[1] =
'StatusReceptionValidated';
151 $this->statuts[1] =
'StatusReceptionValidatedReceived';
154 $this->statuts[1] =
'StatusReceptionValidatedToReceive';
156 $this->statuts[2] =
'StatusReceptionProcessed';
159 $this->statuts_short = array();
160 $this->statuts_short[-1] =
'StatusReceptionCanceledShort';
161 $this->statuts_short[0] =
'StatusReceptionDraftShort';
162 $this->statuts_short[1] =
'StatusReceptionValidatedShort';
163 $this->statuts_short[2] =
'StatusReceptionProcessedShort';
174 global $langs, $conf;
175 $langs->load(
"receptions");
177 if (!empty($conf->global->RECEPTION_ADDON_NUMBER)) {
180 $file = $conf->global->RECEPTION_ADDON_NUMBER.
".php";
181 $classname = $conf->global->RECEPTION_ADDON_NUMBER;
184 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
186 foreach ($dirmodels as $reldir) {
190 $mybool |= @include_once $dir.$file;
198 $obj =
new $classname();
201 $numref = $obj->getNextValue($soc, $this);
210 print $langs->trans(
"Error").
" ".$langs->trans(
"Error_RECEPTION_ADDON_NUMBER_NotDefined");
222 public function create($user, $notrigger = 0)
224 global $conf, $hookmanager;
228 require_once DOL_DOCUMENT_ROOT.
'/product/stock/class/mouvementstock.class.php';
232 $this->brouillon = 1;
234 if (empty($this->fk_project)) {
235 $this->fk_project = 0;
237 if (empty($this->weight_units)) {
238 $this->weight_units = 0;
240 if (empty($this->size_units)) {
241 $this->size_units = 0;
248 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"reception (";
251 $sql .=
", ref_supplier";
252 $sql .=
", date_creation";
253 $sql .=
", fk_user_author";
254 $sql .=
", date_reception";
255 $sql .=
", date_delivery";
257 $sql .=
", fk_projet";
258 $sql .=
", fk_shipping_method";
259 $sql .=
", tracking_number";
264 $sql .=
", weight_units";
265 $sql .=
", size_units";
266 $sql .=
", note_private";
267 $sql .=
", note_public";
268 $sql .=
", model_pdf";
269 $sql .=
", fk_incoterms, location_incoterms";
270 $sql .=
") VALUES (";
272 $sql .=
", ".((int) $conf->entity);
273 $sql .=
", ".($this->ref_supplier ?
"'".$this->db->escape($this->ref_supplier).
"'" :
"null");
274 $sql .=
", '".$this->db->idate($now).
"'";
275 $sql .=
", ".((int) $user->id);
276 $sql .=
", ".($this->date_reception > 0 ?
"'".$this->db->idate($this->date_reception).
"'" :
"null");
277 $sql .=
", ".($this->date_delivery > 0 ?
"'".$this->db->idate($this->date_delivery).
"'" :
"null");
278 $sql .=
", ".((int) $this->socid);
279 $sql .=
", ".((int) $this->fk_project);
280 $sql .=
", ".($this->shipping_method_id > 0 ? ((int) $this->shipping_method_id) :
"null");
281 $sql .=
", '".$this->db->escape($this->tracking_number).
"'";
282 $sql .=
", ".(is_null($this->weight) ?
"NULL" : ((double) $this->weight));
283 $sql .=
", ".(is_null($this->trueDepth) ?
"NULL" : ((double) $this->trueDepth));
284 $sql .=
", ".(is_null($this->trueWidth) ?
"NULL" : ((double) $this->trueWidth));
285 $sql .=
", ".(is_null($this->trueHeight) ?
"NULL" : ((double) $this->trueHeight));
286 $sql .=
", ".(is_null($this->weight_units) ?
"NULL" : ((double) $this->weight_units));
287 $sql .=
", ".(is_null($this->size_units) ?
"NULL" : ((double) $this->size_units));
288 $sql .=
", ".(!empty($this->note_private) ?
"'".$this->db->escape($this->note_private).
"'" :
"null");
289 $sql .=
", ".(!empty($this->note_public) ?
"'".$this->db->escape($this->note_public).
"'" :
"null");
290 $sql .=
", ".(!empty($this->model_pdf) ?
"'".$this->db->escape($this->model_pdf).
"'" :
"null");
291 $sql .=
", ".(int) $this->fk_incoterms;
292 $sql .=
", '".$this->db->escape($this->location_incoterms).
"'";
295 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
300 $this->
id = $this->
db->last_insert_id(MAIN_DB_PREFIX.
"reception");
302 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"reception";
303 $sql .=
" SET ref = '(PROV".$this->id.
")'";
304 $sql .=
" WHERE rowid = ".((int) $this->
id);
306 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
307 if ($this->
db->query($sql)) {
309 $num = count($this->lines);
310 for ($i = 0; $i < $num; $i++) {
311 $this->lines[$i]->fk_reception = $this->id;
313 if (!$this->lines[$i]->
create($user) > 0) {
318 if (!$error && $this->
id && $this->origin_id) {
333 if (!$error && !$notrigger) {
335 $result = $this->
call_trigger(
'RECEPTION_CREATE', $user);
346 foreach ($this->errors as $errmsg) {
347 dol_syslog(get_class($this).
"::create ".$errmsg, LOG_ERR);
348 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
350 $this->
db->rollback();
355 $this->error = $this->
db->lasterror().
" - sql=$sql";
356 $this->
db->rollback();
361 $this->error = $this->
db->error().
" - sql=$sql";
362 $this->
db->rollback();
377 public function fetch($id, $ref =
'', $ref_ext =
'')
380 if (empty($id) && empty($ref) && empty($ref_ext)) {
384 $sql =
"SELECT e.rowid, e.ref, e.fk_soc as socid, e.date_creation, e.ref_supplier, e.ref_ext, e.fk_user_author, e.fk_statut";
385 $sql .=
", e.weight, e.weight_units, e.size, e.size_units, e.width, e.height";
386 $sql .=
", e.date_reception as date_reception, e.model_pdf, e.date_delivery";
387 $sql .=
", e.fk_shipping_method, e.tracking_number";
388 $sql .=
", el.fk_source as origin_id, el.sourcetype as origin";
389 $sql .=
", e.note_private, e.note_public";
390 $sql .=
', e.fk_incoterms, e.location_incoterms';
391 $sql .=
', i.libelle as label_incoterms';
392 $sql .=
" FROM ".MAIN_DB_PREFIX.
"reception as e";
393 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"element_element as el ON el.fk_target = e.rowid AND el.targettype = '".$this->
db->escape($this->element).
"'";
394 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'c_incoterms as i ON e.fk_incoterms = i.rowid';
395 $sql .=
" WHERE e.entity IN (".getEntity(
'reception').
")";
397 $sql .=
" AND e.rowid=".((int) $id);
400 $sql .=
" AND e.ref='".$this->db->escape($ref).
"'";
403 $sql .=
" AND e.ref_ext='".$this->db->escape($ref_ext).
"'";
406 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
407 $result = $this->
db->query($sql);
409 if ($this->
db->num_rows($result)) {
410 $obj = $this->
db->fetch_object($result);
412 $this->
id = $obj->rowid;
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);
421 $this->date_reception = $this->
db->jdate($obj->date_reception);
422 $this->date_reception = $this->
db->jdate($obj->date_reception);
423 $this->date_delivery = $this->
db->jdate($obj->date_delivery);
424 $this->model_pdf = $obj->model_pdf;
425 $this->modelpdf = $obj->model_pdf;
426 $this->shipping_method_id = $obj->fk_shipping_method;
427 $this->tracking_number = $obj->tracking_number;
428 $this->origin = ($obj->origin ? $obj->origin :
'commande');
429 $this->origin_id = $obj->origin_id;
430 $this->billed = ($obj->fk_statut == 2 ? 1 : 0);
432 $this->trueWeight = $obj->weight;
433 $this->weight_units = $obj->weight_units;
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;
442 $this->note_public = $obj->note_public;
443 $this->note_private = $obj->note_private;
446 $this->trueSize = $obj->size.
"x".$obj->width.
"x".$obj->height;
447 $this->size_units = $obj->size_units;
450 $this->fk_incoterms = $obj->fk_incoterms;
451 $this->location_incoterms = $obj->location_incoterms;
452 $this->label_incoterms = $obj->label_incoterms;
454 $this->
db->free($result);
456 if ($this->statut == 0) {
457 $this->brouillon = 1;
474 require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
476 $extrafields->fetch_name_optionals_label($this->table_element,
true);
489 dol_syslog(get_class($this).
'::Fetch no reception found', LOG_ERR);
490 $this->error =
'Delivery with id '.$id.
' not found';
494 $this->error = $this->
db->error();
506 public function valid($user, $notrigger = 0)
508 global $conf, $langs;
510 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
516 dol_syslog(get_class($this).
"::valid no draft status", LOG_WARNING);
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);
533 $soc->fetch($this->socid);
537 if (!$error && (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref))) {
540 $numref = $this->ref;
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);
557 $this->error = $this->
db->lasterror();
562 if (!$error &&
isModEnabled(
'stock') && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION)) {
563 require_once DOL_DOCUMENT_ROOT.
'/product/stock/class/mouvementstock.class.php';
565 $langs->load(
"agenda");
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";
578 dol_syslog(get_class($this).
"::valid select details", LOG_DEBUG);
582 for ($i = 0; $i < $cpt; $i++) {
583 $obj = $this->
db->fetch_object(
$resql);
587 if ($qty == 0 || ($qty < 0 && !
getDolGlobalInt(
'RECEPTION_ALLOW_NEGATIVE_QTY'))) {
590 dol_syslog(get_class($this).
"::valid movement index ".$i.
" ed.rowid=".$obj->rowid.
" edb.rowid=".$obj->edbrowid);
594 $mouvS->origin = &$this;
595 $mouvS->setOrigin($this->element, $this->
id);
597 if (empty($obj->batch)) {
602 $result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans(
"ReceptionValidatedInDolibarr", $numref),
'',
'',
'',
'', 0, $inventorycode);
604 if (intval($result) < 0) {
606 $this->errors[] = $mouvS->error;
607 $this->errors = array_merge($this->errors, $mouvS->errors);
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);
618 if (intval($result) < 0) {
620 $this->errors[] = $mouvS->error;
621 $this->errors = array_merge($this->errors, $mouvS->errors);
627 $this->
db->rollback();
628 $this->error = $this->
db->error();
640 $ret = $this->commandeFournisseur->Livraison($user,
dol_now(),
'tot',
'');
643 $this->errors = array_merge($this->errors, $this->commandeFournisseur->errors);
646 $ret = $this->
setStatut($status, $this->origin_id,
'commande_fournisseur', $trigger_key);
653 if (!$error && !$notrigger) {
655 $result = $this->
call_trigger(
'RECEPTION_VALIDATE', $user);
663 $this->oldref = $this->ref;
666 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
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);
672 $error++; $this->error = $this->
db->lasterror();
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);
683 if (@rename($dirsource, $dirdest)) {
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);
701 $this->
ref = $numref;
709 foreach ($this->errors as $errmsg) {
710 dol_syslog(get_class($this).
"::valid ".$errmsg, LOG_ERR);
711 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
713 $this->
db->rollback();
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';
732 if (!empty($this->origin) && $this->origin_id > 0 && ($this->origin ==
'order_supplier' || $this->origin ==
'commandeFournisseur')) {
733 if (empty($this->commandeFournisseur)) {
735 if (empty($this->commandeFournisseur->lines)) {
736 $res = $this->commandeFournisseur->fetch_lines();
737 if ($res < 0)
return $res;
741 $qty_received = array();
742 $qty_wished = array();
745 $filter = array(
't.fk_commande'=>$this->origin_id);
746 if (!empty($conf->global->SUPPLIER_ORDER_USE_DISPATCH_STATUS)) {
747 $filter[
't.status'] = 1;
750 $ret = $supplierorderdispatch->fetchAll(
'',
'', 0, 0, $filter);
752 $this->error = $supplierorderdispatch->error;
753 $this->errors = $supplierorderdispatch->errors;
757 foreach ($supplierorderdispatch->lines as $dispatch_line) {
758 $qty_received[$dispatch_line->fk_product] += $dispatch_line->qty;
762 foreach ($this->commandeFournisseur->lines as $origin_line) {
764 if (empty($conf->global->STOCK_SUPPORTS_SERVICES) && $origin_line->product_type > 0) {
768 $qty_wished[$origin_line->fk_product] += $origin_line->qty;
772 $diff_array = array_diff_assoc($qty_received, $qty_wished);
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));
776 if (count($diff_array) == 0 && count($keys_in_wished_not_in_received) == 0 && count($keys_in_received_not_in_wished) == 0) {
778 } elseif (!empty($conf->global->SUPPLIER_ORDER_MORE_THAN_WISHED)) {
782 if (count($diff_array) > 0) {
785 foreach ($diff_array as $key => $value) {
787 if ($qty_received[$key] >= $qty_wished[$key]) {
793 if ($close == count($diff_array)) {
820 public function addline($entrepot_id, $id, $qty, $array_options = 0, $comment =
'', $eatby =
'', $sellby =
'', $batch =
'', $cost_price = 0)
822 global $conf, $langs, $user;
824 $num = count($this->lines);
827 $line->fk_entrepot = $entrepot_id;
828 $line->fk_commandefourndet = $id;
832 $result = $supplierorderline->fetch($id);
834 $this->error = $supplierorderline->error;
835 $this->errors = $supplierorderline->errors;
840 if (
isModEnabled(
'stock') && !empty($supplierorderline->fk_product)) {
841 $fk_product = $supplierorderline->fk_product;
843 if (!($entrepot_id > 0) && empty($conf->global->STOCK_WAREHOUSE_NOT_REQUIRED_FOR_RECEPTIONS)) {
844 $langs->load(
"errors");
845 $this->error = $langs->trans(
"ErrorWarehouseRequiredIntoReceptionLine");
852 $product->fetch($fk_product);
854 $langs->load(
"errors");
855 if (!empty($product->status_batch) && empty($batch)) {
856 $this->error = $langs->trans(
'ErrorProductNeedBatchNumber', $product->ref);
858 } elseif (empty($product->status_batch) && !empty($batch)) {
859 $this->error = $langs->trans(
'ErrorProductDoesNotNeedBatchNumber', $product->ref);
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;
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;
881 $line->cost_price = $cost_price;
882 $line->fk_reception = $this->id;
884 $this->lines[$num] = $line;
897 public function update($user =
null, $notrigger = 0)
904 if (isset($this->
ref)) {
905 $this->
ref = trim($this->
ref);
907 if (isset($this->entity)) {
908 $this->entity = trim($this->entity);
910 if (isset($this->ref_supplier)) {
911 $this->ref_supplier = trim($this->ref_supplier);
913 if (isset($this->socid)) {
914 $this->socid = trim($this->socid);
916 if (isset($this->fk_user_author)) {
917 $this->fk_user_author = trim($this->fk_user_author);
919 if (isset($this->fk_user_valid)) {
920 $this->fk_user_valid = trim($this->fk_user_valid);
922 if (isset($this->shipping_method_id)) {
923 $this->shipping_method_id = trim($this->shipping_method_id);
925 if (isset($this->tracking_number)) {
926 $this->tracking_number = trim($this->tracking_number);
928 if (isset($this->statut)) {
929 $this->statut = (int) $this->statut;
931 if (isset($this->trueDepth)) {
932 $this->trueDepth = trim($this->trueDepth);
934 if (isset($this->trueWidth)) {
935 $this->trueWidth = trim($this->trueWidth);
937 if (isset($this->trueHeight)) {
938 $this->trueHeight = trim($this->trueHeight);
940 if (isset($this->size_units)) {
941 $this->size_units = trim($this->size_units);
943 if (isset($this->weight_units)) {
944 $this->weight_units = trim($this->weight_units);
946 if (isset($this->trueWeight)) {
947 $this->weight = trim($this->trueWeight);
949 if (isset($this->note_private)) {
950 $this->note_private = trim($this->note_private);
952 if (isset($this->note_public)) {
953 $this->note_public = trim($this->note_public);
955 if (isset($this->model_pdf)) {
956 $this->model_pdf = trim($this->model_pdf);
964 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"reception SET";
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);
992 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
995 $error++; $this->errors[] =
"Error ".$this->db->lasterror();
1001 $result = $this->
call_trigger(
'RECEPTION_MODIFY', $user);
1011 foreach ($this->errors as $errmsg) {
1012 dol_syslog(get_class($this).
"::update ".$errmsg, LOG_ERR);
1013 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1015 $this->
db->rollback();
1018 $this->
db->commit();
1031 global $conf, $langs, $user;
1032 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
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";
1044 $langs->load(
"agenda");
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";
1053 dol_syslog(get_class($this).
"::delete select details", LOG_DEBUG);
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);
1063 $mouvS->origin =
null;
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);
1068 $error++; $this->errors[] =
"Error ".$this->db->lasterror();
1073 $main = MAIN_DB_PREFIX.
'commande_fournisseur_dispatch';
1074 $ef = $main.
"_extrafields";
1076 $sqlef =
"DELETE FROM ".$ef.
" WHERE fk_object IN (SELECT rowid FROM ".$main.
" WHERE fk_reception = ".((int) $this->
id).
")";
1078 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"commande_fournisseur_dispatch";
1079 $sql .=
" WHERE fk_reception = ".((int) $this->
id);
1081 if ($this->
db->query($sqlef) && $this->
db->query($sql)) {
1089 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"reception";
1090 $sql .=
" WHERE rowid = ".((int) $this->
id);
1092 if ($this->
db->query($sql)) {
1094 $result = $this->
call_trigger(
'RECEPTION_DELETE', $user);
1100 if (!empty($this->origin) && $this->origin_id > 0) {
1102 $origin = $this->origin;
1103 if ($this->$origin->statut == 4) {
1105 $this->$origin->loadReceptions();
1107 if (count($this->$origin->receptions) <= 0) {
1108 $this->$origin->setStatut(3);
1114 $this->
db->commit();
1118 if (!empty($conf->reception->dir_output)) {
1119 $dir = $conf->reception->dir_output.
'/'.$ref;
1120 $file = $dir.
'/'.$ref.
'.pdf';
1121 if (file_exists($file)) {
1126 if (file_exists($dir)) {
1128 $this->error = $langs->trans(
"ErrorCanNotDeleteDir", $dir);
1136 $this->
db->rollback();
1140 $this->error = $this->
db->lasterror().
" - sql=$sql";
1141 $this->
db->rollback();
1145 $this->error = $this->
db->lasterror().
" - sql=$sql";
1146 $this->
db->rollback();
1150 $this->error = $this->
db->lasterror().
" - sql=$sql";
1151 $this->
db->rollback();
1155 $this->
db->rollback();
1169 $this->lines = array();
1171 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.commande.dispatch.class.php';
1173 $sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"commande_fournisseur_dispatch WHERE fk_reception = ".((int) $this->
id);
1177 while ($obj = $this->
db->fetch_object(
$resql)) {
1180 $line->fetch($obj->rowid);
1183 $line->fetch_product();
1185 $sql_commfourndet =
'SELECT qty, ref, label, description, tva_tx, vat_src_code, subprice, multicurrency_subprice, remise_percent, total_ht, total_ttc, total_tva';
1186 $sql_commfourndet .=
' FROM '.MAIN_DB_PREFIX.
'commande_fournisseurdet';
1187 $sql_commfourndet .=
' WHERE rowid = '.((int) $line->fk_commandefourndet);
1188 $sql_commfourndet .=
' ORDER BY rang';
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 $line->total_ht = $obj->total_ht;
1204 $line->total_ttc = $obj->total_ttc;
1205 $line->total_tva = $obj->total_tva;
1207 $line->qty_asked = 0;
1208 $line->description =
'';
1210 $line->label = $obj->label;
1213 $pu_ht = ($line->subprice * $line->qty) * (100 - $line->remise_percent) / 100;
1214 $tva = $pu_ht * $line->tva_tx / 100;
1215 $this->total_ht += $pu_ht;
1216 $this->total_tva += $pu_ht * $line->tva_tx / 100;
1218 $this->total_ttc += $pu_ht + $tva;
1220 if (
isModEnabled(
'productbatch') && !empty($line->batch)) {
1221 $detail_batch =
new stdClass();
1222 $detail_batch->eatby = $line->eatby;
1223 $detail_batch->sellby = $line->sellby;
1224 $detail_batch->batch = $line->batch;
1225 $detail_batch->qty = $line->qty;
1226 $line->detail_batch[] = $detail_batch;
1229 $this->lines[] = $line;
1248 public function getNomUrl($withpicto = 0, $option = 0, $max = 0, $short = 0, $notooltip = 0)
1250 global $conf, $langs, $hookmanager;
1252 $label =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"Reception").
'</u>';
1253 $label .=
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
1254 $label .=
'<br><b>'.$langs->trans(
'RefSupplier').
':</b> '.($this->ref_supplier ? $this->ref_supplier :
'');
1256 $url = DOL_URL_ROOT.
'/reception/card.php?id='.$this->id;
1263 if (empty($notooltip)) {
1264 if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
1265 $label = $langs->trans(
"Reception");
1266 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
1268 $linkclose .=
' title="'.dol_escape_htmltag($label, 1).
'"';
1269 $linkclose .=
' class="classfortooltip"';
1272 $linkstart =
'<a href="'.$url.
'"';
1273 $linkstart .= $linkclose.
'>';
1277 $result .= ($linkstart.img_object(($notooltip ?
'' : $label), $this->picto, ($notooltip ?
'' :
'class="classfortooltip"'), 0, 0, $notooltip ? 0 : 1).$linkend);
1279 if ($withpicto && $withpicto != 2) {
1282 $result .= $linkstart.$this->ref.$linkend;
1285 $hookmanager->initHooks(array($this->element .
'dao'));
1286 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
1287 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
1289 $result = $hookmanager->resPrint;
1291 $result .= $hookmanager->resPrint;
1304 return $this->
LibStatut($this->statut, $mode);
1320 $labelStatus = $langs->transnoentitiesnoconv($this->statuts[$status]);
1321 $labelStatusShort = $langs->transnoentitiesnoconv($this->statuts_short[$status]);
1323 $statusType =
'status'.$status;
1324 if ($status == self::STATUS_VALIDATED) {
1325 $statusType =
'status4';
1327 if ($status == self::STATUS_CLOSED) {
1328 $statusType =
'status6';
1331 return dolGetStatus($labelStatus, $labelStatusShort,
'', $statusType, $mode);
1345 include_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.commande.class.php';
1346 include_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.commande.dispatch.class.php';
1349 dol_syslog(get_class($this).
"::initAsSpecimen");
1354 $sql =
"SELECT rowid";
1355 $sql .=
" FROM ".MAIN_DB_PREFIX.
"product";
1356 $sql .=
" WHERE entity IN (".getEntity(
'product').
")";
1357 $sql .= $this->
db->plimit(100);
1361 $num_prods = $this->
db->num_rows(
$resql);
1363 while ($i < $num_prods) {
1365 $row = $this->
db->fetch_row(
$resql);
1366 $prodids[$i] = $row[0];
1371 $order->initAsSpecimen();
1375 $this->
ref =
'SPECIMEN';
1376 $this->specimen = 1;
1378 $this->livraison_id = 0;
1380 $this->date_creation = $now;
1381 $this->date_valid = $now;
1382 $this->date_delivery = $now;
1383 $this->date_reception = $now + 24 * 3600;
1385 $this->entrepot_id = 0;
1388 $this->commande_id = 0;
1389 $this->commande = $order;
1391 $this->origin_id = 1;
1392 $this->origin =
'commande';
1394 $this->note_private =
'Private note';
1395 $this->note_public =
'Public note';
1399 while ($xnbp < $nbp) {
1401 $line->desc = $langs->trans(
"Description").
" ".$xnbp;
1402 $line->libelle = $langs->trans(
"Description").
" ".$xnbp;
1405 $line->fk_product = $this->commande->lines[$xnbp]->fk_product;
1407 $this->lines[] = $line;
1422 if ($user->rights->reception->creer) {
1423 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"reception";
1424 $sql .=
" SET date_delivery = ".($delivery_date ?
"'".$this->db->idate($delivery_date).
"'" :
'null');
1425 $sql .=
" WHERE rowid = ".((int) $this->
id);
1427 dol_syslog(get_class($this).
"::setDeliveryDate", LOG_DEBUG);
1430 $this->date_delivery = $delivery_date;
1433 $this->error = $this->
db->error();
1451 $this->meths = array();
1453 $sql =
"SELECT em.rowid, em.code, em.libelle";
1454 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_shipment_mode as em";
1455 $sql .=
" WHERE em.active = 1";
1456 $sql .=
" ORDER BY em.libelle ASC";
1460 while ($obj = $this->
db->fetch_object(
$resql)) {
1461 $label = $langs->trans(
'ReceptionMethod'.$obj->code);
1462 $this->meths[$obj->rowid] = ($label !=
'ReceptionMethod'.$obj->code ? $label : $obj->libelle);
1479 $this->listmeths = array();
1482 $sql =
"SELECT em.rowid, em.code, em.libelle, em.description, em.tracking, em.active";
1483 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_shipment_mode as em";
1485 $sql .=
" WHERE em.rowid = ".((int) $id);
1490 while ($obj = $this->
db->fetch_object(
$resql)) {
1491 $this->listmeths[$i][
'rowid'] = $obj->rowid;
1492 $this->listmeths[$i][
'code'] = $obj->code;
1493 $label = $langs->trans(
'ReceptionMethod'.$obj->code);
1494 $this->listmeths[$i][
'libelle'] = ($label !=
'ReceptionMethod'.$obj->code ? $label : $obj->libelle);
1495 $this->listmeths[$i][
'description'] = $obj->description;
1496 $this->listmeths[$i][
'tracking'] = $obj->tracking;
1497 $this->listmeths[$i][
'active'] = $obj->active;
1511 if (!empty($this->shipping_method_id)) {
1512 $sql =
"SELECT em.code, em.tracking";
1513 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_shipment_mode as em";
1514 $sql .=
" WHERE em.rowid = ".((int) $this->shipping_method_id);
1518 if ($obj = $this->
db->fetch_object(
$resql)) {
1519 $tracking = $obj->tracking;
1524 if (!empty($tracking) && !empty($value)) {
1525 $url = str_replace(
'{TRACKID}', $value, $tracking);
1526 $this->tracking_url = sprintf(
'<a target="_blank" rel="noopener noreferrer" href="%s">'.($value ? $value :
'url').
'</a>', $url, $url);
1528 $this->tracking_url = $value;
1539 global $conf, $langs, $user;
1545 $sql =
'UPDATE '.MAIN_DB_PREFIX.
'reception SET fk_statut='.self::STATUS_CLOSED;
1546 $sql .=
" WHERE rowid = ".((int) $this->
id).
' AND fk_statut > 0';
1551 if ($this->origin ==
'order_supplier' && $this->origin_id > 0) {
1553 $order->fetch($this->origin_id);
1555 $order->loadReceptions(self::STATUS_CLOSED);
1557 $receptions_match_order = 1;
1558 foreach ($order->lines as $line) {
1559 $lineid = $line->id;
1561 if (($line->product_type == 0 || !empty($conf->global->STOCK_SUPPORTS_SERVICES)) && $order->receptions[$lineid] < $qty) {
1562 $receptions_match_order = 0;
1563 $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';
1568 if ($receptions_match_order) {
1569 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');
1570 $order->Livraison($user,
dol_now(),
'tot',
'Reception '.$this->
ref);
1574 $this->statut = self::STATUS_CLOSED;
1578 if (!$error &&
isModEnabled(
'stock') && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
1579 require_once DOL_DOCUMENT_ROOT.
'/product/stock/class/mouvementstock.class.php';
1581 $langs->load(
"agenda");
1585 $sql =
"SELECT cd.fk_product, cd.subprice,";
1586 $sql .=
" ed.rowid, ed.qty, ed.fk_entrepot,";
1587 $sql .=
" ed.eatby, ed.sellby, ed.batch,";
1588 $sql .=
" ed.cost_price";
1589 $sql .=
" FROM ".MAIN_DB_PREFIX.
"commande_fournisseurdet as cd,";
1590 $sql .=
" ".MAIN_DB_PREFIX.
"commande_fournisseur_dispatch as ed";
1591 $sql .=
" WHERE ed.fk_reception = ".((int) $this->
id);
1592 $sql .=
" AND cd.rowid = ed.fk_commandefourndet";
1594 dol_syslog(get_class($this).
"::valid select details", LOG_DEBUG);
1598 $cpt = $this->
db->num_rows(
$resql);
1599 for ($i = 0; $i < $cpt; $i++) {
1600 $obj = $this->
db->fetch_object(
$resql);
1607 dol_syslog(get_class($this).
"::valid movement index ".$i.
" ed.rowid=".$obj->rowid.
" edb.rowid=".$obj->edbrowid);
1610 $mouvS->origin = &$this;
1611 $mouvS->setOrigin($this->element, $this->
id);
1613 if (empty($obj->batch)) {
1617 $inventorycode =
'';
1618 $result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans(
"ReceptionClassifyClosedInDolibarr", $this->ref),
'',
'',
'',
'', 0, $inventorycode);
1620 $this->error = $mouvS->error;
1621 $this->errors = $mouvS->errors;
1628 $inventorycode =
'';
1629 $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);
1632 $this->error = $mouvS->error;
1633 $this->errors = $mouvS->errors;
1639 $this->error = $this->
db->lasterror();
1646 $result = $this->
call_trigger(
'RECEPTION_CLOSED', $user);
1657 $this->
db->commit();
1660 $this->
db->rollback();
1679 $sql =
'UPDATE '.MAIN_DB_PREFIX.
'reception SET billed=1';
1680 $sql .=
" WHERE rowid = ".((int) $this->
id).
' AND fk_statut > 0';
1688 $result = $this->
call_trigger(
'RECEPTION_BILLED', $user);
1694 $this->errors[] = $this->
db->lasterror;
1697 if (empty($error)) {
1698 $this->
db->commit();
1701 $this->
db->rollback();
1713 global $conf, $langs, $user;
1719 $sql =
'UPDATE '.MAIN_DB_PREFIX.
'reception SET fk_statut=1, billed=0';
1720 $sql .=
" WHERE rowid = ".((int) $this->
id).
' AND fk_statut > 0';
1728 if (!$error &&
isModEnabled(
'stock') && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
1729 require_once DOL_DOCUMENT_ROOT.
'/product/stock/class/mouvementstock.class.php';
1730 $numref = $this->ref;
1731 $langs->load(
"agenda");
1735 $sql =
"SELECT ed.fk_product, cd.subprice,";
1736 $sql .=
" ed.rowid, ed.qty, ed.fk_entrepot,";
1737 $sql .=
" ed.eatby, ed.sellby, ed.batch,";
1738 $sql .=
" ed.cost_price";
1739 $sql .=
" FROM ".MAIN_DB_PREFIX.
"commande_fournisseurdet as cd,";
1740 $sql .=
" ".MAIN_DB_PREFIX.
"commande_fournisseur_dispatch as ed";
1741 $sql .=
" WHERE ed.fk_reception = ".((int) $this->
id);
1742 $sql .=
" AND cd.rowid = ed.fk_commandefourndet";
1744 dol_syslog(get_class($this).
"::valid select details", LOG_DEBUG);
1747 $cpt = $this->
db->num_rows(
$resql);
1748 for ($i = 0; $i < $cpt; $i++) {
1749 $obj = $this->
db->fetch_object(
$resql);
1757 dol_syslog(get_class($this).
"::reopen reception movement index ".$i.
" ed.rowid=".$obj->rowid);
1761 $mouvS->origin = &$this;
1762 $mouvS->setOrigin($this->element, $this->
id);
1764 if (empty($obj->batch)) {
1768 $inventorycode =
'';
1769 $result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans(
"ReceptionUnClassifyCloseddInDolibarr", $numref),
'',
'',
'',
'', 0, $inventorycode);
1772 $this->error = $mouvS->error;
1773 $this->errors = $mouvS->errors;
1780 $inventorycode =
'';
1781 $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);
1783 $this->error = $mouvS->error;
1784 $this->errors = $mouvS->errors;
1790 $this->error = $this->
db->lasterror();
1797 $result = $this->
call_trigger(
'RECEPTION_REOPEN', $user);
1803 if (!$error && $this->origin ==
'order_supplier') {
1805 $commande->fetch($this->origin_id);
1806 $result = $commande->setStatus($user, 4);
1809 $this->error = $commande->error;
1810 $this->errors = $commande->errors;
1815 $this->errors[] = $this->
db->lasterror();
1819 $this->
db->commit();
1822 $this->
db->rollback();
1836 global $conf, $langs;
1841 if ($this->statut <= self::STATUS_DRAFT) {
1845 if (!((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->reception->creer))
1846 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->reception->reception_advance->validate)))) {
1847 $this->error =
'Permission denied';
1853 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"reception";
1854 $sql .=
" SET fk_statut = ".self::STATUS_DRAFT;
1855 $sql .=
" WHERE rowid = ".((int) $this->
id);
1858 if ($this->
db->query($sql)) {
1860 if (!$error &&
isModEnabled(
'stock') && !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION)) {
1861 require_once DOL_DOCUMENT_ROOT.
'/product/stock/class/mouvementstock.class.php';
1863 $langs->load(
"agenda");
1867 $sql =
"SELECT cd.fk_product, cd.subprice,";
1868 $sql .=
" ed.rowid, ed.qty, ed.fk_entrepot,";
1869 $sql .=
" ed.eatby, ed.sellby, ed.batch,";
1870 $sql .=
" ed.cost_price";
1871 $sql .=
" FROM ".MAIN_DB_PREFIX.
"commande_fournisseurdet as cd,";
1872 $sql .=
" ".MAIN_DB_PREFIX.
"commande_fournisseur_dispatch as ed";
1873 $sql .=
" WHERE ed.fk_reception = ".((int) $this->
id);
1874 $sql .=
" AND cd.rowid = ed.fk_commandefourndet";
1876 dol_syslog(get_class($this).
"::valid select details", LOG_DEBUG);
1879 $cpt = $this->
db->num_rows(
$resql);
1880 for ($i = 0; $i < $cpt; $i++) {
1881 $obj = $this->
db->fetch_object(
$resql);
1889 dol_syslog(get_class($this).
"::reopen reception movement index ".$i.
" ed.rowid=".$obj->rowid.
" edb.rowid=".$obj->edbrowid);
1893 $mouvS->origin = &$this;
1894 $mouvS->setOrigin($this->element, $this->
id);
1896 if (empty($obj->batch)) {
1900 $inventorycode =
'';
1901 $result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->cost_price, $langs->trans(
"ReceptionBackToDraftInDolibarr", $this->ref),
'',
'',
'',
'', 0, $inventorycode);
1903 $this->error = $mouvS->error;
1904 $this->errors = $mouvS->errors;
1912 $inventorycode =
'';
1913 $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);
1915 $this->error = $mouvS->error;
1916 $this->errors = $mouvS->errors;
1922 $this->error = $this->
db->lasterror();
1929 $result = $this->
call_trigger(
'RECEPTION_UNVALIDATE', $user);
1934 if ($this->origin ==
'order_supplier') {
1935 if (!empty($this->origin) && $this->origin_id > 0) {
1937 $origin = $this->origin;
1938 if ($this->$origin->statut == 4) {
1940 $this->$origin->fetchObjectLinked();
1942 if (!empty($this->$origin->linkedObjects[
'reception'])) {
1943 foreach ($this->$origin->linkedObjects[
'reception'] as $rcption) {
1944 if ($rcption->statut > 0) {
1951 $this->$origin->setStatut(3);
1959 $this->statut = self::STATUS_DRAFT;
1960 $this->
db->commit();
1963 $this->
db->rollback();
1967 $this->error = $this->
db->error();
1968 $this->
db->rollback();
1983 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
1985 global $conf, $langs;
1987 $langs->load(
"receptions");
1990 $modele =
'squille';
1992 if ($this->model_pdf) {
1993 $modele = $this->model_pdf;
1994 } elseif (!empty($conf->global->RECEPTION_ADDON_PDF)) {
1995 $modele = $conf->global->RECEPTION_ADDON_PDF;
1999 $modelpath =
"core/modules/reception/doc/";
2003 return $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref);
2016 $tables = array(
'reception');
2032 'commande_fournisseur_dispatch'