doxygen
This commit is contained in:
parent
772d401a64
commit
65e14617a0
@ -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 {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user