From 85f6caa1830ec812e16947794893dc55505594a4 Mon Sep 17 00:00:00 2001 From: Tiavina Date: Tue, 21 Jan 2025 14:48:11 +0300 Subject: [PATCH] certificate format --- .../Certificate/PdfHandler/CareCertificatePdfHandler.php | 2 +- .../Certificate/PdfHandler/PacemakerCertificatePdfHandler.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gestion/lib/Service/Certificate/PdfHandler/CareCertificatePdfHandler.php b/gestion/lib/Service/Certificate/PdfHandler/CareCertificatePdfHandler.php index c3199a6..6a80a37 100644 --- a/gestion/lib/Service/Certificate/PdfHandler/CareCertificatePdfHandler.php +++ b/gestion/lib/Service/Certificate/PdfHandler/CareCertificatePdfHandler.php @@ -81,7 +81,7 @@ class CareCertificatePdfHandler extends FPDF { private function SetCareCertificateContent(){ $this->SetFont('ComicSans', '', 14); - $this->Cell(0,7,FileExportHelpers::FormatTextForExport('La Société '. $this->devisOfDefunt['configuration']->entreprise. ' habilitée sous le numéro ' . $this->devisOfDefunt['thanato_reference'] . ' certifie par '),0,1); + $this->Cell(0,7,FileExportHelpers::FormatTextForExport('La Société '. $this->devisOfDefunt['configuration']->entreprise. ' habilitée sous le numéro ' . $this->devisOfDefunt['thanato_reference'] . ', certifie par '),0,1); $this->Cell(0,7,FileExportHelpers::FormatTextForExport('la présente que : '),0,1); $this->SetFont('ComicSans', 'B', 14); $this->Cell(0,12, 'Mr/Mme ' . FileExportHelpers::FormatTextForExport($this->devisOfDefunt['thanato_nom'] . ' ' . $this->devisOfDefunt['thanato_prenom']),0,1); diff --git a/gestion/lib/Service/Certificate/PdfHandler/PacemakerCertificatePdfHandler.php b/gestion/lib/Service/Certificate/PdfHandler/PacemakerCertificatePdfHandler.php index b9f19c7..8c7fea0 100644 --- a/gestion/lib/Service/Certificate/PdfHandler/PacemakerCertificatePdfHandler.php +++ b/gestion/lib/Service/Certificate/PdfHandler/PacemakerCertificatePdfHandler.php @@ -81,7 +81,7 @@ class PacemakerCertificatePdfHandler extends FPDF { private function SetPacemakerCertificateContent(){ $this->SetFont('ComicSans', '', 14); - $this->MultiCell(0,7,FileExportHelpers::FormatTextForExport('La Société '. $this->devisOfDefunt['configuration']->entreprise. ' habilitée sous le numéro ' . $this->devisOfDefunt['thanato_reference'] . ' certifie par la présente que : ')); + $this->MultiCell(0,7,FileExportHelpers::FormatTextForExport('La Société '. $this->devisOfDefunt['configuration']->entreprise. ' habilitée sous le numéro ' . $this->devisOfDefunt['thanato_reference'] . ', certifie par la présente que : ')); $this->SetFont('ComicSans', 'B', 14); $this->Cell(0,12, 'Mr/Mme ' . FileExportHelpers::FormatTextForExport($this->devisOfDefunt['thanato_nom'] . ' ' . $this->devisOfDefunt['thanato_prenom']),0,1); $this->SetFont('ComicSans', '', 14);