prenom nom instead of nom prenom in facture and devis

This commit is contained in:
Tiavina 2025-01-20 13:39:11 +03:00
parent bc6d3be61f
commit 65470424f0
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ class DevisPdfHandler extends FPDF {
$this->SetFont('Arial', '', 12);
$this->Cell(0, 7, FileExportHelpers::FormatTextForExport($this->devisData['configuration']->entreprise), 0, 0);
$this->Cell(0, 7, FileExportHelpers::FormatTextForExport(
$this->devisData['client_nom']. ' '. $this->devisData['client_prenom']),
$this->devisData['client_prenom']. ' '. $this->devisData['client_nom']),
0, 1,'R');
$this->Cell(0, 7, FileExportHelpers::FormatTextForExport($this->devisData['configuration_adresse']), 0, 0);
$this->Cell(0, 7, trim(FileExportHelpers::FormatTextForExport($this->devisData['client_real_adress'])), 0, 1,'R');

View File

@ -95,7 +95,7 @@ class InvoicePdfHandler extends FPDF {
$this->SetFont('Arial', '', 12);
$this->Cell(0, 7, FileExportHelpers::FormatTextForExport($this->factureData['configuration']->entreprise), 0, 0);
$this->Cell(0, 7, FileExportHelpers::FormatTextForExport(
$this->factureData['client_nom']. ' '.$this->factureData['client_prenom']),
$this->factureData['client_prenom']. ' '.$this->factureData['client_nom']),
0, 1,'R');
$this->Cell(0, 7, FileExportHelpers::FormatTextForExport($this->factureData['configuration_adresse']), 0, 0);
$this->Cell(0, 7, trim(FileExportHelpers::FormatTextForExport($this->factureData['client_real_adress'])), 0, 1,'R');