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