dolibarr 19.0.3
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 (not usefull)
48 public $fk_warehouse; // warehouse ID
49 public $fk_expeditiondet;
50
51
57 public function __construct($db)
58 {
59 $this->db = $db;
60 }
61
68 public function fetchFromStock($id_stockdluo)
69 {
70 $sql = "SELECT";
71 $sql .= " pb.batch,";
72 $sql .= " pl.sellby,";
73 $sql .= " pl.eatby,";
74 $sql .= " ps.fk_entrepot";
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
110 public function create($id_line_expdet, $f_user = null, $notrigger = 0)
111 {
112 global $user;
113
114 $error = 0;
115 if (!is_object($f_user)) {
116 $f_user = $user;
117 }
118
119 $id_line_expdet = (int) $id_line_expdet;
120
121 $sql = "INSERT INTO ".MAIN_DB_PREFIX.$this->table_element." (";
122 $sql .= "fk_expeditiondet";
123 $sql .= ", sellby";
124 $sql .= ", eatby";
125 $sql .= ", batch";
126 $sql .= ", qty";
127 $sql .= ", fk_origin_stock";
128 $sql .= ", fk_warehouse";
129 $sql .= ") VALUES (";
130 $sql .= $id_line_expdet;
131 $sql .= ", ".(!isset($this->sellby) || dol_strlen($this->sellby) == 0 ? 'NULL' : ("'".$this->db->idate($this->sellby))."'");
132 $sql .= ", ".(!isset($this->eatby) || dol_strlen($this->eatby) == 0 ? 'NULL' : ("'".$this->db->idate($this->eatby))."'");
133 $sql .= ", ".(!isset($this->batch) ? 'NULL' : ("'".$this->db->escape($this->batch)."'"));
134 $sql .= ", ".(!isset($this->qty) ? ((!isset($this->dluo_qty)) ? 'NULL' : $this->dluo_qty) : $this->qty); // dluo_qty deprecated, use qty
135 $sql .= ", ".(!isset($this->fk_origin_stock) ? 'NULL' : $this->fk_origin_stock);
136 $sql .= ", ".(!isset($this->fk_warehouse) ? 'NULL' : $this->fk_warehouse);
137 $sql .= ")";
138
139 dol_syslog(__METHOD__, LOG_DEBUG);
140 $resql = $this->db->query($sql);
141 if (!$resql) {
142 $error++;
143 $this->errors[] = "Error ".$this->db->lasterror();
144 }
145
146 if (!$error) {
147 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
148
149 $this->fk_expeditiondet = $id_line_expdet;
150 }
151
152 if (!$error && !$notrigger) {
153 // Call trigger
154 $result = $this->call_trigger('EXPEDITIONLINEBATCH_CREATE', $f_user);
155 if ($result < 0) {
156 $error++;
157 }
158 // End call triggers
159 }
160
161 if (!$error) {
162 return $this->id;
163 } else {
164 foreach ($this->errors as $errmsg) {
165 dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
166 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
167 }
168 return -1 * $error;
169 }
170 }
171
178 public function deleteFromShipment($id_expedition)
179 {
180 $sql = "DELETE FROM ".MAIN_DB_PREFIX.$this->table_element;
181 $sql .= " WHERE fk_expeditiondet in (SELECT rowid FROM ".MAIN_DB_PREFIX."expeditiondet WHERE fk_expedition=".((int) $id_expedition).")";
182
183 dol_syslog(__METHOD__, LOG_DEBUG);
184 if ($this->db->query($sql)) {
185 return 1;
186 } else {
187 return -1;
188 }
189 }
190
198 public function fetchAll($id_line_expdet, $fk_product = 0)
199 {
200 $sql = "SELECT";
201 $sql .= " eb.rowid,";
202 $sql .= " eb.fk_expeditiondet,";
203 $sql .= " eb.sellby as oldsellby,"; // deprecated
204 $sql .= " eb.eatby as oldeatby,"; // deprecated
205 $sql .= " eb.batch,";
206 $sql .= " eb.qty,";
207 $sql .= " eb.fk_origin_stock,";
208 $sql .= " eb.fk_warehouse";
209 if ($fk_product > 0) {
210 $sql .= ", pl.sellby";
211 $sql .= ", pl.eatby";
212 }
213 $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as eb";
214 if ($fk_product > 0) {
215 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product_lot as pl ON pl.batch = eb.batch AND pl.fk_product = ".((int) $fk_product);
216 }
217 $sql .= " WHERE fk_expeditiondet=".(int) $id_line_expdet;
218
219 dol_syslog(__METHOD__, LOG_DEBUG);
220 $resql = $this->db->query($sql);
221 if ($resql) {
222 $num = $this->db->num_rows($resql);
223 $i = 0;
224 $ret = array();
225 while ($i < $num) {
226 $obj = $this->db->fetch_object($resql);
227
228 $tmp = new self($this->db);
229 $tmp->sellby = $this->db->jdate($obj->sellby ? $obj->sellby : $obj->oldsellby);
230 $tmp->eatby = $this->db->jdate($obj->eatby ? $obj->eatby : $obj->oldeatby);
231 $tmp->batch = $obj->batch;
232 $tmp->id = $obj->rowid;
233 $tmp->fk_origin_stock = $obj->fk_origin_stock;
234 $tmp->fk_expeditiondet = $obj->fk_expeditiondet;
235 $tmp->fk_warehouse = $obj->fk_warehouse;
236 $tmp->dluo_qty = $obj->qty; // dluo_qty deprecated, use qty
237 $tmp->qty = $obj->qty;
238
239 $ret[] = $tmp;
240 $i++;
241 }
242
243 $this->db->free($resql);
244
245 return $ret;
246 } else {
247 dol_print_error($this->db);
248 return -1;
249 }
250 }
251}
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.
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_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.