add some comments

This commit is contained in:
Philippe GRAND 2019-03-21 15:06:14 +01:00
parent 96893315b5
commit 7988481688
2 changed files with 26 additions and 3 deletions

View File

@ -73,7 +73,12 @@ class DiscountAbsolute
*/
public $description;
public $datec; // Date creation
/**
* Date creation record (datec)
*
* @var integer
*/
public $datec;
/**
* @var int ID invoice line when a discount is used into an invoice line (for absolute discounts)

View File

@ -63,10 +63,28 @@ class Fiscalyear extends CommonObject
* @var string fiscal year label
*/
public $label;
/**
* Date start (date_start)
*
* @var integer
*/
public $date_start;
/**
* Date end (date_end)
*
* @var integer
*/
public $date_end;
public $datec;
/**
* Date creation record (datec)
*
* @var integer
*/
public $datec;
public $statut; // 0=open, 1=closed
/**