This commit is contained in:
KANE LAZENI 2026-03-01 22:57:42 +00:00
parent c1282a0e7e
commit 1c27e89d65

View File

@ -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);
}
}