Files
crm.e5.pl/modules/templates/EcmInvoiceOuts/e5/_subfooter_u.php

251 lines
8.5 KiB
PHP
Raw Normal View History

2024-04-27 09:23:34 +02:00
<?php
//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'] . '/' . $mod_strings2['LBL_PDF_DOCUMENT_CORRECT_DIFFERENCE'] . " " . format_number(abs(unformat_number($this->total) + unformat_number($this->ecminvoiceout->total))) . ' ' . $this->currency_symbol);
// $pdf->Ln(3);
//}
$pdf->writeHTML('</table>'); // fix background-color overflowing FROM table ... why ? //
if ($this->type == "correct") {
$qw = "SELECT price, ecmvat_value, quantity, ecminvoiceoutitem_id FROM ecminvoiceoutitems WHERE ecminvoiceout_id = '" . $this->id . "'";
$w = $GLOBALS['db']->query($qw);
while ($r = $GLOBALS['db']->fetchByAssoc($w)) {
$qrr = "SELECT price, quantity, ecmvat_value FROM ecminvoiceoutitems WHERE id = '" . $r['ecminvoiceoutitem_id'] . "'";
$rr_prepayment = $GLOBALS['db']->fetchByAssoc($GLOBALS['db']->query($qrr));
$total += $r['price'] * $r['quantity'] + round($r['price'] * $r['quantity'] * $r['ecmvat_value'] / 100, 2);
$total -= $rr_prepayment['price'] * $rr_prepayment['quantity'] + round($rr_prepayment['price'] * $rr_prepayment['quantity'] * $rr_prepayment['ecmvat_value'] / 100, 2);
}
$total -= $this->paid_val;
if ($total > 0) {
$string = $mod_strings['LBL_PDF_TO_PAID'] . '/' . $mod_strings2['LBL_PDF_TO_PAID'];
} else {
$string = $mod_strings['LBL_PDF_TO_PAID_BACK'] . '/' . $mod_strings2['LBL_PDF_TO_PAID_BACK'];
}
$total = format_number(abs($total));
$pdf->SetX(10);
$pdf->SetFont('arialpl', '', '8');
$pdf->Cell(50, 4, 'Razem do zapłaty:', 0, 0, 'L', 1);
$pdf->SetFont('arialpl', 'B', '8');
$pdf->Cell(30, 4, format_number($brutto) . ' ' . $this->currency_symbol, 0, 0, 'L', 1);
} else {
$total = 0;
$qw = "SELECT price, ecmvat_value, quantity, ecminvoiceoutitem_id FROM ecminvoiceoutitems WHERE ecminvoiceout_id = '" . $this->id . "'";
$w = $GLOBALS['db']->query($qw);
while ($r = $GLOBALS['db']->fetchByAssoc($w)) {
$total+=$r['price'] * $r['quantity'] + round($r['price'] * $r['quantity'] * $r['ecmvat_value'] / 100, 2);
}
$total-=floatval(str_replace(",", ".", str_replace(".", "", $this->discount)));
//$total -= $this->paid_val;
if ($total > 0) {
$string = $mod_strings['LBL_PDF_TO_PAID'] . '/' . $mod_strings2['LBL_PDF_TO_PAID'];
} else {
$string = $mod_strings['LBL_PDF_TO_PAID_BACK'] . '/' . $mod_strings2['LBL_PDF_TO_PAID_BACK'];
}
$total = format_number(abs($total));
$pdf->SetX(10);
$pdf->SetFont('arialpl', '', '8');
$pdf->Cell(50, 4, 'Razem do zapłaty/Total to pay:', 0, 0, 'L', 1);
$pdf->SetFont('arialpl', 'B', '8');
$pdf->Cell(30, 4, format_number($brutto) . ' ' . $this->currency_symbol, 0, 0, 'R', 1);
}
$pdf->Ln(4);
$pdf->SetFont('arialpl', '', '8');
if ($this->prepaid) {
// $pdf->Cell(50, 4, $mod_strings['LBL_PDF_PREPAID_DOCUMENTS'] . '/' . $mod_strings2['LBL_PDF_PREPAID_DOCUMENTS'] . ':', 0, 0, 'L', 1);
// $pdf->Cell(30, 4, implode(', ', $rr_prepayment), 0, 0, 'L', 1);
//
// $pdf->Ln(4);
$pdf->SetX(10);
$pdf->Cell(50, 4, $mod_strings['LBL_PDF_PREPAID'] . '/' . $mod_strings2['LBL_PDF_PREPAID'] . ':', 0, 0, 'L', 1);
$pdf->SetFont('arialpl', 'B', '8');
$pdf->Cell(30, 4, format_number($this->prepaid) . ' ' . $this->currency_symbol, 0, 0, 'R', 1);
$pdf->Ln(4);
}
//$pdf->Ln(4);
$pdf->SetX(10);
$pdf->SetFont('arialpl', '', '8');
$pdf->Cell(50, 4, $mod_strings['LBL_PDF_PAID'] . '/' . $mod_strings2['LBL_PDF_PAID'] . ':', 0, 0, 'L', 1);
$pdf->SetFont('arialpl', 'B', '8');
$pdf->Cell(30, 4, format_number($this->paid_val) . ' ' . $this->currency_symbol, 0, 0, 'R', 1);
if($this->paid_val > 0) {
$pdf->SetX(100);
$pdf->SetFont('arialpl', '', '8');
$pdf->WriteHtml($app_list_strings['payment_method_dom'][$this->payment_method_paid] . '/' . $lv['payment_method_dom'][$this->payment_method_paid]);
}
$pdf->Ln(4);
//if ($pdf->GetY() > 240) {
// $pdf->AddPage();
//}
$total -= ($this->paid_val);
if(($pleft = $brutto - $this->prepaid - $this->paid_val) > 0) {
$pdf->SetX(10);
$pdf->SetFont('arialpl', '', '8');
$pdf->Cell(50, 4, 'Pozostało do zapłaty/To pay:', 0, 0, 'L', 1);
$pdf->SetFont('arialpl', 'B', '8');
$pdf->Cell(30, 4, format_number($pleft). ' ' . $this->currency_symbol, 0, 0, 'R', 1);
$pdf->SetX(100);
$pdf->SetFont('arialpl', '', '8');
$pdf->WriteHtml(sprintf($mod_strings['LBL_PDF_PAYMENT_METHOD_PATTERN'], $this->payment_date_d, $this->payment_date, $app_list_strings['payment_method_dom'][$this->payment_method]));
$pdf->Ln(4);
$pdf->SetX(100);
$pdf->SetFont('arialpl', '', '8');
$pdf->WriteHtml(sprintf($mod_strings2['LBL_PDF_PAYMENT_METHOD_PATTERN'], $this->payment_date_d, $this->payment_date, $lv['payment_method_dom'][$this->payment_method]));
//echo '<pre>' . var_export($cx, true) . '</pre>';
//echo '<pre>' . var_export($cy, true) . '</pre>'; exit;
}
//$pdf->Ln(4);
//$pdf->SetFont('arialpl', '', '8');
//
//if (false == is_null($pc)) {
// $pdf->Cell(50, 4, $mod_strings['LBL_PDF_PAYMENT_METHOD'] . ':', 0, 0, 'L', 1);
// $pdf->Cell(50, 4, $pc->name ? : '-', 0, 0, 'L', 1);
//
// $pdf->Ln(4);
//}
//
//$pdf->Cell(50, 4, $mod_strings['LBL_PDF_PAYMENT_TERMIN'] . ':', 0, 0, 'L', 1);
//$pdf->Cell(50, 4, $this->payment_date ? : '-', 0, 0, 'L', 1);
//
//$pdf->Ln(4);
//
//$pdf->SetFont('arialpl', '', '8');
//$pdf->Cell(30, 4, "Słownie:", 0, 0, 'L', 1);
//$pdf->SetFont('arialpl', 'B', '8');
//
//if ($this->type == "correct") {
// $tot = format_number(abs((float) $total - array_sum($inv_value)));
// $tot = str_replace(".", "", $tot);
// //$tot=str_replace(",",".",$tot);
// $sl = $this->slowniePL($tot);
//} else {
// $tot = str_replace(".", "", str_replace("PLN", "", $total - array_sum($inv_value)));
// $sl = $this->slowniePL($tot);
//}
//
//if ($this->document_no == "FV 1421/10") {
// $sl = "one thousand one hundred six EUR 41/100";
//}
//
//$pdf->Cell(150, 4, $sl, 0, 0, 'L', 1);
//echo '<pre>' . var_export(format_number('9.9999', 4, 4), true) . '</pre>'; exit;
//echo '<pre>' . var_export(gettype((double)$this->currency_value), true) . '</pre>'; exit;
if ($this->currency_value > 1 && $this->currency_symbol != 'EUR') {
$pdf->Ln(8);
$pdf->SetX(10);
$pdf->WriteHtml(sprintf('Ceny wyliczono wg kursu sprzedaży walut banku Citi Handlowego z dn. wystawienia faktury: 1 %s = %s %s', $this->currency_symbol, format_number($this->currency_value, 4, 4), 'PLN'));
$pdf->Ln(4);
$pdf->SetX(10);
$pdf->WriteHtml(sprintf('Prices are calculated by currency exchange rates of City Handlowy bank dated by invoice sale date: 1 %s = %s %s', $this->currency_symbol, format_number($this->currency_value, 4, 4), 'PLN'));
//$pdf->Cell(50, 4, 'Ceny wyliczono wg kursu sprzedaży walut banku Citi Handlowego z dn. wystawienia faktury: ' , 0, 0, 'L', 1); // $mod_strings['LBL_CURRENCY_VALUE'] . ':'
//$pdf->Cell(30, 4, '1 ' . $this->currency_symbol . ' = ' . format_number($this->currency_value, 4, 4) . ' zł', 0, 0, 'R', 1);
}
$pdf->Ln(8);
$pdf->SetFont('arialpl', 'B', '8');
$pdf->Ln(4);
$pdf->SetX(10);
$pdf->Cell(85, 1, 'Dla wszystkich pozycji faktury zastosowano stawkę VAT 0%', 0, 0, 'L', 1);
$pdf->Ln(4);
$pdf->SetX(10);
$pdf->Cell(85, 1, 'VAT is 0% for all invoice items', 0, 0, 'L', 1);
$pdf->Ln(4);
$pdf->SetX(10);
$pdf->Cell(85, 1, 'Zgodnie z art. 41 ust. 3 ustawy o podatku VAT', 0, 0, 'L', 1);
$pdf->Ln(16);
//$pdf->SetX(10);
//$pdf->SetFont('arialpl', '', '7');
//
//$pdf->Cell(95, 1, "...............................................................", 0, 0, 'L', 1);
//$pdf->Cell(95, 1, "...............................................................", 0, 0, 'R', 1);
//
//$pdf->Ln(4);
//
//$pdf->SetX(10);
//$pdf->Cell(43, 1, $mod_strings['LBL_PDF_OWNER_SIGNATURE'] . '/' . $mod_strings2['LBL_PDF_OWNER_SIGNATURE'], 0, 0, 'C', 1);
//
//$pdf->SetX(162);
//$pdf->Cell(35, 1, $mod_strings['LBL_PDF_RECEIVER_SIGNATURE'], 0, 0, 'C', 1);
//
//$pdf->Ln(4);
//$pdf->SetX(10);
//$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');