This commit is contained in:
Laurent Destailleur 2010-12-13 11:42:03 +00:00
parent 0d590a54ed
commit 81183e5ef0
2 changed files with 14 additions and 7 deletions

View File

@ -830,12 +830,12 @@ class pdf_propale_azur extends ModelePDFPropales
}
/*
* \brief Affiche en-tete propale
* \param pdf Objet PDF
* \param object Objet propale
* \param showaddress 0=no, 1=yes
* \param outputlang Objet lang cible
/**
* Show header of document
* @param pdf Object PDF
* @param object Object commercial proposal
* @param showaddress 0=no, 1=yes
* @param outputlangs Object lang for output
*/
function _pagehead(&$pdf, $object, $showaddress=1, $outputlangs)
{

View File

@ -464,7 +464,7 @@ class pdf_propale_jaune extends ModelePDFPropales
$pdf->SetFont('','',11);
$pdf->SetXY(10,$tab_top);
$pdf->MultiCell(20,10,$outputlangs->transnoentities("Ref"),0,'C',1);
$pdf->MultiCell(20,10,$outputlangs->transnoentities("Ref"),0,'L',1);
$pdf->SetXY(30,$tab_top);
$pdf->MultiCell(102,10,$outputlangs->transnoentities("Designation"),0,'L',1);
@ -492,6 +492,13 @@ class pdf_propale_jaune extends ModelePDFPropales
}
/**
* Show header of document
* @param pdf Object PDF
* @param object Object commercial proposal
* @param showaddress 0=no, 1=yes
* @param outputlangs Object lang for output
*/
function _pagehead(&$pdf, $object, $showadress=1, $outputlangs)
{
global $conf,$langs;