Merge pull request #15449 from frederic34/patch-8

doxygen
This commit is contained in:
Laurent Destailleur 2020-11-20 13:33:25 +01:00 committed by GitHub
commit 3313b15420
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,10 @@ class Fichinter extends CommonObject
*/ */
protected $table_ref_field = 'ref'; protected $table_ref_field = 'ref';
public $socid; // Id client /**
* @var int Thirdparty Id
*/
public $socid;
public $author; public $author;
@ -118,7 +121,14 @@ class Fichinter extends CommonObject
*/ */
public $datem; public $datem;
/**
* @var int duration
*/
public $duration; public $duration;
/**
* @var int status
*/
public $statut = 0; // 0=draft, 1=validated, 2=invoiced, 3=Terminate public $statut = 0; // 0=draft, 1=validated, 2=invoiced, 3=Terminate
/** /**
@ -127,17 +137,23 @@ class Fichinter extends CommonObject
public $description; public $description;
/** /**
* @var int ID * @var int Contract ID
*/ */
public $fk_contrat = 0; public $fk_contrat = 0;
/** /**
* @var int ID * @var int Project ID
*/ */
public $fk_project = 0; public $fk_project = 0;
/**
* @var array extraparams
*/
public $extraparams = array(); public $extraparams = array();
/**
* @var array lines
*/
public $lines = array(); public $lines = array();
/** /**
@ -328,8 +344,7 @@ class Fichinter extends CommonObject
// End call triggers // End call triggers
} }
if (!$error) if (!$error) {
{
$this->db->commit(); $this->db->commit();
return $this->id; return $this->id;
} else { } else {