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

View File

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

View File

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

View File

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

View File

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

View File

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