Files
crm.e5.pl/modules/templates/EcmReceiptOuts/e5/subfooter.php
2024-04-27 09:23:34 +02:00

61 lines
2.2 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');
$pdf->Ln();
}*/
/*
if($this->type == "correct") {
$pdf->SetFont('arialpl','b','12');
$pdf->Ln(3);
$pdf->MultiCell(0,4,$mod_strings['LBL_PDF_DOCUMENT_CORRECT_DIFFERENCE']." ".format_number(abs(unformat_number($this->total) + unformat_number($this->ecminvoiceout->total))).' '.$this->currency_symbol);
$pdf->Ln(3);
}
*/
$pdf->Ln(10);
if($this->type=="correct"){
$pdf->SetFont('arialpl','','8');
$total=unformat_number($this->total) - unformat_number($this->ecminvoiceout->total);
if($total>0)$string=$mod_strings['LBL_PDF_TO_PAID'];
else $string=$mod_strings['LBL_PDF_TO_PAID_BACK'];
$pdf->Cell(30,4,$string,0,0,'L',1);
$pdf->SetFont('arialpl','B','8');
$pdf->Cell(30,4,format_number(abs($total)).' '.$this->currency_symbol,0,0,'L',1);
}
else {
$pdf->SetFont('arialpl','','8');
$total=$calc['total'];
$pdf->Cell(30,4,$mod_strings['LBL_PDF_TO_PAID'],0,0,'L',1);
$pdf->SetFont('arialpl','B','8');
$pdf->Cell(30,4,$total,0,0,'L',1);
}
$pdf->Ln(4);
$pdf->SetFont('arialpl','','8');
$pdf->Cell(30,4,$mod_strings['LBL_PDF_TOTAL_BY_WORD'],0,0,'L',1);
$pdf->SetFont('arialpl','B','8');
$pdf->Cell(150,4,$this->slowniePL($total),0,0,'L',1);
$pdf->Ln(20);
$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,$mod_strings['LBL_PDF_OWNER_SIGNATURE'],0,0,'C',1);
$pdf->SetX(155);
$pdf->Cell(35,1,$mod_strings['LBL_PDF_RECEIVER_SIGNATURE'],0,0,'C',1);$pdf->Ln(4);
$pdf->Cell(43,1,$this->setUser()->full_name,0,0,'C',1);
//footer text
/* $pdf->Ln(18);
$pdf->SetFont('arialpl','','8');
$pdf->MultiCell(0,4,$this->footer_text,0,'J');
//header text
$pdf->Ln(6);
$pdf->SetFont('arialpl','B','8');
$pdf->MultiCell(0,4,$this->ads_text,0,'J');
*/
?>