Update entrepot.class.php

This commit is contained in:
Frédéric FRANCE 2019-11-26 20:20:46 +01:00 committed by GitHub
parent 28b70a5399
commit 6ea204bd73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,9 +53,13 @@ class Entrepot extends CommonObject
/** /**
* @var string Label * @var string Label
* @deprecated * @deprecated
* @see $label
*/ */
public $libelle; public $libelle;
/**
* @var string Label
*/
public $label; public $label;
/** /**
@ -64,6 +68,10 @@ class Entrepot extends CommonObject
public $description; public $description;
public $statut; public $statut;
/**
* @var string Place
*/
public $lieu; public $lieu;
/** /**
@ -82,11 +90,13 @@ class Entrepot extends CommonObject
public $town; public $town;
/** /**
* @var int ID * @var int ID of parent
*/ */
public $fk_parent; public $fk_parent;
// List of short language codes for status /**
* @var array List of short language codes for status
*/
public $statuts = array(); public $statuts = array();
/** /**