Merge branch 'fixes/fix-facture-text-position' into staging

This commit is contained in:
Tiavina 2025-01-02 17:25:43 +03:00
commit 662f9a6b40

View File

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