2
0
forked from Wavyzz/dolibarr

Fix: Si on utilise nom contact, on indique civilit et prnom

This commit is contained in:
Laurent Destailleur
2007-10-17 15:29:26 +00:00
parent 87f0880c22
commit 00c7bd5a7a
2 changed files with 2 additions and 4 deletions

View File

@@ -17,7 +17,6 @@
* or see http://www.gnu.org/
*
* $Id$
* $Source$
*/
/**
@@ -1039,7 +1038,7 @@ class pdf_crabe extends ModelePDFFactures
// Nom client
$pdf->SetXY(102,$posy+4);
$pdf->SetFont('Arial','',9);
$pdf->MultiCell(106,4, $object->contact->nom, 0, 'L');
$pdf->MultiCell(106,4, $object->contact->getFullName($outputlangs,1), 0, 'L');
// Caract<63>ristiques client
$carac_client=$object->contact->adresse;

View File

@@ -17,7 +17,6 @@
* or see http://www.gnu.org/
*
* $Id$
* $Source$
*/
/**
@@ -915,7 +914,7 @@ class pdf_propale_azur extends ModelePDFPropales
// Nom client
$pdf->SetXY(102,$posy+4);
$pdf->SetFont('Arial','',9);
$pdf->MultiCell(106,4, $object->contact->nom, 0, 'L');
$pdf->MultiCell(106,4, $object->contact->getFullName($outputlangs,1), 0, 'L');
// Caract<63>ristiques client
$carac_client=$object->contact->adresse;