46 lines
1.1 KiB
PHP
Executable File
46 lines
1.1 KiB
PHP
Executable File
<?
|
|
|
|
|
|
|
|
//payment conditions
|
|
if(!empty($this->ecmpaymentcondition_text)) {
|
|
$pdf->Ln(4);
|
|
$pdf->SetFont('arialpl','','8');
|
|
$pdf->MultiCell(0,4,$this->ecmpaymentcondition_text,0,'L');
|
|
}
|
|
|
|
//delivery conditions
|
|
if(!empty($this->ecmdeliverycondition_text)) {
|
|
$pdf->Ln(4);
|
|
$pdf->SetFont('arialpl','','8');
|
|
$pdf->MultiCell(0,4,$this->ecmdeliverycondition_text,0,'L');
|
|
}
|
|
|
|
|
|
//footer text
|
|
|
|
$pdf->Ln(10);
|
|
|
|
$pdf->SetFont('arialpl','','10');
|
|
|
|
$pdf->MultiCell(0,4,$this->name,0,'J');
|
|
|
|
|
|
|
|
//header text
|
|
|
|
$pdf->Ln(10);
|
|
$pdf->SetFont('arialpl','','7');
|
|
$pdf->Cell(85,1,"...............................................................",0,0,'L',1);
|
|
$pdf->Cell(85,1,"...............................................................",0,0,'R',1);
|
|
$pdf->Ln(4);
|
|
$pdf->Cell(43,1,"wydal",0,0,'C',1);
|
|
$pdf->SetX(155);
|
|
$pdf->Cell(35,1,"przyjal",0,0,'C',1);
|
|
$pdf->Ln(20);
|
|
/*
|
|
$pdf->SetFont('arialpl','B','10');
|
|
|
|
$pdf->MultiCell(0,4,$this->ads_text,0,'J');
|
|
*/
|
|
?>
|