123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562 |
- <?php
- /* Copyright (C) 2007-2021 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2013-2014 Cedric GROSS <c.gross@kreiz-it.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file product/class/productbatch.class.php
- * \ingroup productbatch
- * \brief Manage record and specific data for batch number management
- */
- require_once DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php";
- /**
- * Manage record for batch number management
- */
- class Productbatch extends CommonObject
- {
- /**
- * Batches rules
- */
- const BATCH_RULE_SELLBY_EATBY_DATES_FIRST = 1;
- /**
- * @var string ID to identify managed object
- */
- public $element = 'productbatch';
- private static $_table_element = 'product_batch'; //!< Name of table without prefix where object is stored
- public $tms = '';
- public $fk_product_stock;
- public $sellby = ''; // dlc
- public $eatby = ''; // dmd/dluo
- public $batch = '';
- public $qty;
- public $warehouseid;
- /**
- * @var int ID
- */
- public $fk_product;
- /**
- * Constructor
- *
- * @param DoliDb $db Database handler
- */
- public function __construct($db)
- {
- $this->db = $db;
- }
- /**
- * Create object into database
- *
- * @param User $user User that creates
- * @param int $notrigger 0=launch triggers after, 1=disable triggers
- * @return int <0 if KO, Id of created object if OK
- */
- public function create($user, $notrigger = 0)
- {
- global $conf, $langs;
- $error = 0;
- // Clean parameters
- $this->cleanParam();
- // Check parameters
- // Put here code to add control on parameters values
- // Insert request
- $sql = "INSERT INTO ".$this->db->prefix()."product_batch (";
- $sql .= "fk_product_stock,";
- $sql .= "sellby,"; // no more used
- $sql .= "eatby,"; // no more used
- $sql .= "batch,";
- $sql .= "qty,";
- $sql .= "import_key";
- $sql .= ") VALUES (";
- $sql .= " ".(!isset($this->fk_product_stock) ? 'NULL' : $this->fk_product_stock).",";
- $sql .= " ".(!isset($this->sellby) || dol_strlen($this->sellby) == 0 ? 'NULL' : "'".$this->db->idate($this->sellby)."'").","; // no more used
- $sql .= " ".(!isset($this->eatby) || dol_strlen($this->eatby) == 0 ? 'NULL' : "'".$this->db->idate($this->eatby)."'").","; // no more used
- $sql .= " ".(!isset($this->batch) ? 'NULL' : "'".$this->db->escape($this->batch)."'").",";
- $sql .= " ".(!isset($this->qty) ? 'NULL' : $this->qty).",";
- $sql .= " ".(!isset($this->import_key) ? 'NULL' : "'".$this->db->escape($this->import_key)."'")."";
- $sql .= ")";
- $this->db->begin();
- dol_syslog(get_class($this)."::create", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $error++; $this->errors[] = "Error ".$this->db->lasterror();
- }
- if (!$error) {
- $this->id = $this->db->last_insert_id($this->db->prefix().self::$_table_element);
- }
- // Commit or rollback
- if ($error) {
- $this->db->rollback();
- return -1 * $error;
- } else {
- $this->db->commit();
- return $this->id;
- }
- }
- /**
- * Load object in memory from the database
- *
- * @param int $id Id object
- * @return int <0 if KO, >0 if OK
- */
- public function fetch($id)
- {
- global $langs;
- $sql = "SELECT";
- $sql .= " t.rowid,";
- $sql .= " t.tms,";
- $sql .= " t.fk_product_stock,";
- $sql .= " t.sellby as oldsellby,";
- $sql .= " t.eatby as oldeatby,";
- $sql .= " t.batch,";
- $sql .= " t.qty,";
- $sql .= " t.import_key,";
- $sql .= " w.fk_entrepot,";
- $sql .= " w.fk_product,";
- $sql .= " pl.eatby,";
- $sql .= " pl.sellby";
- $sql .= " FROM ".$this->db->prefix()."product_batch as t INNER JOIN ".$this->db->prefix()."product_stock w on t.fk_product_stock = w.rowid";
- $sql .= " LEFT JOIN ".$this->db->prefix()."product_lot as pl on pl.fk_product = w.fk_product and pl.batch = t.batch";
- $sql .= " WHERE t.rowid = ".((int) $id);
- dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- if ($this->db->num_rows($resql)) {
- $obj = $this->db->fetch_object($resql);
- $this->id = $obj->rowid;
- $this->tms = $this->db->jdate($obj->tms);
- $this->fk_product_stock = $obj->fk_product_stock;
- $this->sellby = $this->db->jdate($obj->sellby ? $obj->sellby : $obj->oldsellby);
- $this->eatby = $this->db->jdate($obj->eatby ? $obj->eatby : $obj->oldeatby);
- $this->batch = $obj->batch;
- $this->qty = $obj->qty;
- $this->import_key = $obj->import_key;
- $this->warehouseid = $obj->fk_entrepot;
- $this->fk_product = $obj->fk_product;
- }
- $this->db->free($resql);
- return 1;
- } else {
- $this->error = "Error ".$this->db->lasterror();
- return -1;
- }
- }
- /**
- * Update object into database
- *
- * @param User $user User that modifies
- * @param int $notrigger 0=launch triggers after, 1=disable triggers
- * @return int <0 if KO, >0 if OK
- */
- public function update($user = null, $notrigger = 0)
- {
- global $conf, $langs;
- $error = 0;
- // Clean parameters
- $this->cleanParam();
- // TODO Check qty is ok for stock move. Negative may not be allowed.
- if ($this->qty < 0) {
- }
- // Update request
- $sql = "UPDATE ".$this->db->prefix().self::$_table_element." SET";
- $sql .= " fk_product_stock=".(isset($this->fk_product_stock) ? $this->fk_product_stock : "null").",";
- $sql .= " sellby=".(dol_strlen($this->sellby) != 0 ? "'".$this->db->idate($this->sellby)."'" : 'null').",";
- $sql .= " eatby=".(dol_strlen($this->eatby) != 0 ? "'".$this->db->idate($this->eatby)."'" : 'null').",";
- $sql .= " batch=".(isset($this->batch) ? "'".$this->db->escape($this->batch)."'" : "null").",";
- $sql .= " qty=".(isset($this->qty) ? $this->qty : "null").",";
- $sql .= " import_key=".(isset($this->import_key) ? "'".$this->db->escape($this->import_key)."'" : "null")."";
- $sql .= " WHERE rowid=".((int) $this->id);
- $this->db->begin();
- dol_syslog(get_class($this)."::update", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $error++; $this->errors[] = "Error ".$this->db->lasterror();
- }
- // Commit or rollback
- if ($error) {
- foreach ($this->errors as $errmsg) {
- dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
- $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
- }
- $this->db->rollback();
- return -1 * $error;
- } else {
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Delete object in database
- *
- * @param User $user User that deletes
- * @param int $notrigger 0=launch triggers after, 1=disable triggers
- * @return int <0 if KO, >0 if OK
- */
- public function delete($user, $notrigger = 0)
- {
- global $conf, $langs;
- $error = 0;
- $this->db->begin();
- if (!$error) {
- $sql = "DELETE FROM ".$this->db->prefix().self::$_table_element."";
- $sql .= " WHERE rowid=".((int) $this->id);
- dol_syslog(get_class($this)."::delete", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $error++; $this->errors[] = "Error ".$this->db->lasterror();
- }
- }
- // Commit or rollback
- if ($error) {
- foreach ($this->errors as $errmsg) {
- dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
- $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
- }
- $this->db->rollback();
- return -1 * $error;
- } else {
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Load an object from its id and create a new one in database
- *
- * @param User $user User making the clone
- * @param int $fromid Id of object to clone
- * @return int New id of clone
- */
- public function createFromClone(User $user, $fromid)
- {
- $error = 0;
- $object = new Productbatch($this->db);
- $this->db->begin();
- // Load source object
- $object->fetch($fromid);
- $object->id = 0;
- $object->statut = 0;
- // Clear fields
- // ...
- // Create clone
- $object->context['createfromclone'] = 'createfromclone';
- $result = $object->create($user);
- // Other options
- if ($result < 0) {
- $this->error = $object->error;
- $this->errors = array_merge($this->errors, $object->errors);
- $error++;
- }
- if (!$error) {
- }
- unset($object->context['createfromclone']);
- // End
- if (!$error) {
- $this->db->commit();
- return $object->id;
- } else {
- $this->db->rollback();
- return -1;
- }
- }
- /**
- * Initialise object with example values
- * Id must be 0 if object instance is a specimen
- *
- * @return void
- */
- public function initAsSpecimen()
- {
- $this->id = 0;
- $this->tms = '';
- $this->fk_product_stock = '';
- $this->sellby = '';
- $this->eatby = '';
- $this->batch = '';
- $this->import_key = '';
- }
- /**
- * Clean fields (triming)
- *
- * @return void
- */
- private function cleanParam()
- {
- if (isset($this->fk_product_stock)) {
- $this->fk_product_stock = (int) trim($this->fk_product_stock);
- }
- if (isset($this->batch)) {
- $this->batch = trim($this->batch);
- }
- if (isset($this->qty)) {
- $this->qty = (float) trim($this->qty);
- }
- if (isset($this->import_key)) {
- $this->import_key = trim($this->import_key);
- }
- }
- /**
- * Find first detail record that match eather eat-by or sell-by or batch within given warehouse
- *
- * @param int $fk_product_stock id product_stock for objet
- * @param integer $eatby eat-by date for object - deprecated: a search must be done on batch number
- * @param integer $sellby sell-by date for object - deprecated: a search must be done on batch number
- * @param string $batch_number batch number for object
- * @return int <0 if KO, >0 if OK
- */
- public function find($fk_product_stock = 0, $eatby = '', $sellby = '', $batch_number = '')
- {
- global $langs;
- $where = array();
- $sql = "SELECT";
- $sql .= " t.rowid,";
- $sql .= " t.tms,";
- $sql .= " t.fk_product_stock,";
- $sql .= " t.sellby,"; // deprecated
- $sql .= " t.eatby,"; // deprecated
- $sql .= " t.batch,";
- $sql .= " t.qty,";
- $sql .= " t.import_key";
- $sql .= " FROM ".$this->db->prefix().self::$_table_element." as t";
- $sql .= " WHERE fk_product_stock=".((int) $fk_product_stock);
- if (!empty($eatby)) {
- array_push($where, " eatby = '".$this->db->idate($eatby)."'"); // deprecated
- }
- if (!empty($sellby)) {
- array_push($where, " sellby = '".$this->db->idate($sellby)."'"); // deprecated
- }
- if (!empty($batch_number)) {
- $sql .= " AND batch = '".$this->db->escape($batch_number)."'";
- }
- if (!empty($where)) {
- $sql .= " AND (".implode(" OR ", $where).")";
- }
- dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- if ($this->db->num_rows($resql)) {
- $obj = $this->db->fetch_object($resql);
- $this->id = $obj->rowid;
- $this->tms = $this->db->jdate($obj->tms);
- $this->fk_product_stock = $obj->fk_product_stock;
- $this->sellby = $this->db->jdate($obj->sellby);
- $this->eatby = $this->db->jdate($obj->eatby);
- $this->batch = $obj->batch;
- $this->qty = $obj->qty;
- $this->import_key = $obj->import_key;
- }
- $this->db->free($resql);
- return 1;
- } else {
- $this->error = "Error ".$this->db->lasterror();
- return -1;
- }
- }
- /**
- * Return all batch detail records for a given product and warehouse
- *
- * @param DoliDB $dbs database object
- * @param int $fk_product_stock id product_stock for objet
- * @param int $with_qty 1 = doesn't return line with 0 quantity
- * @param int $fk_product If set to a product id, get eatby and sellby from table llx_product_lot
- * @return array <0 if KO, array of batch
- */
- public static function findAll($dbs, $fk_product_stock, $with_qty = 0, $fk_product = 0)
- {
- global $conf;
- $ret = array();
- $sql = "SELECT";
- $sql .= " t.rowid,";
- $sql .= " t.tms,";
- $sql .= " t.fk_product_stock,";
- $sql .= " t.sellby as oldsellby,"; // deprecated but may not be migrated into new table
- $sql .= " t.eatby as oldeatby,"; // deprecated but may not be migrated into new table
- $sql .= " t.batch,";
- $sql .= " t.qty,";
- $sql .= " t.import_key";
- if ($fk_product > 0) {
- $sql .= ", pl.rowid as lotid, pl.eatby as eatby, pl.sellby as sellby";
- // TODO May add extrafields to ?
- }
- $sql .= " FROM ".$dbs->prefix()."product_batch as t";
- if ($fk_product > 0) {
- $sql .= " LEFT JOIN ".$dbs->prefix()."product_lot as pl ON pl.fk_product = ".((int) $fk_product)." AND pl.batch = t.batch";
- // TODO May add extrafields to ?
- }
- $sql .= " WHERE fk_product_stock=".((int) $fk_product_stock);
- if ($with_qty) {
- $sql .= " AND t.qty <> 0";
- }
- $sql .= " ORDER BY ";
- // TODO : use product lifo and fifo when product will implement it
- if ($fk_product > 0) { $sql .= "pl.eatby ASC, pl.sellby ASC, "; }
- $sql .= "t.eatby ASC, t.sellby ASC ";
- $sql .= ", t.qty ".(!empty($conf->global->DO_NOT_TRY_TO_DEFRAGMENT_STOCKS_WAREHOUSE)?'DESC':'ASC'); // Note : qty ASC is important for expedition card, to avoid stock fragmentation
- dol_syslog("productbatch::findAll", LOG_DEBUG);
- $resql = $dbs->query($sql);
- if ($resql) {
- $num = $dbs->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $obj = $dbs->fetch_object($resql);
- $tmp = new Productbatch($dbs);
- $tmp->id = $obj->rowid;
- $tmp->lotid = $obj->lotid;
- $tmp->tms = $dbs->jdate($obj->tms);
- $tmp->fk_product_stock = $obj->fk_product_stock;
- $tmp->sellby = $dbs->jdate($obj->sellby ? $obj->sellby : $obj->oldsellby);
- $tmp->eatby = $dbs->jdate($obj->eatby ? $obj->eatby : $obj->oldeatby);
- $tmp->batch = $obj->batch;
- $tmp->qty = $obj->qty;
- $tmp->import_key = $obj->import_key;
- $ret[$tmp->batch] = $tmp; // $ret is for a $fk_product_stock and unique key is on $fk_product_stock+batch
- $i++;
- }
- $dbs->free($resql);
- return $ret;
- } else {
- $error = "Error ".$dbs->lasterror();
- return -1;
- }
- }
- /**
- * Return all batch for a product and a warehouse
- *
- * @param int $fk_product Id of product
- * @param int $fk_warehouse Id of warehouse
- * @param int $qty_min [=NULL] Minimum quantity
- * @param string $sortfield [=NULL] List of sort fields, separated by comma. Example: 't1.fielda,t2.fieldb'
- * @param string $sortorder [=NULL] Sort order, separated by comma. Example: 'ASC,DESC';
- * @return int|array <0 if KO, array of batch
- *
- * @throws Exception
- */
- public function findAllForProduct($fk_product, $fk_warehouse = 0, $qty_min = null, $sortfield = null, $sortorder = null)
- {
- $productBatchList = array();
- dol_syslog(__METHOD__.' fk_product='.$fk_product.', fk_warehouse='.$fk_warehouse.', qty_min='.$qty_min.', sortfield='.$sortfield.', sortorder='.$sortorder, LOG_DEBUG);
- $sql = "SELECT";
- $sql .= " pl.rowid";
- $sql .= ", pl.fk_product";
- $sql .= ", pl.batch";
- $sql .= ", pl.sellby";
- $sql .= ", pl.eatby";
- $sql .= ", pb.qty";
- $sql .= " FROM ".$this->db->prefix()."product_lot as pl";
- $sql .= " LEFT JOIN ".$this->db->prefix()."product as p ON p.rowid = pl.fk_product";
- $sql .= " LEFT JOIN ".$this->db->prefix()."product_batch AS pb ON pl.batch = pb.batch";
- $sql .= " LEFT JOIN ".$this->db->prefix()."product_stock AS ps ON ps.rowid = pb.fk_product_stock";
- $sql .= " WHERE p.entity IN (".getEntity('product').")";
- $sql .= " AND pl.fk_product = ".((int) $fk_product);
- if ($fk_warehouse > 0) {
- $sql .= " AND ps.fk_entrepot = ".((int) $fk_warehouse);
- }
- if ($qty_min !== null) {
- $sql .= " AND pb.qty > ".((float) price2num($qty_min, 'MS'));
- }
- $sql .= $this->db->order($sortfield, $sortorder);
- $resql = $this->db->query($sql);
- if ($resql) {
- while ($obj = $this->db->fetch_object($resql)) {
- $productBatch = new self($this->db);
- $productBatch->id = $obj->rowid;
- $productBatch->fk_product = $obj->fk_product;
- $productBatch->batch = $obj->batch;
- $productBatch->eatby = $this->db->jdate($obj->eatby);
- $productBatch->sellby = $this->db->jdate($obj->sellby);
- $productBatch->qty = $obj->qty;
- $productBatchList[] = $productBatch;
- }
- $this->db->free($resql);
- return $productBatchList;
- } else {
- dol_syslog(__METHOD__.' Error: '.$this->db->lasterror(), LOG_ERR);
- return -1;
- }
- }
- }
|