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 $date_creation;
|
||||||
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;
|
||||||
// END MODULEBUILDER PROPERTIES
|
// END MODULEBUILDER PROPERTIES
|
||||||
|
|
||||||
|
|||||||
@ -290,6 +290,9 @@ class Product extends CommonObject
|
|||||||
|
|
||||||
public $oldcopy;
|
public $oldcopy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_price_expression;
|
public $fk_price_expression;
|
||||||
|
|
||||||
/* To store supplier price found */
|
/* 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
|
private static $_table_element='product_batch'; //!< Name of table without prefix where object is stored
|
||||||
|
|
||||||
var $tms='';
|
public $tms='';
|
||||||
var $fk_product_stock;
|
public $fk_product_stock;
|
||||||
var $sellby='';
|
public $sellby='';
|
||||||
var $eatby='';
|
public $eatby='';
|
||||||
var $batch='';
|
public $batch='';
|
||||||
var $qty;
|
public $qty;
|
||||||
public $warehouseid;
|
public $warehouseid;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_product;
|
public $fk_product;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -45,6 +45,10 @@ class Productcustomerprice extends CommonObject
|
|||||||
|
|
||||||
public $datec = '';
|
public $datec = '';
|
||||||
public $tms = '';
|
public $tms = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_product;
|
public $fk_product;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -987,12 +991,16 @@ class PriceByCustomerLine
|
|||||||
|
|
||||||
public $datec = '';
|
public $datec = '';
|
||||||
public $tms = '';
|
public $tms = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_product;
|
public $fk_product;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int Thirdparty ID
|
* @var int Thirdparty ID
|
||||||
*/
|
*/
|
||||||
public $fk_soc;
|
public $fk_soc;
|
||||||
|
|
||||||
public $price;
|
public $price;
|
||||||
public $price_ttc;
|
public $price_ttc;
|
||||||
|
|||||||
@ -647,11 +647,24 @@ class PropalmergepdfproductLine
|
|||||||
*/
|
*/
|
||||||
public $id;
|
public $id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_product;
|
public $fk_product;
|
||||||
|
|
||||||
public $file_name;
|
public $file_name;
|
||||||
public $lang;
|
public $lang;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_user_author;
|
public $fk_user_author;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_user_mod;
|
public $fk_user_mod;
|
||||||
|
|
||||||
public $datec='';
|
public $datec='';
|
||||||
public $tms='';
|
public $tms='';
|
||||||
public $import_key;
|
public $import_key;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user