Initialise à zéro this->projetid

This commit is contained in:
Rodolphe Quiedeville 2003-06-21 15:22:27 +00:00
parent 4d2e5ff5f2
commit 8ce0271ebd

View File

@ -47,7 +47,8 @@ class Facture {
* *
*/ */
Function Facture($DB, $soc_idp="", $facid="") { Function Facture($DB, $soc_idp="", $facid="")
{
$this->db = $DB ; $this->db = $DB ;
$this->socidp = $soc_idp; $this->socidp = $soc_idp;
$this->products = array(); $this->products = array();
@ -57,6 +58,7 @@ class Facture {
$this->tva = 0; $this->tva = 0;
$this->total = 0; $this->total = 0;
$this->propalid = 0; $this->propalid = 0;
$this->projetid = 0;
$this->id = $facid; $this->id = $facid;
} }
/* /*