-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInvoice.php
More file actions
427 lines (387 loc) · 11.8 KB
/
Invoice.php
File metadata and controls
427 lines (387 loc) · 11.8 KB
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<?php
namespace Mzur\InvoiScript;
use setasign\Fpdi\Fpdi;
class Invoice extends Fpdi
{
/**
* The array of string translations for each language.
*
* @var array
*/
protected static $translations;
/**
* The invoice content.
*
* @var array
*/
protected $content;
/**
* The array of item entries.
*
* @var array
*/
protected $entries;
/**
* Variables that can be substituted in the rendered beforeInfo and afterInfo.
*
* @var array
*/
protected $variables;
/**
* Number of pages of the PDF template.
*
* @var int
*/
protected $templatePages;
/**
* Language code.
*
* @var string
*/
protected $lang;
/**
* The page layout.
*
* @var array
*/
protected $layout;
/**
* Get a string translation.
*
* @param string $lang Language code.
* @param string $key Translation key.
*
* @return string
*/
protected static function translate($lang, $key)
{
if (!isset(static::$translations)) {
static::$translations = require(__DIR__.'/lang.php');
}
$translation = static::$translations[$lang] ?? static::$translations['en'];
return $translation[$key] ?? $key;
}
/**
* Create a new instance.
*
* @param array $content Array containing 'title', 'cientAddress', 'entries', and optional 'beforeInfo' and 'afterInfo'.
*/
public function __construct($content)
{
parent::__construct();
$this->content = $content;
$this->entries = $this->content['entries'] ?? [];
if (empty($this->entries)) {
throw new Exception("No item entries for the invoice.");
}
$this->setLayout();
$this->setVariables();
$this->setAutoPageBreak(false);
$this->templatePages = 0;
$this->aliasNbPages('{pages}');
}
/**
* Set the template to use.
*
* @param string $path Path to the PDF template. The last page of the template will be
* used for all pages of the invoice that have a higher page number. Else each
* template page will be used for each invoice page.
*/
public function setTemplate($path)
{
$this->templatePages = $this->setSourceFile($path);
}
/**
* Set the language to use.
*
* @param string $code Language code.
*/
public function setLanguage($code)
{
$this->lang = $code;
}
/**
* Set custom layout variables.
*
* @param array $layout
*/
public function setLayout($layout = [])
{
$this->layout = $this->getLayout($layout);
$this->setFont($this->layout['font'], '', $this->layout['fontSize']);
$this->setMargins($this->layout['pagePaddingLeft'], $this->layout['pagePaddingTop']);
}
/**
* Set custom content variables.
*
* @param array $variables
*/
public function setVariables($variables = [])
{
$this->variables = $this->getVariables($variables);
}
/**
* Generate the invoice PDF.
*
* @param string $path
*/
public function generate($path)
{
$this->newPage();
$this->makeLetterhead();
$this->makeTitle();
$this->makeBeforeInfo();
$this->makeEntries();
$this->makeAfterInfo();
$this->output('F', $path, true);
}
/**
* Render the letterhead.
*/
protected function makeLetterhead()
{
$address = $this->content['clientAddress'];
$this->setMargins($this->layout['addressPaddingLeft'], $this->layout['pagePaddingTop']);
$this->setY($this->layout['addressMarginTop']);
foreach ($address as $line) {
$this->cell(0, $this->layout['contentCellHeight'], mb_convert_encoding($line, 'ISO-8859-1', 'UTF-8'), 0, 1);
}
$this->setMargins($this->layout['pagePaddingLeft'], $this->layout['pagePaddingTop']);
}
/**
* Render the invoice title.
*/
protected function makeTitle()
{
$this->setY($this->layout['titleMarginTop']);
$this->setFont('', 'B', $this->layout['titleFontSize']);
$this->write($this->layout['titleCellHeight'], $this->content['title']);
$this->setFont('', '', $this->layout['fontSize']);
}
/**
* Render the text before the item table.
*/
protected function makeBeforeInfo()
{
$this->setY($this->layout['contentMarginTopP1']);
$this->renderInfo($this->content['beforeInfo'] ?? []);
}
/**
* Render the item table.
*/
protected function makeEntries()
{
$this->setY($this->getY() + $this->layout['entriesPaddingTop']);
$widths = $this->layout['entriesColumnWidths'];
$alignment = $this->layout['entriesColumnAlignment'];
$makeHeader = function ($widths, $alignment) {
$header = [
$this->t('quantity'),
$this->t('item'),
$this->t('price'),
$this->t('total'),
];
$this->setFont('', 'b');
foreach ($widths as $index => $width) {
$this->cell($width, $this->layout['titleCellHeight'], mb_convert_encoding($header[$index],'ISO-8859-1', 'UTF-8'), 'BT', 0, $alignment[$index]);
}
$this->setFont('', '');
$this->ln();
};
$makeHeader($widths, $alignment);
$currentY = 0;
$nextY = $this->getY();
foreach ($this->entries as $entry) {
$this->setY($nextY);
if ($this->needsNewPage()) {
$this->newPage();
$makeHeader($widths, $alignment);
$nextY = $this->getY();
}
$currentY = $nextY;
$this->cell($widths[0], $this->layout['contentCellHeight'], $this->numberFormat($entry['quantity']), '', 0, $alignment[0]);
$this->multiCell($widths[1], $this->layout['contentCellHeight'], mb_convert_encoding($entry['description'], 'ISO-8859-1', 'UTF-8'), 0, $alignment[1]);
$nextY = max($nextY, $this->getY());
$this->setXY($this->layout['pagePaddingLeft'] + $widths[0] + $widths[1], $currentY);
$this->cell($widths[2], $this->layout['contentCellHeight'], $this->numberFormat($entry['price']), '', 0, $alignment[2]);
$total = $entry['quantity'] * $entry['price'];
$this->cell($widths[3], $this->layout['contentCellHeight'], $this->numberFormat($total), '', 1, $alignment[3]);
}
$this->setY($nextY);
$this->setFont('', 'b');
$this->cell($widths[0], $this->layout['contentCellHeight'], '', 'BT');
$this->cell($widths[1], $this->layout['contentCellHeight'], '', 'BT');
$this->cell($widths[2], $this->layout['contentCellHeight'], '', 'BT');
$this->cell($widths[3], $this->layout['contentCellHeight'], $this->variables['total'], 'BT', 0, $alignment[3]);
$this->setFont('', '');
}
/**
* Render the text after the item table.
*/
protected function makeAfterInfo()
{
$this->setY($this->getY() + $this->layout['entriesPaddingBottom']);
$this->renderInfo($this->content['afterInfo'] ?? []);
}
protected function renderInfo($lines)
{
foreach ($lines as $line) {
$this->write($this->layout['contentCellHeight'], $line);
$this->ln();
if ($this->needsNewPage()) {
$this->newPage();
}
}
}
/**
* Write flowing text. Supports HTML-like tags for <b></b> (bold), <i></i> (italic), <u></u> (underline) as well as variable substitutions (e.g. '{page}').
*
* @param int $h Line height.
* @param string $txt Text
* @param string $link URL or identifier returned by AddLink().
*/
public function write($h, $txt, $link = '')
{
$txt = str_replace("\n",' ',$txt);
$segments = preg_split('/(<\/?[uib]>)/', $txt, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
foreach ($segments as $segment) {
if ($segment === '<b>') {
$this->setFont('', 'b');
} elseif ($segment === '<i>') {
$this->setFont('', 'i');
} elseif ($segment === '<u>') {
$this->setFont('', 'u');
} elseif (strpos($segment, '</') === 0) {
$this->setFont('', '');
} else {
foreach ($this->variables as $key => $value) {
$segment = preg_replace("/\{{$key}\}/", $value, $segment);
}
parent::write($h, mb_convert_encoding($segment, 'ISO-8859-1', 'UTF-8'), $link);
}
}
}
/**
* Calculate the total price of all invoice items.
*
* @return float
*/
protected function getTotal()
{
$total = 0;
foreach ($this->entries as $entry) {
$total += $entry['price'] * $entry['quantity'];
}
return $total;
}
/**
* Add a new page.
*/
protected function newPage()
{
$this->addPage();
$this->variables['page'] = $this->pageNo();
if ($this->templatePages > 0) {
$templateIndex = $this->importPage(min($this->pageNo(), $this->templatePages));
$this->useImportedPage($templateIndex);
}
$this->setXY($this->layout['pageNoX'], $this->layout['pageNoY']);
$this->write(5, $this->t('page'));
$this->setY($this->layout['contentMarginTopPX']);
}
/**
* Determine if a new page is needed.
*
* @return bool
*/
protected function needsNewPage()
{
return $this->getY() >= $this->layout['pageMaxY'];
}
/**
* Get a translated string.
*
* @param string $key Translation key.
*
* @return string
*/
protected function t($key)
{
return static::translate($this->lang, $key);
}
/**
* Get the page layout array.
*
* @param array $override User-defined overrides.
*
* @return array
*/
protected function getLayout($override = [])
{
return array_merge([
// Y coordinate to start the address text.
'addressMarginTop' => 52.5,
// X coordinate to start the address text.
'addressPaddingLeft' => 30,
// Height of a regular text line.
'contentCellHeight' => 5,
// Y coordinate to start the content of the first page.
'contentMarginTopP1' => 105,
// Y coordinate to start the content of the pages following the first.
'contentMarginTopPX' => 45,
// Text alignment of the invoice entries columns.
'entriesColumnAlignment' => ['R', 'L', 'R', 'R'],
// Width of the invoice entries columns.
'entriesColumnWidths' => [25, 105, 20, 25],
// Space after the entry table.
'entriesPaddingBottom' => 15,
// Space before the entry table.
'entriesPaddingTop' => 10,
// Font to use for all text.
'font' => 'arial',
// Font size of regular text.
'fontSize' => 12,
// Y coordinate to initiate a pagebreak.
'pageMaxY' => 260,
// X coordinate of the page number text.
'pageNoX' => 15,
// Y coordinate of the page number text.
'pageNoY' => 277,
// Left and right padding of the page.
'pagePaddingLeft' => 15,
// Top and bottom padding of the page.
'pagePaddingTop' => 12.5,
// Height of a title text line.
'titleCellHeight' => 6,
// Font size of title text.
'titleFontSize' => 15,
// Y coordinate to start the invoice title on the first page.
'titleMarginTop' => 85,
], $override);
}
/**
* Get the page variables.
*
* @param array $variables User-defined variables.
*
* @return array
*/
protected function getVariables($variables = [])
{
return array_merge($variables, [
'total' => $this->numberFormat($this->getTotal()),
'page' => $this->pageNo(),
]);
}
/**
* Format a number string.
*
* @param int|float $number
*
* @return string
*/
protected function numberFormat($number)
{
return number_format($number, 2, $this->t('decimalSeparator'), $this->t('thousandsSeparator'));
}
}