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