Standardize code
This commit is contained in:
parent
5583211246
commit
74c86f477c
@ -50,6 +50,9 @@ class Expedition extends CommonObject
|
||||
*/
|
||||
public $element="shipping";
|
||||
|
||||
/**
|
||||
* @var int Field with ID of parent key if this field has a parent
|
||||
*/
|
||||
public $fk_element="fk_expedition";
|
||||
|
||||
/**
|
||||
|
||||
@ -39,6 +39,9 @@ class ExpenseReportIk extends CoreObject
|
||||
*/
|
||||
public $table_element='expensereport_ik';
|
||||
|
||||
/**
|
||||
* @var int Field with ID of parent key if this field has a parent
|
||||
*/
|
||||
public $fk_element='fk_expense_ik';
|
||||
|
||||
/**
|
||||
|
||||
@ -33,12 +33,15 @@ class ExpenseReportRule extends CoreObject
|
||||
* @var string ID to identify managed object
|
||||
*/
|
||||
public $element='expenserule';
|
||||
|
||||
|
||||
/**
|
||||
* @var string Name of table without prefix where object is stored
|
||||
*/
|
||||
public $table_element='expensereport_rules';
|
||||
|
||||
|
||||
/**
|
||||
* @var int Field with ID of parent key if this field has a parent
|
||||
*/
|
||||
public $fk_element='fk_expense_rule';
|
||||
|
||||
/**
|
||||
|
||||
@ -43,7 +43,12 @@ class Holiday extends CommonObject
|
||||
public $table_element='holiday';
|
||||
|
||||
public $ismultientitymanaged = 0; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
|
||||
|
||||
/**
|
||||
* @var int Field with ID of parent key if this field has a parent
|
||||
*/
|
||||
public $fk_element = 'fk_holiday';
|
||||
|
||||
public $picto = 'holiday';
|
||||
|
||||
/**
|
||||
|
||||
@ -64,7 +64,12 @@ class User extends CommonObject
|
||||
public $skype;
|
||||
public $job; // job position
|
||||
public $signature;
|
||||
|
||||
/**
|
||||
* @var string Address
|
||||
*/
|
||||
public $address;
|
||||
|
||||
public $zip;
|
||||
public $town;
|
||||
public $state_id; // The state/department
|
||||
|
||||
Loading…
Reference in New Issue
Block a user