Standardize and update code

This commit is contained in:
Philippe GRAND 2018-10-12 09:34:54 +02:00
parent 357173f0ef
commit 7e6cdfb5ec
4 changed files with 44 additions and 0 deletions

View File

@ -49,6 +49,9 @@ class Task extends CommonObject
public $picto = 'task'; public $picto = 'task';
protected $childtables=array('projet_task_time'); // To test if we can delete object protected $childtables=array('projet_task_time'); // To test if we can delete object
/**
* @var int ID parent task
*/
public $fk_task_parent; public $fk_task_parent;
/** /**
@ -67,10 +70,24 @@ class Task extends CommonObject
public $date_start; public $date_start;
public $date_end; public $date_end;
public $progress; public $progress;
/**
* @var int ID
*/
public $fk_statut; public $fk_statut;
public $priority; public $priority;
/**
* @var int ID
*/
public $fk_user_creat; public $fk_user_creat;
/**
* @var int ID
*/
public $fk_user_valid; public $fk_user_valid;
public $rang; public $rang;
public $timespent_min_date; public $timespent_min_date;

View File

@ -47,7 +47,12 @@ class Dolresource extends CommonObject
public $element_type; public $element_type;
public $busy; public $busy;
public $mandatory; public $mandatory;
/**
* @var int ID
*/
public $fk_user_create; public $fk_user_create;
public $type_label; public $type_label;
public $tms=''; public $tms='';

View File

@ -281,7 +281,12 @@ class Societe extends CommonObject
public $remise_supplier_percent; public $remise_supplier_percent;
public $mode_reglement_supplier_id; public $mode_reglement_supplier_id;
public $cond_reglement_supplier_id; public $cond_reglement_supplier_id;
/**
* @var int ID
*/
public $fk_prospectlevel; public $fk_prospectlevel;
public $name_bis; public $name_bis;
//Log data //Log data
@ -449,12 +454,20 @@ class Societe extends CommonObject
public $array_options; public $array_options;
// Incoterms // Incoterms
/**
* @var int ID
*/
public $fk_incoterms; public $fk_incoterms;
public $location_incoterms; public $location_incoterms;
public $libelle_incoterms; //Used into tooltip public $libelle_incoterms; //Used into tooltip
// Multicurrency // Multicurrency
/**
* @var int ID
*/
public $fk_multicurrency; public $fk_multicurrency;
public $multicurrency_code; public $multicurrency_code;

View File

@ -127,8 +127,17 @@ class SocieteAccount extends CommonObject
public $note_private; public $note_private;
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;
/** /**