Standardize and update code

This commit is contained in:
Philippe GRAND 2018-10-12 09:26:58 +02:00
parent c264688635
commit 849a1a9400
5 changed files with 44 additions and 7 deletions

View File

@ -130,8 +130,17 @@ class MyObject extends CommonObject
public $date_creation;
public $tms;
/**
* @var int ID
*/
public $fk_user_creat;
/**
* @var int ID
*/
public $fk_user_modif;
public $import_key;
// END MODULEBUILDER PROPERTIES

View File

@ -290,6 +290,9 @@ class Product extends CommonObject
public $oldcopy;
/**
* @var int ID
*/
public $fk_price_expression;
/* To store supplier price found */

View File

@ -37,13 +37,17 @@ class Productbatch extends CommonObject
private static $_table_element='product_batch'; //!< Name of table without prefix where object is stored
var $tms='';
var $fk_product_stock;
var $sellby='';
var $eatby='';
var $batch='';
var $qty;
public $tms='';
public $fk_product_stock;
public $sellby='';
public $eatby='';
public $batch='';
public $qty;
public $warehouseid;
/**
* @var int ID
*/
public $fk_product;

View File

@ -45,6 +45,10 @@ class Productcustomerprice extends CommonObject
public $datec = '';
public $tms = '';
/**
* @var int ID
*/
public $fk_product;
/**
@ -987,12 +991,16 @@ class PriceByCustomerLine
public $datec = '';
public $tms = '';
/**
* @var int ID
*/
public $fk_product;
/**
* @var int Thirdparty ID
*/
public $fk_soc;
public $fk_soc;
public $price;
public $price_ttc;

View File

@ -647,11 +647,24 @@ class PropalmergepdfproductLine
*/
public $id;
/**
* @var int ID
*/
public $fk_product;
public $file_name;
public $lang;
/**
* @var int ID
*/
public $fk_user_author;
/**
* @var int ID
*/
public $fk_user_mod;
public $datec='';
public $tms='';
public $import_key;