2
0
forked from Wavyzz/dolibarr

Dbut ajout de la configuration du module FCKeditor

Modification des modles azur (propale), einstein (commande) et crabe (facture) pour afficher la description des produits avec la fonction writeHTMLCell lorsqu'elles ont ts cres avec FCKeditor.
Passage du module FCKEditor en statut "experimental" pour avoir un retour utilisateur
This commit is contained in:
Regis Houssin
2006-07-21 13:43:27 +00:00
parent 6574b49ad9
commit 2304a8cc2d
9 changed files with 67 additions and 13 deletions

View File

@@ -253,8 +253,15 @@ class pdf_einstein extends ModelePDFCommandes
$pdf->SetFont('Arial','', 9); // Dans boucle pour g<>rer multi-page
$pdf->SetXY ($this->posxdesc-1, $curY);
$pdf->MultiCell(108, 4, $libelleproduitservice, 0, 'J');
if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC)
{
$pdf->writeHTMLCell(108, 4, $this->posxdesc-1, $curY, $libelleproduitservice, 0, 1);
}
else
{
$pdf->SetXY ($this->posxdesc-1, $curY);
$pdf->MultiCell(108, 4, $libelleproduitservice, 0, 'J');
}
$nexY = $pdf->GetY();