set font to Comic Sans and size 7 for all price value in pdf
This commit is contained in:
parent
94a9b3488f
commit
9a4b221f77
@ -90,6 +90,8 @@ class InvoiceFunecapPdfHandler extends InvoiceGroupPdfHandler {
|
|||||||
$this->Cell($maxDescriptionWidth, 6, $productDescription);
|
$this->Cell($maxDescriptionWidth, 6, $productDescription);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->SetFont('ComicSans', '', 7);
|
||||||
|
|
||||||
$this->SetXY( 135,$yValue );
|
$this->SetXY( 135,$yValue );
|
||||||
$this->Cell(20, 6, number_format($valueHt,2,'.','').chr(128), 0, 0, 'C');
|
$this->Cell(20, 6, number_format($valueHt,2,'.','').chr(128), 0, 0, 'C');
|
||||||
|
|
||||||
|
|||||||
@ -294,6 +294,8 @@ class InvoiceGroupPdfHandler extends FPDF {
|
|||||||
$this->Cell($maxDescriptionWidth, 6, $productDescription);
|
$this->Cell($maxDescriptionWidth, 6, $productDescription);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->SetFont('ComicSans', '', 7);
|
||||||
|
|
||||||
$this->SetXY( 135,$yValue );
|
$this->SetXY( 135,$yValue );
|
||||||
$this->Cell(20, 6, number_format($valueHt,2,'.','').chr(128), 0, 0, 'C');
|
$this->Cell(20, 6, number_format($valueHt,2,'.','').chr(128), 0, 0, 'C');
|
||||||
|
|
||||||
|
|||||||
@ -297,6 +297,8 @@ class InvoicePdfHandler extends FPDF
|
|||||||
$this->SetXY(29, $yValue);
|
$this->SetXY(29, $yValue);
|
||||||
$this->MultiAlignCell(102, 6, utf8_decode(html_entity_decode($productDescription)), 0, '0',);
|
$this->MultiAlignCell(102, 6, utf8_decode(html_entity_decode($productDescription)), 0, '0',);
|
||||||
|
|
||||||
|
$this->SetFont('ComicSans', '', 7);
|
||||||
|
|
||||||
$this->SetXY(135, $yValue);
|
$this->SetXY(135, $yValue);
|
||||||
$this->Cell(20, 6, number_format($valueHt, 2, '.', '') . chr(128), 0, 0, 'C');
|
$this->Cell(20, 6, number_format($valueHt, 2, '.', '') . chr(128), 0, 0, 'C');
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user