diff --git a/src/Service/Pdf/ContratMigrationSiteconseilPdf.php b/src/Service/Pdf/ContratMigrationSiteconseilPdf.php index c5ee87e..127a0a0 100644 --- a/src/Service/Pdf/ContratMigrationSiteconseilPdf.php +++ b/src/Service/Pdf/ContratMigrationSiteconseilPdf.php @@ -139,11 +139,21 @@ class ContratMigrationSiteconseilPdf extends Fpdi $this->SetFont('Arial', 'B', 9); $this->Cell(0, 5, $this->enc('ET :'), 0, 1, 'L'); $this->Ln(2); - $this->SetFont('Arial', '', 9); - $this->MultiCell(0, 4, $this->enc( - $this->contrat->getRaisonSociale().', ' - .'joignable a l\'adresse email '.$this->contrat->getEmail().',' - ), 0, 'L'); + + $this->SetDrawColor(200, 200, 200); + $clientY = $this->GetY(); + $this->Rect(15, $clientY, 180, 14); + + $this->SetFont('Arial', 'B', 9); + $this->SetX(18); + $this->Cell(0, 5, $this->enc($this->contrat->getRaisonSociale()), 0, 1, 'L'); + $this->SetFont('Arial', '', 8); + $this->SetX(18); + $this->Cell(40, 4, 'Email :', 0, 0, 'L'); + $this->Cell(0, 4, $this->contrat->getEmail(), 0, 1, 'L'); + + $this->Ln(2); + $this->SetDrawColor(200, 200, 200); $this->SetFont('Arial', 'I', 9); $this->Cell(0, 5, $this->enc('Ci-apres denomme(e) "le Client",'), 0, 1, 'L'); $this->Ln(5);