forked from PrestaShopCorp/chronopost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generateBordereau.php
executable file
·164 lines (128 loc) · 4.48 KB
/
generateBordereau.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
/**
* MODULE PRESTASHOP OFFICIEL CHRONOPOST
*
* LICENSE : All rights reserved - COPY && REDISTRIBUTION FORBIDDEN WITHOUT PRIOR CONSENT FROM OXILEO
* LICENCE : Tous droits réservés, le droit d'auteur s'applique - COPIE ET REDISTRIBUTION INTERDITES SANS ACCORD EXPRES D'OXILEO
*
* @author Oxileo SAS <contact@oxileo.eu>
* @copyright 2001-2015 Oxileo SAS
* @license Proprietary - no redistribution without authorization
*/
include('../../config/config.inc.php');
if (!Tools::getIsset('orderid') && !Tools::getIsset('orders') && !Tools::getIsset('orderid'))
die('<h1>Informations de commande non transmises</h1>');
/* Check secret */
if (!Tools::getIsset('shared_secret') || Tools::getValue('shared_secret') != Configuration::get('CHRONOPOST_SECRET'))
die('Secret does not match.');
if (Tools::strlen(Configuration::get('CHRONOPOST_GENERAL_ACCOUNT')) < 8)
die('Erreur : veuillez configurer le module avant de procéder à l\'édition du bordereau.');
$orders = Tools::getValue('orders');
$orders = explode(';', $orders);
$orders = array_map('intval', $orders); // force cast to int prevent injection
if (count($orders) == 0) die('<h1>Aucune commande sélectionnée</h1>');
require_once('libraries/fpdf/fpdf.php');
function cleanStr($s)
{
return Tools::strtoupper(utf8_decode($s));
}
class BordereauPDF extends FPDF
{
public function HeadTable($data, $w = array(75, 75), $mustBold = true)
{
foreach ($data as $row)
{
$this->SetFont('Arial', '', 10);
$this->Cell($w[0], 4, $row[0]);
if ($mustBold) $this->SetFont('Arial', 'B', 10);
$this->Cell($w[1], 4, $row[1]);
$this->Ln();
}
}
public function InnerTable($header, $data, $w = array(35, 35, 35, 15, 25, 45))
{
$this->SetFillColor(204, 204, 204);
$this->SetFont('Arial', 'B', 10);
$sizeof = count($header);
for ($i = 0; $i < $sizeof; $i++)
$this->Cell($w[$i], 6, $header[$i], 1, 0, 'L', true);
$this->Ln();
$this->SetFont('Arial', '', 10);
foreach ($data as $row)
{
$i = 0;
foreach ($row as $value)
{
$this->Cell($w[$i], 5, $value, 'LRB', 0, 'C');
$i++;
}
$this->Ln();
}
//$this->Cell(array_sum($w),0,'','T');
}
public function OxiCell($text, $w = 0, $h = 0)
{
$w += $this->GetStringWidth($text);
$this->Cell($w, $h, $text);
$this->Ln();
}
}
/* Get data */
$recapLT = DB::getInstance()->executeS('SELECT lt, product, zipcode, country, insurance, city FROM '
._DB_PREFIX_.'chrono_lt_history WHERE id_order IN('.implode(',', $orders).')');
$sum_nat = 0;
$sum_inter = 0;
foreach ($recapLT as $lt)
{
if ($lt['country'] == 'FR') $sum_nat++;
else $sum_inter++;
}
/* Build PDF */
$pdf = new BordereauPDF();
$pdf->SetFont('Arial', 'B', 10);
$pdf->AddPage();
$pdf->Cell(150, 10, 'BORDEREAU RECAPITULATIF');
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(100, 10, 'date : '.date('d/m/Y'));
$pdf->Ln();
$pdf->Ln();
$pdf->SetFont('Arial', 'B', 10);
$pdf->OxiCell('EMETTEUR', 0, 10);
$pdf->HeadTable(array(
array('NUMERO DE COMPTE', Configuration::get('CHRONOPOST_GENERAL_ACCOUNT')),
array('NOM', cleanStr(Configuration::get('CHRONOPOST_CUSTOMER_NAME'))),
array('ADRESSE', cleanStr(Configuration::get('CHRONOPOST_CUSTOMER_ADDRESS'))),
array('ADRESSE (SUITE)', cleanStr(Configuration::get('CHRONOPOST_CUSTOMER_ADDRESS2'))),
array('VILLE', cleanStr(Configuration::get('CHRONOPOST_CUSTOMER_CITY'))),
array('CODE POSTAL', Configuration::get('CHRONOPOST_CUSTOMER_ZIPCODE')),
array('PAYS', 'FRANCE'),
array('TELEPHONE', Configuration::get('CHRONOPOST_CUSTOMER_PHONE')),
array('POSTE COMPTABLE', (int)(Configuration::get('CHRONOPOST_CUSTOMER_ZIPCODE') / 1000) * 1000 + 999)
));
$pdf->SetFont('Arial', 'B', 10);
$pdf->Ln();
$pdf->Ln();
$pdf->OxiCell('DETAIL DES ENVOIS', 0, 10);
$pdf->InnerTable(array('NUM DE LT', 'CODE PRODUIT', 'CODE POSTAL', 'PAYS', 'ASSURANCE', 'VILLE'), $recapLT);
$pdf->SetFont('Arial', 'B', 10);
$pdf->Ln();
$pdf->Ln();
$pdf->OxiCell('RESUME', 0, 10);
$pdf->InnerTable(array('DESTINATION', 'UNITE'), array(
array('NATIONAL', $sum_nat),
array('INTERNATIONAL', $sum_inter),
array('TOTAL', $sum_inter + $sum_nat)
), array(40, 20));
$pdf->Ln(15);
$pdf->SetFont('Arial', 'B', 10);
$pdf->OxiCell('Bien pris en charge '.($sum_inter + $sum_nat).' colis.', 0, 10);
$pdf->Ln(25);
$pdf->HeadTable(array(
array('Signature du Client', 'Signature du Messager Chronopost')
), array(95, 95), false);
$pdf->Output('BordereauChronopost-'.date('Ymd').'.pdf', 'I');
/*
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="downloaded.pdf"');
echo $r->skybill;
die();*/