2
0
forked from Wavyzz/dolibarr

Remove deprecated properties and use a method instead to get the full address string.

This commit is contained in:
Laurent Destailleur
2010-05-09 14:47:02 +00:00
parent 7823267380
commit fe8a652fe0
12 changed files with 53 additions and 49 deletions

View File

@@ -415,7 +415,7 @@ class pdf_edison extends ModelePDFCommandes
$pdf->SetXY($this->marge_gauche, $posy);
$pdf->SetFont('Arial','',8);
$pdf->MultiCell(80, 3, $outputlangs->convToOutputCharset($this->emetteur->adresse_full), 0, 'L', 0);
$pdf->MultiCell(80, 3, $outputlangs->convToOutputCharset($this->emetteur->getFullAddress()), 0, 'L', 0);
$posy=$pdf->GetY()+2;
}
}