From c30b2df44482b1d8f3a1ed27da2b64309706bad0 Mon Sep 17 00:00:00 2001 From: Narindra ezway Date: Thu, 24 Apr 2025 14:20:00 +0300 Subject: [PATCH] fixe-facture-simple-startY-mainTable --- gestion/lib/Service/InvoicePdfHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gestion/lib/Service/InvoicePdfHandler.php b/gestion/lib/Service/InvoicePdfHandler.php index 7abd166..c21535c 100644 --- a/gestion/lib/Service/InvoicePdfHandler.php +++ b/gestion/lib/Service/InvoicePdfHandler.php @@ -338,7 +338,7 @@ class InvoicePdfHandler extends FPDF private function DrawBankAndTotalPriceInfo($totalPriceArray) { - $startOfYAfterMainTable = 239; + $startOfYAfterMainTable = 236; $this->SetY( $startOfYAfterMainTable); $this->SetFont('ComicSans', '', 8); $this->MultiCell(0,4,utf8_decode(html_entity_decode("Paiement à votre convenance par chèque à l'ordre de ". $this->factureData['configuration']->entreprise))); @@ -385,7 +385,7 @@ class InvoicePdfHandler extends FPDF public function SetFactureContent() { $this->AddPage(); - $this->SetMargins(3, 0, 3); + $this->SetMargins(2, 0, 3); $this->DrawInvoiceCompanyAndClientInfo(); $this->DrawInvoiceInfoTable(); $this->DrawArticlesTable();