forked from sprain/class.Einzahlungsschein.php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
class.einzahlungsschein.php
executable file
·515 lines (385 loc) · 15.1 KB
/
class.einzahlungsschein.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
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
<?php
/* ------------------------------------------------------------------------
* class.einzahlungsschein.php
* Eine Klasse um Einzahlungsscheine mit ESR-Nummer als PDF zu erstellen.
* A class to create Swiss payment slips with ESR number in pdf format.
* See https://github.com/sprain/class.Einzahlungsschein.php
* ------------------------------------------------------------------------
/**************************************
* Import FPDF-Class
* You can get the latest version here:
* http://www.fpdf.de/downloads/releases/
* or here: http://www.fpdf.org/
*
* Adjust path if necessary.
**************************************/
require_once('fpdf/fpdf.php');
/**
* The actual class
*/
class Einzahlungsschein {
//margins in mm
private $marginTop = 0;
private $marginLeft = 0;
//values on payment slip
private $ezs_bankName = '';
private $ezs_bankCity = '';
private $ezs_bankingAccount = '';
private $ezs_recipientName = '';
private $ezs_recipientAddress = '';
private $ezs_recipientCity = '';
private $ezs_bankingCustomerIdentification = '';
private $ezs_payerLine1 = '';
private $ezs_payerLine2 = '';
private $ezs_payerLine3 = '';
private $ezs_payerLine4 = '';
private $ezs_payerFullAddress = false;
private $ezs_referenceNumber = '';
private $ezs_amount = 0;
private $paymentReason = '';
private $pdf = false;
private $landscapeOrPortrait = "P";
private $format = "A4";
private $pathToImage = '';
private $type = 'orange';
/**
* Constructor method for this class
*/
public function __construct($marginTop=0, $marginLeft=0, $pdfObject=false, $landscapeOrPortrait="P", $format="A4"){
//set stuff
$this->marginTop = $marginTop;
$this->marginLeft = $marginLeft;
$this->landscapeOrPortrait = $landscapeOrPortrait;
$this->format = $format;
if($pdfObject != false){
$this->pdf = $pdfObject;
}//if
}
//Typ setzen
public function setType($type){
$this->type = $type;
}
/**
* Set name, address and banking account of bank
* @param string $bankName
* @param string $bankCity
* @param string $bankingAccount
* @return bool
*/
public function setBankData($bankName, $bankCity, $bankingAccount){
$this->ezs_bankName = utf8_decode($bankName);
$this->ezs_bankCity = utf8_decode($bankCity);
$this->ezs_bankingAccount = $bankingAccount;
return true;
}
/**
* Set name and address of recipient of money (= you, I guess)
* @param string $recipientName
* @param string $recipientAddress
* @param string $recipientCity
* @param int $bankingCustomerIdentification
* @return bool
*/
public function setRecipientData($recipientName, $recipientAddress, $recipientCity, $bankingCustomerIdentification){
$this->ezs_recipientName = $recipientName;
$this->ezs_recipientAddress = $recipientAddress;
$this->ezs_recipientCity = $recipientCity;
$this->ezs_bankingCustomerIdentification = $bankingCustomerIdentification;
return true;
}
/**
* Set name and address of payer (very flexible four lines of text)
* @param string $payerLine1
* @param string $payerLine2
* @param string $payerLine3
* @param string $payerLine4
* @return bool
*/
public function setPayerData($payerLine1, $payerLine2, $payerLine3='', $payerLine4=''){
$this->ezs_payerLine1 = $payerLine1;
$this->ezs_payerLine2 = $payerLine2;
$this->ezs_payerLine3 = $payerLine3;
$this->ezs_payerLine4 = $payerLine4;
return true;
}
/**
* Set name and address of payer (very flexible four lines of text)
* @param string $payerLine1
* @param string $payerLine2
* @param string $payerLine3
* @param string $payerLine4
* @return bool
*/
public function setPayerFullAddress($address){
$this->ezs_payerFullAddress = $address;
return true;
}
/**
* Set payment data
* @param float $amount
* @param int $referenceNumber (
* @return bool
*/
public function setPaymentData($amount, $referenceNumber=null){
$this->ezs_amount = sprintf("%01.2f",$amount);
$this->ezs_referenceNumber = $referenceNumber;
return true;
}
/**
* Set payment reason
* @param string $txt
* @return bool
*/
public function setPaymentReason($txt){
$this->paymentReason = utf8_decode($txt);
return true;
}
/**
* Does the magic!
* @param bool $doOutput
* @param string $filename
* @param string $saveAction (I, D, F, or S -> see http://www.fpdf.de/funktionsreferenz/?funktion=Output)
* @return string or file
*/
public function createEinzahlungsschein($doOutput=true, $displayImage=false, $fileName='', $saveAction=''){
//Set basic stuff
if(!$this->pdf){
$this->pdf = new FPDF($this->landscapeOrPortrait,'mm',$this->format);
$this->pdf->AddPage();
$this->pdf->SetAutoPageBreak(0);
}//if
//Place image
if($displayImage){
$this->pdf->Image($this->pathToImage."ezs_".$this->type.".gif", $this->marginLeft, $this->marginTop, 210, 106, "GIF");
}//if
//Set font
$this->pdf->SetFont('Arial','',9);
//Place name of bank (twice)
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+8);
$this->pdf->Cell(50, 4,$this->ezs_bankName);
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+12);
$this->pdf->Cell(50, 4,$this->ezs_bankCity);
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+8);
$this->pdf->Cell(50, 4,$this->ezs_bankName);
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+12);
$this->pdf->Cell(50, 4,$this->ezs_bankCity);
//Place baninkg account (twice)
$this->pdf->SetXY($this->marginLeft+27, $this->marginTop+43);
$this->pdf->Cell(30, 4,$this->ezs_bankingAccount);
$this->pdf->SetXY($this->marginLeft+90, $this->marginTop+43);
$this->pdf->Cell(30, 4,$this->ezs_bankingAccount);
//Place money amount (twice)
if($this->ezs_amount > 0){
$amountParts = explode(".", $this->ezs_amount);
}else{
$amountParts[0] = "--";
$amountParts[1] = "--";
}//if
$offset = 50.5;
if($this->type == 'red'){$offset = 51.5;};
$this->pdf->SetXY($this->marginLeft+5, $this->marginTop+$offset);
$this->pdf->Cell(35, 4,$amountParts[0], 0, 0, "R");
$this->pdf->SetXY($this->marginLeft+50, $this->marginTop+$offset);
$this->pdf->Cell(6, 4,$amountParts[1], 0, 0, "C");
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+$offset);
$this->pdf->Cell(35, 4,$amountParts[0], 0, 0, "R");
$this->pdf->SetXY($this->marginLeft+111, $this->marginTop+$offset);
$this->pdf->Cell(6, 4,$amountParts[1], 0, 0, "C");
//Place name of receiver (twice)
if($this->type == 'red'){
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+23);
$this->pdf->Cell(50, 4,$this->formatIban(utf8_decode($this->ezs_bankingCustomerIdentification)));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+27);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientName));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+31);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientAddress));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+35);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientCity));
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+23);
$this->pdf->Cell(50, 4,$this->formatIban(utf8_decode($this->ezs_bankingCustomerIdentification)));
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+27);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientName));
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+31);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientAddress));
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+35);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientCity));
}else{
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+23);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientName));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+27);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientAddress));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+31);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientCity));
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+23);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientName));
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+27);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientAddress));
$this->pdf->SetXY($this->marginLeft+66, $this->marginTop+31);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_recipientCity));
}
//Place name of Payer (twice)
if($this->ezs_payerFullAddress){
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+64);
$this->pdf->MultiCell(50, 4, utf8_decode($this->ezs_payerFullAddress), 0, 'L');
$this->pdf->SetXY($this->marginLeft+125, $this->marginTop+48);
$this->pdf->MultiCell(50, 4, utf8_decode($this->ezs_payerFullAddress), 0, 'L');
}else{
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+64);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine1));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+68);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine2));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+72);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine3));
$this->pdf->SetXY($this->marginLeft+3, $this->marginTop+76);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine4));
$this->pdf->SetXY($this->marginLeft+125, $this->marginTop+48);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine1));
$this->pdf->SetXY($this->marginLeft+125, $this->marginTop+52);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine2));
$this->pdf->SetXY($this->marginLeft+125, $this->marginTop+56);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine3));
$this->pdf->SetXY($this->marginLeft+125, $this->marginTop+60);
$this->pdf->Cell(50, 4,utf8_decode($this->ezs_payerLine4));
}
//Reference number
if($this->type == 'orange'){
//create complete reference number
$completeReferenceNumber = $this->createCompleteReferenceNumber();
//Place Reference Number (twice)
$this->pdf->SetXY($this->marginLeft+125, $this->marginTop+33.5);
$this->pdf->Cell(80, 4, $this->breakStringIntoBlocks($completeReferenceNumber));
$this->pdf->SetFont('Arial','',7);
$this->pdf->SetXY($this->marginLeft+2, $this->marginTop+60);
$this->pdf->Cell(50, 4, $this->breakStringIntoBlocks($completeReferenceNumber));
}//if
//Payment reason
if($this->type == 'red'){
$this->pdf->SetXY($this->marginLeft+125, $this->marginTop+12);
$this->pdf->MultiCell(50, 4, $this->paymentReason, 0, 'L');
}//if
//Bottom line
if($this->type == 'orange'){
//create bottom line string
$bottomLineString = '';
//EZS with amount or not?
if($this->ezs_amount == 0){
$bottomLineString .= "042>";
}else{
$amountParts = explode(".", $this->ezs_amount);
$bottomLineString .= "01";
$bottomLineString .= str_pad($amountParts[0], 8 ,'0', STR_PAD_LEFT);
$bottomLineString .= str_pad($amountParts[1], 2 ,'0', STR_PAD_RIGHT);
$bottomLineString .= $this->modulo10($bottomLineString);
$bottomLineString .= ">";
}//if
//add reference number
$bottomLineString .= $this->createCompleteReferenceNumber();
$bottomLineString .= "+ ";
//add banking account
$bankingAccountParts = explode("-", $this->ezs_bankingAccount);
$bottomLineString .= str_pad($bankingAccountParts[0], 2 ,'0', STR_PAD_LEFT);
$bottomLineString .= str_pad($bankingAccountParts[1], 6 ,'0', STR_PAD_LEFT);
$bottomLineString .= str_pad($bankingAccountParts[2], 1 ,'0', STR_PAD_LEFT);
$bottomLineString .= ">";
//Set bottom line
$this->pdf->AddFont('OCRB10');
$this->pdf->SetFont('OCRB10','',10);
$this->pdf->SetXY($this->marginLeft+67, $this->marginTop+85);
$this->pdf->Cell(140,4,$bottomLineString, 0, 0, "R");
}else{
//set font
$this->pdf->AddFont('OCRB10');
$this->pdf->SetFont('OCRB10','',10);
//add banking account
$bottomLineString = '';
$bottomLineString .= str_pad(substr($this->ezs_bankingCustomerIdentification, 8), 26 ,'0', STR_PAD_LEFT);
$bottomLineString .= $this->modulo10($bottomLineString);
$bottomLineString .= "+";
$bottomLineString2 = '';
$bcNummer = substr($this->ezs_bankingCustomerIdentification, 4, 5);
$bottomLineString2 .= " 07".$bcNummer;
$bottomLineString2 .= $this->modulo10($bcNummer);
$bottomLineString2 .= $this->modulo10($bottomLineString2);
$bottomLineString2 .= ">";
$bottomLineString .= $bottomLineString2;
//Set bottom line
$this->pdf->SetXY($this->marginLeft+67, $this->marginTop+85);
$this->pdf->Cell(140,4,$bottomLineString, 0, 0, "R");
//add banking account
$bottomLineString = '';
$bankingAccountParts = explode("-", $this->ezs_bankingAccount);
$bottomLineString .= str_pad($bankingAccountParts[0], 2 ,'0', STR_PAD_LEFT);
$bottomLineString .= str_pad($bankingAccountParts[1], 6 ,'0', STR_PAD_LEFT);
$bottomLineString .= str_pad($bankingAccountParts[2], 1 ,'0', STR_PAD_LEFT);
$bottomLineString .= ">";
//Set bottom line
$this->pdf->SetXY($this->marginLeft+67, $this->marginTop+92);
$this->pdf->Cell(140,4,$bottomLineString, 0, 0, "R");
}//if
//Output
if($doOutput){
$this->pdf->Output($fileName, $saveAction);
if($fileName != ''){
return $fileName;
}//if
}//if
}
/**
* Creates Modulo10 recursive check digit
*
* as found on http://www.developers-guide.net/forums/5431,modulo10-rekursiv
* (thanks, dude!)
*
* @param string $number
* @return int
*/
private function modulo10($number) {
$table = array(0,9,4,6,8,2,7,1,3,5);
$next = 0;
for ($i=0; $i<strlen($number); $i++) {
$next = $table[($next + substr($number, $i, 1)) % 10];
}//for
return (10 - $next) % 10;
}
/**
* Creates complete reference number
* @return string
*/
private function createCompleteReferenceNumber() {
//get reference number and fill with zeros
$completeReferenceNumber = str_pad($this->ezs_referenceNumber, 20 ,'0', STR_PAD_LEFT);
//add customer identification code
$completeReferenceNumber = $this->ezs_bankingCustomerIdentification.$completeReferenceNumber;
//add check digit
$completeReferenceNumber .= $this->modulo10($completeReferenceNumber);
//return
return $completeReferenceNumber;
}
/**
* Displays a string in blocks of a certain size.
* Example: 00000000000000000000 becomes more readable 00000 00000 00000
* @param string $string
* @param int $blocksize
* @return string
*/
private function breakStringIntoBlocks($string, $blocksize=5, $alignFromRight=true) {
//lets reverse the string (because we want the block to be aligned from the right)
if($alignFromRight){
$string = strrev($string);
}//if
//chop it into blocks
$string = trim(chunk_split($string, $blocksize, ' '));
//re-reverse
if($alignFromRight){
$string = strrev($string);
}//if
return $string;
}
/**
* Formats IBAN number in human readable format
* @return string
*/
private function formatIban($iban){
return $this->breakStringIntoBlocks($iban, 4, false);
}
}//class