From 92c1c2d37d53b0213a51dc8020c95a63764eed1b Mon Sep 17 00:00:00 2001 From: Tiavina Date: Thu, 2 Jan 2025 17:25:25 +0300 Subject: [PATCH] client table on facture --- gestion/lib/Service/InvoicePdfHandler.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gestion/lib/Service/InvoicePdfHandler.php b/gestion/lib/Service/InvoicePdfHandler.php index c671efe..971fd2f 100644 --- a/gestion/lib/Service/InvoicePdfHandler.php +++ b/gestion/lib/Service/InvoicePdfHandler.php @@ -93,15 +93,15 @@ sera due sur présentation de justificatifs ( articles L.441-3 et L.441-6 du cod //facture infos $this->SetFont('Arial', 'B', 11); $this->Cell(30, 7, 'DATE', 1, 0, 'C'); - $this->Cell(30, 7, 'CLIENT', 1, 0, 'C'); - $this->Cell(30, 7, 'FACTURE', 1, 0, 'C'); - $this->Cell(30, 7, 'ECHEANCE', 1, 1, 'C'); + $this->Cell(70, 7, 'CLIENT', 1, 0, 'C'); + $this->Cell(40, 7, 'FACTURE', 1, 0, 'C'); + $this->Cell(40, 7, 'ECHEANCE', 1, 1, 'C'); $this->SetFont('Arial', '', 10); $this->Cell(30, 7, $this->factureData['date'], 1, 0, 'C'); - $this->Cell(30, 7, utf8_decode(html_entity_decode($this->factureData['client_nom'])), 1, 0, 'C'); - $this->Cell(30, 7, $this->factureData['num'], 1, 0, 'C'); - $this->Cell(30, 7, $this->factureData['date_paiement'], 1, 1, 'C'); + $this->Cell(70, 7, utf8_decode(html_entity_decode($this->factureData['client_nom'])), 1, 0, 'C'); + $this->Cell(40, 7, $this->factureData['num'], 1, 0, 'C'); + $this->Cell(40, 7, $this->factureData['date_paiement'], 1, 1, 'C'); $this->Ln(8);