Standardize and update code

This commit is contained in:
Philippe GRAND 2018-10-12 09:30:53 +02:00
parent 849a1a9400
commit 357173f0ef
6 changed files with 56 additions and 0 deletions

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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;

View File

@ -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;

View File

@ -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;