init
This commit is contained in:
39
modules/EcmPrepaymentInvoices/PDFTemplate/helper.php
Normal file
39
modules/EcmPrepaymentInvoices/PDFTemplate/helper.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
function formatPDFPositions($positions, $focus) {
|
||||
$result = array();
|
||||
|
||||
|
||||
foreach ($positions as $pos) {
|
||||
|
||||
$pos['quantity'] = intval($pos['quantity']);
|
||||
/*
|
||||
$pos['old_quantity'] = intval($pos['old_quantity']);
|
||||
|
||||
$pos['position'] = intval($pos['position'])+1;
|
||||
$pos['price_netto']=format_number($pos['price_netto']);
|
||||
$pos['total_vat']=format_number($pos['total_vat']);
|
||||
$pos['ecmvat_value']=format_number($pos['ecmvat_value']);
|
||||
$pos['total_brutto']=format_number($pos['total_brutto']);
|
||||
$pos['total_netto']=format_number($pos['total_netto']);
|
||||
$pos['old_total_netto']=format_number($pos['old_total_netto']);
|
||||
$pos['old_total_brutto']=format_number($pos['old_total_brutto']);
|
||||
$pos['old_total_vat']=format_number($pos['old_total_vat']);
|
||||
$pos['old_price_netto']=format_number($pos['old_price_netto']);
|
||||
*/
|
||||
$result[] = $pos;
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
function mysql_escape_gpc($dirty)
|
||||
{
|
||||
if (ini_get('magic_quotes_gpc'))
|
||||
{
|
||||
return $dirty;
|
||||
}
|
||||
else
|
||||
{
|
||||
return mysql_real_escape_string($dirty);
|
||||
}
|
||||
}
|
||||
383
modules/EcmPrepaymentInvoices/PDFTemplate/tpl/content.php
Normal file
383
modules/EcmPrepaymentInvoices/PDFTemplate/tpl/content.php
Normal file
@@ -0,0 +1,383 @@
|
||||
<?php
|
||||
$w = "35"; // first column width
|
||||
$w3 = "35";
|
||||
$w2 = "25"; // second column width
|
||||
|
||||
|
||||
|
||||
|
||||
$content = '
|
||||
<table style="width: 100%; font-size: 8pt;">
|
||||
<tr>
|
||||
<td style="width: ' . $w . '%">
|
||||
<b>' . $labels['LBL_PDF_CONTENT_INVOICE_FOR'] . '</b>
|
||||
</td>
|
||||
<td style="width: ' . $w3 . '%">';
|
||||
if ($focus->parent_shipping_address_name != '') {
|
||||
$content .= '<b>' . $labels['LBL_PDF_CONTENT_DELIVERY'] . '</b>';
|
||||
}
|
||||
|
||||
$content .= '</td>
|
||||
<td style="width: ' . $w2 . '%">';
|
||||
if ($focus->parent_payer_address_name != '') {
|
||||
$content .= '<b>' . $labels['LBL_PDF_CONTENT_PAYER'] . '</b>';
|
||||
}
|
||||
$content .= '</td>
|
||||
<td style="text-align: right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: ' . $w . '%">
|
||||
' . $focus->parent_name . '
|
||||
</td>
|
||||
<td style="width: ' . $w3 . '%">
|
||||
' . $focus->parent_shipping_address_name . '
|
||||
</td>
|
||||
<td style="width: ' . $w2 . '%">' . $focus->parent_payer_address_name . '</td>
|
||||
<td style="text-align: right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: ' . $w . '%">
|
||||
' . $focus->parent_address_street . '
|
||||
</td>
|
||||
<td style="width: ' . $w3 . '%">
|
||||
' . $focus->parent_shipping_address_street . '
|
||||
</td>
|
||||
<td style="width: ' . $w2 . '%">
|
||||
' . $focus->parent_payer_address_street . '
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: ' . $w . '%">
|
||||
' . $focus->parent_address_postalcode . ' ' . $focus->parent_address_city;
|
||||
if (!is_null($focus->parent_address_country) & $focus->parent_address_country != '')
|
||||
$content .= ', ' . $focus->parent_address_country;
|
||||
$content .= '
|
||||
</td>
|
||||
<td style="width: ' . $w3 . '%">
|
||||
' . $focus->parent_shipping_address_postalcode . ' ' . $focus->parent_shipping_address_city;
|
||||
if (!is_null($focus->parent_shipping_address_country) & $focus->parent_shipping_address_country != '')
|
||||
$content .= ', ' . $focus->parent_shipping_address_country;
|
||||
$content .= '
|
||||
</td>
|
||||
<td style="width: ' . $w2 . '%">
|
||||
' . $focus->parent_payer_address_postalcode . ' ' . $focus->parent_payer_address_city;
|
||||
if (!is_null($focus->parent_payer_address_country) & $focus->parent_payer_address_country != '')
|
||||
$content .= ', ' . $focus->parent_payer_address_country;
|
||||
$content .= '
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
|
||||
</td>
|
||||
</tr>';
|
||||
$content .= '
|
||||
<tr>
|
||||
<td valign="top" style="width: ' . $w . '%">';
|
||||
if (!is_null($focus->parent_nip) && $focus->parent_nip) {
|
||||
$content .= $labels['LBL_PDF_CONTENT_NIP'] . ' ' . $focus->parent_nip;
|
||||
$nip = true;
|
||||
}
|
||||
if (!is_null($focus->parent_iln) && $focus->parent_iln) {
|
||||
if ($nip) $content .= '<br>';
|
||||
$nip = false;
|
||||
$content .= 'ILN: ' . $focus->parent_iln;
|
||||
}
|
||||
$content .= '
|
||||
</td>';
|
||||
$content .= '
|
||||
<td valign="top" style="width: ' . $w3 . '%">';
|
||||
if (!is_null($focus->parent_shipping_address_nip) && $focus->parent_shipping_address_nip) {
|
||||
$content .= $labels['LBL_PDF_CONTENT_NIP'] . ' ' . $focus->parent_shipping_address_nip;
|
||||
$nip = true;
|
||||
}
|
||||
if (!is_null($focus->parent_shipping_iln) && $focus->parent_shipping_iln) {
|
||||
if ($nip) $content .= '<br>';
|
||||
$nip = false;
|
||||
$content .= 'ILN: ' . $focus->parent_shipping_iln;
|
||||
}
|
||||
$content .= '
|
||||
</td>';
|
||||
$content .= '
|
||||
<td valign="top" style="width: ' . $w3 . '%">';
|
||||
if (!is_null($focus->parent_payer_address_nip) && $focus->parent_payer_address_nip) {
|
||||
$content .= $labels['LBL_PDF_CONTENT_NIP'] . ' ' . $focus->parent_payer_address_nip;
|
||||
$nip = true;
|
||||
}
|
||||
if (!is_null($focus->parent_payer_iln) && $focus->parent_payer_iln) {
|
||||
if ($nip) $content .= '<br>';
|
||||
$nip = false;
|
||||
$content .= 'ILN: ' . $focus->parent_payer_iln;
|
||||
}
|
||||
$content .= '</td>
|
||||
<td colspan="0" valign="top" style="text-align: right">
|
||||
|
||||
</td>
|
||||
</tr>';
|
||||
$content .= '
|
||||
</table>
|
||||
';
|
||||
if ($focus->name && $focus->name != '') {
|
||||
$content .= '
|
||||
<table style="width: 100%; text-align: center">
|
||||
<tr><td>
|
||||
<b>' . $focus->name . '</b>
|
||||
</td></tr>
|
||||
</table>
|
||||
';
|
||||
}
|
||||
|
||||
$content .= '<br><table width="100%" style="font-size: 7pt;text-align:left;vertical-align:top;">
|
||||
<tr><td width="18%" >' . $labels['LBL_PDF_CONTENT_REGISTER_DATE'] . '</td>
|
||||
<td style="text-align: left;" width="35%"><b>' . $focus->register_date . '</b></td>
|
||||
<td rowspan="2" style="text-align: left;vertical-align:top;">';
|
||||
|
||||
if ($focus->order_no != '') {
|
||||
$content .= $labels['LBL_PDF_CONTENT_PARENT_DOCUMENT_NO'] . ':<br>';
|
||||
}
|
||||
if ($focus->supplier_code != '') {
|
||||
$content .= $labels['LBL_SUPPLIER_CODE'] . ':<br>';
|
||||
}
|
||||
if ($focus->payment_date != '') {
|
||||
$content .= $labels['LBL_PAYMENT_DATE_PDF'] . ':<br>';
|
||||
}
|
||||
$pay = new EcmPaymentCondition();
|
||||
|
||||
$pay->retrieve($focus->ecmpaymentcondition_id);
|
||||
|
||||
$content .= '</td>
|
||||
<td rowspan="2" style="vertical-align:top;">';
|
||||
if ($focus->wz_name != '') {
|
||||
$content .= '<b>' . $focus->wz_name . '</b><br>';
|
||||
}
|
||||
if ($focus->order_no != '') {
|
||||
$content .= '<b>' . $focus->order_no . '</b><br>';
|
||||
}
|
||||
if ($focus->supplier_code != '') {
|
||||
$content .= '<b>' . $focus->supplier_code . '</b><br>';
|
||||
}
|
||||
if ($focus->payment_date != '') {
|
||||
$content .= '<b>' . date('d.m.Y', strtotime($focus->payment_date)) . '</b><br>';
|
||||
}
|
||||
$content .= '</td></tr></table><br>';
|
||||
// start items table
|
||||
$columns = array();
|
||||
|
||||
$columns['position'] = array(
|
||||
'field' => array(
|
||||
'position'
|
||||
),
|
||||
'label' => 'Lp.',
|
||||
'align' => 'center'
|
||||
);
|
||||
|
||||
$columns['name'] = array(
|
||||
'field' => array(
|
||||
'name',
|
||||
'product_code'
|
||||
),
|
||||
'label' => 'Nazwa<br>Indeks',
|
||||
'align' => 'left'
|
||||
);
|
||||
if ($recipient_code == 1) {
|
||||
$columns['recipient_code'] = array(
|
||||
'field' => array(
|
||||
'recipient_code'
|
||||
),
|
||||
'label' => 'Kod Tow.',
|
||||
'align' => 'center'
|
||||
);
|
||||
}
|
||||
$columns['qty'] = array(
|
||||
'field' => array(
|
||||
'quantity',
|
||||
'unit_name'
|
||||
),
|
||||
'label' => 'Ilość<br>J.m.',
|
||||
'align' => 'right'
|
||||
);
|
||||
|
||||
$columns['price_netto'] = array(
|
||||
'field' => array(
|
||||
'price_netto'
|
||||
),
|
||||
'label' => 'Cena netto',
|
||||
'align' => 'right'
|
||||
);
|
||||
|
||||
$columns['total_netto'] = array(
|
||||
'field' => array(
|
||||
'total_netto'
|
||||
),
|
||||
'label' => 'Wartość<br>netto',
|
||||
'align' => 'right'
|
||||
);
|
||||
$columns['ecmvat_name'] = array(
|
||||
'field' => array(
|
||||
'ecmvat_name'
|
||||
),
|
||||
'label' => 'VAT<br>(%)',
|
||||
'align' => 'center'
|
||||
);
|
||||
$columns['total_vat'] = array(
|
||||
'field' => array(
|
||||
'total_vat'
|
||||
),
|
||||
'label' => 'Wartość<br>VAT',
|
||||
'align' => 'right'
|
||||
);
|
||||
|
||||
$columns['total_brutto'] = array(
|
||||
'field' => array(
|
||||
'total_brutto'
|
||||
),
|
||||
'label' => 'Wartość<br>brutto',
|
||||
'align' => 'right'
|
||||
);
|
||||
// set widths
|
||||
$totals = array();
|
||||
|
||||
$columns['position']['width'] = '5';
|
||||
$columns['name']['width'] = '41';
|
||||
if ($recipient_code == 1) {
|
||||
$columns['recipient_code']['width'] = '10';
|
||||
}
|
||||
$columns['qty']['width'] = '10';
|
||||
$columns['price_netto']['width'] = '10';
|
||||
$columns['total_netto']['width'] = '10';
|
||||
$columns['ecmvat_name']['width'] = '4';
|
||||
$columns['total_vat']['width'] = '10';
|
||||
$columns['total_brutto']['width'] = '10';
|
||||
|
||||
$content .= '
|
||||
<table style="width: 100%; font-size: 7pt; border: 0.5 solid black; border-collapse: collapse;"><thead>
|
||||
<tr>
|
||||
';
|
||||
foreach ($columns as $col) {
|
||||
$content .= '
|
||||
<th style="border: 0.5 solid black; width: ' . $col['width'] . '%;background-color: #E9E9E9;">' . $col['label'] . '</th>
|
||||
';
|
||||
}
|
||||
$content .= '
|
||||
</tr></thead><tbody>
|
||||
';
|
||||
$counter = 1;
|
||||
foreach ($positions as $pos) {
|
||||
$content .= '<tr>';
|
||||
foreach ($columns as $col) {
|
||||
|
||||
$content .= '<td style="border: 0.5 solid black; text-align: ' . $col['align'] . ';">';
|
||||
foreach ($col['field'] as $f) {
|
||||
|
||||
if (!$pos[$f] || $pos[$f] == '')
|
||||
$pos[$f] = '-';
|
||||
$content .= $pos[$f] . '<br>';
|
||||
}
|
||||
$content .= '</td>';
|
||||
}
|
||||
$content .= '</tr>';
|
||||
}
|
||||
$content .= '
|
||||
</tbody></table>
|
||||
';
|
||||
// summary table
|
||||
// get currency symbol
|
||||
$c = new Currency();
|
||||
$c->retrieve($focus->currency_id);
|
||||
$symbol = $c->symbol;
|
||||
unset($c);
|
||||
$content .= '
|
||||
<br>
|
||||
<table style="font-size: 9pt; border: 0.5 solid black; border-collapse: collapse; width: 300px; margin-left: 60%">
|
||||
';
|
||||
|
||||
$content .= '
|
||||
<tr>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 23%;text-align: center;">
|
||||
<b>VAT (%)</b>
|
||||
</td>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 25%;text-align: center;">
|
||||
<b>Wartość netto</b>
|
||||
</td>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 25%;text-align: center;">
|
||||
<b>Wartość VAT</b>
|
||||
</td>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 27%;text-align: center;">
|
||||
<b>Wartość brutto</b>
|
||||
</td>';
|
||||
|
||||
$content .= '</tr>
|
||||
';
|
||||
$content .= '
|
||||
<tr>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 23%;text-align: center;">
|
||||
' . $positions[0]['ecmvat_name'] . '
|
||||
</td>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 25%;text-align: right;">
|
||||
' . $positions[0]['total_netto'] . '
|
||||
</td>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 25%;text-align: right;">
|
||||
' . $positions[0]['total_vat'] . '
|
||||
</td>
|
||||
<td style="font-size: 7pt; border: 0.5 solid black; width: 27%;text-align: right;">
|
||||
' . $positions[0]['total_brutto'] . '
|
||||
</td></tr>';
|
||||
// totals
|
||||
$content .= '
|
||||
<tr>
|
||||
<td style="font-size: 6.5pt; border: 0.5 solid black; width: 23%;text-align: center;background-color: #E9E9E9;">
|
||||
<b>Razem</b>
|
||||
</td>
|
||||
<td style="font-size: 6.5pt; border: 0.5 solid black; width: 25%;text-align: right;background-color: #E9E9E9;">
|
||||
<b>' . $positions[0]['total_netto'] . '</b>
|
||||
</td>
|
||||
<td style="font-size: 6.5pt; border: 0.5 solid black; width: 25%;text-align: right;background-color: #E9E9E9;">
|
||||
<b>' . $positions[0]['total_vat'] . '</b>
|
||||
</td>
|
||||
<td style="font-size: 6.5pt; border: 0.5 solid black; width: 27%;text-align: right;background-color: #E9E9E9;">
|
||||
<b>' . $positions[0]['total_brutto'] . '</b>
|
||||
</td></tr>';
|
||||
$content .= '
|
||||
</table>
|
||||
<table style="font-size: 7pt;">
|
||||
<tr><td>' . $labels['LBL_PDF_TO_PAY'] . '</td><td style="text-align: right;"><b>' . format_number($focus->inv_value) . ' ' . $symbol . '</b></td><td></td></tr>';
|
||||
$content .= '<tr><td>Zapłacono przelewem:</td><td style="text-align: right;"><b>' . format_number($focus->inv_value) . ' ' . $symbol . '</b></td><td style="text-align:left;">' . $paid_text . '</td></tr>
|
||||
</table>';
|
||||
$content .='<br><p style="font-size: 7pt;">Dane dotyczące zamówienia <b>'.$sale->document_no.'</b>. Numer zamówienia klienta: <b>'.$sale->parent_document_no.'</b>.</p>';
|
||||
|
||||
$content .= '
|
||||
<table style="width: 100%; font-size: 7pt; border: 0.5 solid black; border-collapse: collapse;"><thead>
|
||||
<tr>
|
||||
';
|
||||
foreach ($columns as $col) {
|
||||
$content .= '
|
||||
<th style="border: 0.5 solid black; width: ' . $col['width'] . '%;background-color: #E9E9E9;">' . $col['label'] . '</th>
|
||||
';
|
||||
}
|
||||
$content .= '
|
||||
</tr></thead><tbody>
|
||||
';
|
||||
$counter = 1;
|
||||
foreach ($sale_positions as $pos) {
|
||||
$content .= '<tr>';
|
||||
foreach ($columns as $col) {
|
||||
|
||||
$content .= '<td style="border: 0.5 solid black; text-align: ' . $col['align'] . ';">';
|
||||
foreach ($col['field'] as $f) {
|
||||
|
||||
if (!$pos[$f] || $pos[$f] == '')
|
||||
$pos[$f] = '-';
|
||||
$content .= $pos[$f] . '<br>';
|
||||
}
|
||||
$content .= '</td>';
|
||||
}
|
||||
$content .= '</tr>';
|
||||
}
|
||||
$content .= '
|
||||
</tbody></table>
|
||||
';
|
||||
$content .='<p style="font-size: 7pt;">Razem brutto: <b>'.format_number($sale->total_brutto).' '.$symbol.'</b></p>';
|
||||
$content .= '<br><br><p style="font-size: 7pt;">' . $labels['LBL_PDF_CONTENT_ISSUED_BY'] . ' <b>' . $user->full_name . '</b></p>
|
||||
<br><br>
|
||||
' . $focus->pdf_text . '
|
||||
';
|
||||
93
modules/EcmPrepaymentInvoices/PDFTemplate/tpl/footer.php
Normal file
93
modules/EcmPrepaymentInvoices/PDFTemplate/tpl/footer.php
Normal file
@@ -0,0 +1,93 @@
|
||||
<?php
|
||||
$w = "62"; //first column width
|
||||
$w2 = "12"; //second column width
|
||||
//get bank information
|
||||
$a = new Account();
|
||||
$a->retrieve($focus->parent_id);
|
||||
|
||||
$ba_number = '35 1160 2202 0000 0000 6408 0411';
|
||||
$ba_name = 'BANK MILLENIUM';
|
||||
|
||||
unset($a);
|
||||
$footer = '
|
||||
<hr>
|
||||
<table style="width: 100%; font-size: 7pt;">
|
||||
<tr>
|
||||
<td style="width: '.$w.'%">
|
||||
e5 Polska Sp. z o.o
|
||||
</td>
|
||||
<td style="width: '.$w2.'%">
|
||||
<b>'.$labels['LBL_PDF_FOOTER_KRS'].'</b>
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
28207
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: '.$w.'%">
|
||||
ul. Wąwozowa 11
|
||||
</td>
|
||||
<td style="width: '.$w2.'%">
|
||||
<b>'.$labels['LBL_PDF_FOOTER_NIP'].'</b>
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
PL525273990
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: '.$w.'%">
|
||||
02-796 Warszawa
|
||||
</td>
|
||||
<td style="width: '.$w2.'%">
|
||||
<b>'.$labels['LBL_PDF_FOOTER_REGON'].'</b>
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
016280234
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: '.$w.'%">
|
||||
Tel: +48 (22) 228 20 90
|
||||
</td>
|
||||
<td style="width: '.$w2.'%">
|
||||
<b>'.$labels['LBL_PDF_FOOTER_BANK'].'</b>
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
'.$ba_name.'
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: '.$w.'%">
|
||||
Fax: +48 (56) 674 60 47
|
||||
</td>
|
||||
<td style="width: '.$w2.'%">
|
||||
<b>'.$labels['LBL_PDF_FOOTER_BANK_ACCOUNT'].'</b>
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
'.$ba_number.'
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: '.$w.'%">
|
||||
'.$user->email1.'
|
||||
</td>
|
||||
<td style="width: '.$w2.'%">
|
||||
<b>'.$labels['LBL_PDF_FOOTER_GIOS'].'</b>
|
||||
</td>
|
||||
<td style="text-align: right">
|
||||
E0006254W
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<table style="width: 100%; font-size: 7pt;">
|
||||
<tr>
|
||||
<td style="width: 50%;">
|
||||
{PAGENO}/{nb}
|
||||
</td>
|
||||
<td style="width: 50%; text-align: right">
|
||||
<b>'.$focus->document_no.'</b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
';
|
||||
21
modules/EcmPrepaymentInvoices/PDFTemplate/tpl/header.php
Normal file
21
modules/EcmPrepaymentInvoices/PDFTemplate/tpl/header.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
$header = '
|
||||
<table style="font-size: 8pt; width: 100%"><tr>
|
||||
<td width="15%" style="text-align: left; vertical-align: top;">
|
||||
<b>SPRZEDAWCA</b><br />
|
||||
e5 Polska Sp. z o. o.<br />
|
||||
ul. Wąwozowa 11<br />
|
||||
02-796 Warszawa<br />
|
||||
NIP: 5252173990<br>
|
||||
BDO: 000036962
|
||||
</td>
|
||||
<td style="text-align: center; vertical-align: middle;">
|
||||
<p style="text-align: center;font-size: 12pt;"><b>Faktura nr ' . $focus->document_no . '</b></p>
|
||||
<p style="text-align: center;">Przedpłatowa</p>
|
||||
</td>
|
||||
<td width="15%">
|
||||
<img style="width: 70px;" src="modules/EcmDocumentTemplates/files/13899e0f-321c-229a-aa3e-48be4a1532c1.png"/>
|
||||
</td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
';
|
||||
Reference in New Issue
Block a user