Standardize code
This commit is contained in:
parent
94df8d297d
commit
da560289e3
@ -86,6 +86,10 @@ class AccountingAccount extends CommonObject
|
|||||||
public $account_number;
|
public $account_number;
|
||||||
public $account_parent;
|
public $account_parent;
|
||||||
public $account_category;
|
public $account_category;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Status
|
||||||
|
*/
|
||||||
public $status;
|
public $status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -135,6 +135,10 @@ class Asset extends CommonObject
|
|||||||
public $fk_user_creat;
|
public $fk_user_creat;
|
||||||
public $fk_user_modif;
|
public $fk_user_modif;
|
||||||
public $import_key;
|
public $import_key;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Status
|
||||||
|
*/
|
||||||
public $status;
|
public $status;
|
||||||
|
|
||||||
// If this object has a subtable with lines
|
// If this object has a subtable with lines
|
||||||
|
|||||||
@ -92,7 +92,12 @@ class ActionCommReminder extends CommonObject
|
|||||||
|
|
||||||
public $offsetvalue;
|
public $offsetvalue;
|
||||||
public $offsetunit;
|
public $offsetunit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Status
|
||||||
|
*/
|
||||||
public $status;
|
public $status;
|
||||||
|
|
||||||
// END MODULEBUILDER PROPERTIES
|
// END MODULEBUILDER PROPERTIES
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -76,7 +76,12 @@ class Cronjob extends CommonObject
|
|||||||
public $lastoutput;
|
public $lastoutput;
|
||||||
public $unitfrequency;
|
public $unitfrequency;
|
||||||
public $frequency;
|
public $frequency;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Status
|
||||||
|
*/
|
||||||
public $status;
|
public $status;
|
||||||
|
|
||||||
public $processing;
|
public $processing;
|
||||||
public $fk_user_author;
|
public $fk_user_author;
|
||||||
public $fk_user_mod;
|
public $fk_user_mod;
|
||||||
@ -1379,7 +1384,12 @@ class Cronjobline
|
|||||||
public $lastoutput;
|
public $lastoutput;
|
||||||
public $unitfrequency;
|
public $unitfrequency;
|
||||||
public $frequency;
|
public $frequency;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Status
|
||||||
|
*/
|
||||||
public $status;
|
public $status;
|
||||||
|
|
||||||
public $fk_user_author;
|
public $fk_user_author;
|
||||||
public $fk_user_mod;
|
public $fk_user_mod;
|
||||||
public $note;
|
public $note;
|
||||||
|
|||||||
@ -38,7 +38,11 @@ class Productcustomerprice extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $table_element = 'product_customer_price';
|
public $table_element = 'product_customer_price';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Entity
|
||||||
|
*/
|
||||||
public $entity;
|
public $entity;
|
||||||
|
|
||||||
public $datec = '';
|
public $datec = '';
|
||||||
public $tms = '';
|
public $tms = '';
|
||||||
public $fk_product;
|
public $fk_product;
|
||||||
@ -976,7 +980,11 @@ class PriceByCustomerLine
|
|||||||
*/
|
*/
|
||||||
public $id;
|
public $id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Entity
|
||||||
|
*/
|
||||||
public $entity;
|
public $entity;
|
||||||
|
|
||||||
public $datec = '';
|
public $datec = '';
|
||||||
public $tms = '';
|
public $tms = '';
|
||||||
public $fk_product;
|
public $fk_product;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user