add some comment

This commit is contained in:
Philippe GRAND 2019-11-01 10:42:14 +01:00
parent c851a9faff
commit 4fe3e49502
4 changed files with 26 additions and 1 deletions

View File

@ -87,7 +87,14 @@ class CashControl extends CommonObject
public $cheque;
public $card;
public $date_valid;
/**
* Creation date
* @var int
*/
public $date_creation;
public $date_modification;
const STATUS_DRAFT = 0;

View File

@ -61,7 +61,14 @@ class ChargeSociales extends CommonObject
public $amount;
public $paye;
public $periode;
/**
* Creation date
* @var int
*/
public $date_creation;
public $date_modification;
public $date_validation;

View File

@ -421,7 +421,12 @@ abstract class CommonObject
public $civility_id;
// Dates
public $date_creation; // Date creation
/**
* @var int Date of creation
*/
public $date_creation;
public $date_validation; // Date validation
public $date_modification; // Date last change (tms field)

View File

@ -105,7 +105,13 @@ class EmailSenderProfile extends CommonObject
public $label;
public $email;
/**
* @var int Date of creation
*/
public $date_creation;
public $tms;
//public $fk_user_creat;
//public $fk_user_modif;