Standardize and update code
This commit is contained in:
parent
c264688635
commit
849a1a9400
@ -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
|
||||
|
||||
|
||||
@ -290,6 +290,9 @@ class Product extends CommonObject
|
||||
|
||||
public $oldcopy;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $fk_price_expression;
|
||||
|
||||
/* To store supplier price found */
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user