remove deprecated libelle

This commit is contained in:
Frédéric FRANCE 2020-04-23 00:13:51 +02:00
parent bc4726c7c3
commit 3541020912
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1

View File

@ -41,7 +41,14 @@ class MouvementStock extends CommonObject
public $table_element = 'stock_mouvement';
/**
* @var int ID product
*/
public $product_id;
/**
* @var int ID warehouse
*/
public $warehouse_id;
public $qty;
@ -58,7 +65,7 @@ class MouvementStock extends CommonObject
public $price;
/**
* @var int ID
* @var int ID user author
*/
public $fk_user_author;
@ -894,13 +901,13 @@ class MouvementStock extends CommonObject
}
else
{
dol_syslog(get_class($this)."::createBatch array param dluo must contain at least key fk_product_stock".$error, LOG_ERR);
dol_syslog(get_class($this)."::createBatch array param dluo must contain at least key fk_product_stock", LOG_ERR);
$result = -1;
}
}
else
{
dol_syslog(get_class($this)."::createBatch error invalid param dluo".$error, LOG_ERR);
dol_syslog(get_class($this)."::createBatch error invalid param dluo", LOG_ERR);
$result = -1;
}