Skip to content
Snippets Groups Projects
Commit 76417314 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

TCPDF compatibility

parent 6e26dae6
Branches
Tags
No related merge requests found
...@@ -998,7 +998,8 @@ class pdf_oursin extends ModelePDFFactures ...@@ -998,7 +998,8 @@ class pdf_oursin extends ModelePDFFactures
$pdf->SetTextColor(0,0,0); $pdf->SetTextColor(0,0,0);
$pdf->SetFont('','',10); $pdf->SetFont('','',10);
$titre = $outputlangs->transnoentities("AmountInCurrency",$outputlangs->transnoentitiesnoconv("Currency".$conf->monnaie)); $titre = $outputlangs->transnoentities("AmountInCurrency",$outputlangs->transnoentitiesnoconv("Currency".$conf->monnaie));
$pdf->Text(200 - $pdf->GetStringWidth($titre), 94, $titre); $pdf->SetXY($this->page_largeur - $this->marge_droite - ($pdf->GetStringWidth($titre) + 3), 91);
$pdf->MultiCell(($pdf->GetStringWidth($titre) + 3), 2, $titre);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment