Rcupration du contact facture

This commit is contained in:
Regis Houssin 2006-06-07 13:40:30 +00:00
parent 4527351d62
commit 85bf8d96c3

View File

@ -412,7 +412,7 @@ class Facture
}
}
/**
/**
* \brief Recupére l'objet client lié à la facture
*
*/
@ -422,6 +422,19 @@ class Facture
$client->fetch($this->socidp);
$this->client = $client;
}
/**
*
*
*/
function fetch_contact_facture($id)
{
$idcontact = $id;
$contact = new Contact($this->db);
$contact->fetch($idcontact);
$this->contact = $contact;
}
/**