1 2 3 4 5 6 7 8 9 10 11
|
$pdf->Cell(120, 10, "Montant total HT", 0, 0, 'R');
$pdf->Cell(30, 10, "", 0, 0, 'L');
$pdf->Cell(30, 10, number_format($c_tot, 2, ',', ' '), 1, 1, 'R');
$pdf->Cell(120, 10, "TVA : 10%", 0, 0, 'R');
$pdf->Cell(30, 10, "", 0, 0, 'L');
$pdf->Cell(30, 10, number_format($c_tot / 5, 2, ',', ' '), 1, 1, 'R');
$pdf->Cell(120, 10, "Montant total TTC", 0, 0, 'R');
$pdf->Cell(30, 10, "", 0, 0, 'L');
$pdf->Cell(30, 10, number_format($c_tot + $c_tot / 5, 2, ',', ' '), 1, 1, 'R');
$pdf->Cell(35, 30, "", 0, 1, 'R'); |
Partager