35 public $element =
'expeditionlignebatch';
40 public $table_element =
'expeditiondet_batch';
71 public $fk_origin_stock;
79 public $fk_expeditiondet;
101 $sql .=
" pb.batch,";
102 $sql .=
" pl.sellby,";
103 $sql .=
" pl.eatby,";
104 $sql .=
" ps.fk_entrepot";
105 $sql .=
" FROM ".MAIN_DB_PREFIX.
"product_batch as pb";
106 $sql .=
" JOIN ".MAIN_DB_PREFIX.
"product_stock as ps on pb.fk_product_stock=ps.rowid";
107 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
"product_lot as pl on pl.batch = pb.batch AND pl.fk_product = ps.fk_product";
108 $sql .=
" WHERE pb.rowid = ".(int) $id_stockdluo;
110 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
112 $resql = $this->db->query($sql);
114 if ($this->db->num_rows($resql)) {
115 $obj = $this->db->fetch_object($resql);
117 $this->sellby = $this->db->jdate($obj->sellby);
118 $this->eatby = $this->db->jdate($obj->eatby);
119 $this->batch = $obj->batch;
120 $this->entrepot_id = $obj->fk_entrepot;
121 $this->fk_origin_stock = (int) $id_stockdluo;
123 $this->db->free($resql);
127 $this->error =
"Error ".$this->db->lasterror();
140 public function create($id_line_expdet, $f_user =
null, $notrigger = 0)
145 if (!is_object($f_user)) {
149 $id_line_expdet = (int) $id_line_expdet;
151 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.$this->table_element.
" (";
152 $sql .=
"fk_expeditiondet";
157 $sql .=
", fk_origin_stock";
158 $sql .=
", fk_warehouse";
159 $sql .=
") VALUES (";
160 $sql .= $id_line_expdet;
161 $sql .=
", ".(!isset($this->sellby) ||
dol_strlen($this->sellby) == 0 ?
'NULL' : (
"'".$this->db->idate($this->sellby)).
"'");
162 $sql .=
", ".(!isset($this->eatby) ||
dol_strlen($this->eatby) == 0 ?
'NULL' : (
"'".$this->db->idate($this->eatby)).
"'");
163 $sql .=
", ".($this->batch ==
'' ?
'NULL' : (
"'".$this->db->escape($this->batch).
"'"));
164 $sql .=
", ".(!isset($this->qty) ? ((!isset($this->dluo_qty)) ?
'NULL' : $this->dluo_qty) : $this->qty);
165 $sql .=
", ".((int) $this->fk_origin_stock);
166 $sql .=
", ".(empty($this->fk_warehouse) ?
'NULL' : $this->fk_warehouse);
170 $resql = $this->db->query($sql);
173 $this->errors[] =
"Error ".$this->db->lasterror();
177 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
179 $this->fk_expeditiondet = $id_line_expdet;
182 if (!$error && !$notrigger) {
184 $result = $this->
call_trigger(
'EXPEDITIONLINEBATCH_CREATE', $f_user);
194 foreach ($this->errors as $errmsg) {
195 dol_syslog(get_class($this).
"::create ".$errmsg, LOG_ERR);
196 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
210 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.$this->table_element;
211 $sql .=
" WHERE fk_expeditiondet in (SELECT rowid FROM ".MAIN_DB_PREFIX.
"expeditiondet WHERE fk_expedition=".((int) $id_expedition).
")";
214 if ($this->db->query($sql)) {
228 public function fetchAll($id_line_expdet, $fk_product = 0)
231 $sql .=
" eb.rowid,";
232 $sql .=
" eb.fk_expeditiondet,";
233 $sql .=
" eb.sellby as oldsellby,";
234 $sql .=
" eb.eatby as oldeatby,";
235 $sql .=
" eb.batch,";
237 $sql .=
" eb.fk_origin_stock,";
238 $sql .=
" eb.fk_warehouse";
239 if ($fk_product > 0) {
240 $sql .=
", pl.sellby";
241 $sql .=
", pl.eatby";
243 $sql .=
" FROM ".MAIN_DB_PREFIX.$this->table_element.
" as eb";
244 if ($fk_product > 0) {
245 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product_lot as pl ON pl.batch = eb.batch AND pl.fk_product = ".((int) $fk_product);
247 $sql .=
" WHERE fk_expeditiondet=".(int) $id_line_expdet;
250 $resql = $this->db->query($sql);
252 $num = $this->db->num_rows($resql);
256 $obj = $this->db->fetch_object($resql);
258 $tmp =
new self($this->db);
259 $tmp->sellby = $this->db->jdate(($fk_product > 0 && $obj->sellby) ? $obj->sellby : $obj->oldsellby);
260 $tmp->eatby = $this->db->jdate(($fk_product > 0 && $obj->eatby) ? $obj->eatby : $obj->oldeatby);
261 $tmp->batch = $obj->batch;
262 $tmp->id = $obj->rowid;
263 $tmp->fk_origin_stock = $obj->fk_origin_stock;
264 $tmp->fk_expeditiondet = $obj->fk_expeditiondet;
265 $tmp->fk_warehouse = $obj->fk_warehouse;
266 $tmp->dluo_qty = $obj->qty;
267 $tmp->qty = $obj->qty;
273 $this->db->free($resql);
Parent class of all other business classes (invoices, contracts, proposals, orders,...
call_trigger($triggerName, $user)
Call trigger based on this instance.
CRUD class for batch number management within shipment.
__construct($db)
Constructor.
fetchFromStock($id_stockdluo)
Fill object based on a product-warehouse-batch's record.
deleteFromShipment($id_expedition)
Delete batch record attach to a shipment.
create($id_line_expdet, $f_user=null, $notrigger=0)
Create an expeditiondet_batch DB record link to an expedtiondet record.
fetchAll($id_line_expdet, $fk_product=0)
Retrieve all batch number detailed information of a shipment line.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.