Standardize and update code
This commit is contained in:
parent
849a1a9400
commit
357173f0ef
@ -60,7 +60,12 @@ class PriceGlobalVariableUpdater
|
||||
public $description;
|
||||
|
||||
public $parameters;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_variable;
|
||||
|
||||
public $update_interval; //!< Interval in mins
|
||||
public $next_update; //!< Next update timestamp
|
||||
public $last_status;
|
||||
|
||||
@ -114,7 +114,11 @@ class Inventory extends CommonObject
|
||||
*/
|
||||
public $entity;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_warehouse;
|
||||
|
||||
public $date_inventory;
|
||||
public $title;
|
||||
|
||||
@ -126,9 +130,22 @@ class Inventory extends CommonObject
|
||||
public $date_creation;
|
||||
public $date_validation;
|
||||
public $tms;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_user_creat;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_user_modif;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_user_valid;
|
||||
|
||||
public $import_key;
|
||||
// END MODULEBUILDER PROPERTIES
|
||||
|
||||
|
||||
@ -78,6 +78,10 @@ class Entrepot extends CommonObject
|
||||
//! Code Postal
|
||||
public $zip;
|
||||
public $town;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_parent;
|
||||
|
||||
// List of short language codes for status
|
||||
|
||||
@ -49,6 +49,10 @@ class MouvementStock extends CommonObject
|
||||
public $tms = '';
|
||||
public $datem = '';
|
||||
public $price;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_user_author;
|
||||
|
||||
/**
|
||||
@ -56,7 +60,11 @@ class MouvementStock extends CommonObject
|
||||
*/
|
||||
public $label;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_origin;
|
||||
|
||||
public $origintype;
|
||||
public $inventorycode;
|
||||
public $batch;
|
||||
|
||||
@ -63,14 +63,27 @@ class Productlot extends CommonObject
|
||||
*/
|
||||
public $entity;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_product;
|
||||
|
||||
public $batch;
|
||||
public $eatby = '';
|
||||
public $sellby = '';
|
||||
public $datec = '';
|
||||
public $tms = '';
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_user_creat;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_user_modif;
|
||||
|
||||
public $import_key;
|
||||
|
||||
|
||||
|
||||
@ -51,8 +51,17 @@ class ProductStockEntrepot extends CommonObject
|
||||
public $table_element = 'product_warehouse_properties';
|
||||
|
||||
public $tms = '';
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_product;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_entrepot;
|
||||
|
||||
public $seuil_stock_alerte;
|
||||
public $desiredstock;
|
||||
public $import_key;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user