1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| $pdf->SetFont('CenturyGothicB','B',10);
$pdf->Cell($w[0],6,float_format($quantite, $espace=' ', $nb=-1),'LR',0,'C');
$pdf->SetFont('CenturyGothic','',10);
$x = $pdf->getX();
$y = $pdf->getY();
$pdf->MultiCell($w[1],4,$desi,'LR','L',0);
$x2 = $pdf->getX();
$y2 = $pdf->getY();
$pdf->setX($x);
$pdf->setY($y);
$pdf->Cell(120+20);
$pdf->Cell($w[2],6,float_format($pu, $espace=' ', $nb=2),'LR',0,'C');
$pdf->Cell($w[3],6,float_format($pt, $espace=' ', $nb=2),'LR',0,'R');
$pdf->Ln();
$pdf->setY($y2); |