35 lines
875 B
PHP
Executable File
35 lines
875 B
PHP
Executable File
<?php
|
|
$ht0 = 8;
|
|
$ht = 6;
|
|
$tp = 9;
|
|
|
|
require_once 'Enteteavenant.php';
|
|
|
|
// $corpsavenant = $this->editionpieceavenant_societe->get_edition_avenant_annulation();
|
|
$corpsavenant = $this->editionpieceavenant_societe->get_edition_avenant_annulation_emission();
|
|
|
|
// Un peu d'espace avant le dé but du corps
|
|
$pdf->Ln(5);
|
|
|
|
$pdf->SetFont('Arial','BIU', $tp);
|
|
|
|
$pdf->Cell(0,$ht0,convertirc(_("ANNULATION DE QUITTANCE")),0,1,'C',false);
|
|
|
|
$pdf->SetFont('Arial','', $tp);
|
|
|
|
$pdf->Ln(10);
|
|
|
|
$pdf->SetFont('Arial','', $tp);
|
|
|
|
$pdf->Cell(0,$ht0,convertirc("Cet avenant annulle les la facturation des avenant ci-dessous :"),0,1,'L',false);
|
|
$pdf->Cell(0,$ht0,convertirc("Motif : " . $corpsavenant['motifAvenant']),0,1,'L',false);
|
|
|
|
|
|
// Un peu d'espace avant le pied de page
|
|
$pdf->Ln(10);
|
|
|
|
// Piedavenant
|
|
require_once 'Piedavenant.php';
|
|
|
|
?>
|