From 1c27e89d650f94e09496ce8650938638d2565f2e Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Sun, 1 Mar 2026 22:57:42 +0000 Subject: [PATCH] a --- Controleur/ControleurAjaxavenantincorporation.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Controleur/ControleurAjaxavenantincorporation.php b/Controleur/ControleurAjaxavenantincorporation.php index 6962a7d2..152f4b17 100644 --- a/Controleur/ControleurAjaxavenantincorporation.php +++ b/Controleur/ControleurAjaxavenantincorporation.php @@ -67,6 +67,8 @@ We are pleased to confirm that they have been incorporated into the current poli $idAdherent = $adherent['idAdherent']; $idEntetecontrat = $adherent['idEntetecontrat']; + $pdf->SetFont('Arial','BU', 15); + $pdf->Cell(50,$ht,convertirc("Family : ".$adherent['nomAdherent']),0,1,'L',false); $listeassures = $this->avenant->getListeAssuresAvenantAdherent($idAvenant, $idAdherent); @@ -99,9 +101,6 @@ We are pleased to confirm that they have been incorporated into the current poli $pdf->Cell(20,$ht,format_N($assure['primeTtc']),1,1,'C',false); } - $pdf->SetFont('Arial','BU', 15); - $pdf->Cell(50,$ht,convertirc("LISTE DES GARANTIES"),0,1,'L',false); - $garanties = $this->avenant->getListeGarantieAvenantAdherent($idAdherent, $idEntetecontrat); $pdf->SetFont('Arial','B', 8); @@ -112,8 +111,8 @@ We are pleased to confirm that they have been incorporated into the current poli $pdf->SetFont('Arial','', 8); foreach ($garanties as $garantie) { - $pdf->Cell(20,$ht,convertirc($garantie['garantieEng']),1,0,'C',false); - $pdf->Cell(20,$ht,format_N($garantie['plafond']),1,1,'C',false); + $pdf->Cell(100,$ht,convertirc($garantie['garantieEng']),1,0,'C',false); + $pdf->Cell(90,$ht,format_N($garantie['plafond']),1,1,'C',false); } }