dolibarr  17.0.4
expeditionlinebatch.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2007-2015 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2013-2014 Cedric GROSS <c.gross@kreiz-it.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
30 {
34  public $element = 'expeditionlignebatch';
35 
39  public $table_element = 'expeditiondet_batch';
40 
41  public $sellby;
42  public $eatby;
43  public $batch;
44  public $qty;
45  public $dluo_qty; // deprecated, use qty
46  public $entrepot_id;
47  public $fk_origin_stock; // rowid in llx_product_batch table
48  public $fk_expeditiondet;
49 
50 
56  public function __construct($db)
57  {
58  $this->db = $db;
59  }
60 
67  public function fetchFromStock($id_stockdluo)
68  {
69  $sql = "SELECT";
70  $sql .= " pb.batch,";
71  $sql .= " pl.sellby,";
72  $sql .= " pl.eatby,";
73  $sql .= " ps.fk_entrepot";
74 
75  $sql .= " FROM ".MAIN_DB_PREFIX."product_batch as pb";
76  $sql .= " JOIN ".MAIN_DB_PREFIX."product_stock as ps on pb.fk_product_stock=ps.rowid";
77  $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX."product_lot as pl on pl.batch = pb.batch AND pl.fk_product = ps.fk_product";
78  $sql .= " WHERE pb.rowid = ".(int) $id_stockdluo;
79 
80  dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
81 
82  $resql = $this->db->query($sql);
83  if ($resql) {
84  if ($this->db->num_rows($resql)) {
85  $obj = $this->db->fetch_object($resql);
86 
87  $this->sellby = $this->db->jdate($obj->sellby);
88  $this->eatby = $this->db->jdate($obj->eatby);
89  $this->batch = $obj->batch;
90  $this->entrepot_id = $obj->fk_entrepot;
91  $this->fk_origin_stock = (int) $id_stockdluo;
92  }
93  $this->db->free($resql);
94 
95  return 1;
96  } else {
97  $this->error = "Error ".$this->db->lasterror();
98  return -1;
99  }
100  }
101 
108  public function create($id_line_expdet)
109  {
110  $error = 0;
111 
112  $id_line_expdet = (int) $id_line_expdet;
113 
114  $sql = "INSERT INTO ".MAIN_DB_PREFIX.$this->table_element." (";
115  $sql .= "fk_expeditiondet";
116  $sql .= ", sellby";
117  $sql .= ", eatby";
118  $sql .= ", batch";
119  $sql .= ", qty";
120  $sql .= ", fk_origin_stock";
121  $sql .= ") VALUES (";
122  $sql .= $id_line_expdet.",";
123  $sql .= " ".(!isset($this->sellby) || dol_strlen($this->sellby) == 0 ? 'NULL' : ("'".$this->db->idate($this->sellby))."'").",";
124  $sql .= " ".(!isset($this->eatby) || dol_strlen($this->eatby) == 0 ? 'NULL' : ("'".$this->db->idate($this->eatby))."'").",";
125  $sql .= " ".(!isset($this->batch) ? 'NULL' : ("'".$this->db->escape($this->batch)."'")).",";
126  $sql .= " ".(!isset($this->qty) ? ((!isset($this->dluo_qty)) ? 'NULL' : $this->dluo_qty) : $this->qty).","; // dluo_qty deprecated, use qty
127  $sql .= " ".(!isset($this->fk_origin_stock) ? 'NULL' : $this->fk_origin_stock);
128  $sql .= ")";
129 
130  dol_syslog(__METHOD__, LOG_DEBUG);
131  $resql = $this->db->query($sql);
132  if (!$resql) {
133  $error++; $this->errors[] = "Error ".$this->db->lasterror();
134  }
135 
136  if (!$error) {
137  $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
138 
139  $this->fk_expeditiondet = $id_line_expdet;
140  return $this->id;
141  } else {
142  foreach ($this->errors as $errmsg) {
143  dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
144  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
145  }
146  return -1 * $error;
147  }
148  }
149 
156  public function deleteFromShipment($id_expedition)
157  {
158  $sql = "DELETE FROM ".MAIN_DB_PREFIX.$this->table_element;
159  $sql .= " WHERE fk_expeditiondet in (SELECT rowid FROM ".MAIN_DB_PREFIX."expeditiondet WHERE fk_expedition=".((int) $id_expedition).")";
160 
161  dol_syslog(__METHOD__, LOG_DEBUG);
162  if ($this->db->query($sql)) {
163  return 1;
164  } else {
165  return -1;
166  }
167  }
168 
176  public function fetchAll($id_line_expdet, $fk_product = 0)
177  {
178  $sql = "SELECT";
179  $sql .= " eb.rowid,";
180  $sql .= " eb.fk_expeditiondet,";
181  $sql .= " eb.sellby as oldsellby,"; // deprecated
182  $sql .= " eb.eatby as oldeatby,"; // deprecated
183  $sql .= " eb.batch,";
184  $sql .= " eb.qty,";
185  $sql .= " eb.fk_origin_stock";
186  if ($fk_product > 0) {
187  $sql .= ", pl.sellby";
188  $sql .= ", pl.eatby";
189  }
190  $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as eb";
191  if ($fk_product > 0) {
192  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product_lot as pl ON pl.batch = eb.batch AND pl.fk_product = ".((int) $fk_product);
193  }
194  $sql .= " WHERE fk_expeditiondet=".(int) $id_line_expdet;
195 
196  dol_syslog(__METHOD__."", LOG_DEBUG);
197  $resql = $this->db->query($sql);
198  if ($resql) {
199  $num = $this->db->num_rows($resql);
200  $i = 0;
201  $ret = array();
202  while ($i < $num) {
203  $obj = $this->db->fetch_object($resql);
204 
205  $tmp = new self($this->db);
206  $tmp->sellby = $this->db->jdate($obj->sellby ? $obj->sellby : $obj->oldsellby);
207  $tmp->eatby = $this->db->jdate($obj->eatby ? $obj->eatby : $obj->oldeatby);
208  $tmp->batch = $obj->batch;
209  $tmp->id = $obj->rowid;
210  $tmp->fk_origin_stock = $obj->fk_origin_stock;
211  $tmp->fk_expeditiondet = $obj->fk_expeditiondet;
212  $tmp->dluo_qty = $obj->qty; // dluo_qty deprecated, use qty
213  $tmp->qty = $obj->qty;
214 
215  $ret[] = $tmp;
216  $i++;
217  }
218 
219  $this->db->free($resql);
220 
221  return $ret;
222  } else {
223  dol_print_error($this->db);
224  return -1;
225  }
226  }
227 }
Parent class of all other business classes (invoices, contracts, proposals, orders,...
CRUD class for batch number management within shipment.
fetchFromStock($id_stockdluo)
Fill object based on a product-warehouse-batch's record.
create($id_line_expdet)
Create an expeditiondet_batch DB record link to an expedtiondet record.
deleteFromShipment($id_expedition)
Delete batch record attach to a shipment.
fetchAll($id_line_expdet, $fk_product=0)
Retrieve all batch number detailed information of a shipment line.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("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->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:745
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
$conf db
API class for accounts.
Definition: inc.php:41