|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace NFePHP\DA\NFe\Traits; |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* Bloco forma de pagamento |
|
7
|
|
|
*/ |
|
8
|
|
|
trait TraitBlocoV |
|
9
|
|
|
{ |
|
10
|
|
|
protected function blocoV($y) |
|
11
|
|
|
{ |
|
12
|
|
|
$this->bloco5H = $this->calculateHeightPag(); |
|
|
|
|
|
|
13
|
|
|
|
|
14
|
|
|
$aFont = ['font'=> $this->fontePadrao, 'size' => 7, 'style' => '']; |
|
|
|
|
|
|
15
|
|
|
//$this->pdf->textBox($this->margem, $y, $this->wPrint, $this->bloco5H, '', $aFont, 'T', 'C', true, '', false); |
|
16
|
|
|
$arpgto = []; |
|
17
|
|
|
if ($this->pag->length > 0) { |
|
18
|
|
|
foreach ($this->pag as $pgto) { |
|
|
|
|
|
|
19
|
|
|
$tipo = $this->pagType((int) $this->getTagValue($pgto, 'tPag')); |
|
|
|
|
|
|
20
|
|
|
$valor = number_format((float) $this->getTagValue($pgto, 'vPag'), 2, ',', '.'); |
|
|
|
|
|
|
21
|
|
|
$arpgto[] = [ |
|
22
|
|
|
'tipo' => $tipo, |
|
23
|
|
|
'valor' => $valor |
|
24
|
|
|
]; |
|
25
|
|
|
} |
|
26
|
|
|
} else { |
|
27
|
|
|
$tipo = $this->pagType((int) $this->getTagValue($this->pag, 'tPag')); |
|
|
|
|
|
|
28
|
|
|
$valor = number_format((float) $this->getTagValue($pgto, 'vPag'), 2, ',', '.'); |
|
|
|
|
|
|
29
|
|
|
$arpgto[] = [ |
|
30
|
|
|
'tipo' => $tipo, |
|
31
|
|
|
'valor' => $valor |
|
32
|
|
|
]; |
|
33
|
|
|
} |
|
34
|
|
|
$aFont = ['font'=> $this->fontePadrao, 'size' => 7, 'style' => '']; |
|
35
|
|
|
$texto = "FORMA PAGAMENTO"; |
|
36
|
|
|
$this->pdf->textBox($this->margem, $y, $this->wPrint, 4, $texto, $aFont, 'T', 'L', false, '', false); |
|
|
|
|
|
|
37
|
|
|
$texto = "VALOR PAGO R$"; |
|
38
|
|
|
$y1 = $this->pdf->textBox($this->margem, $y, $this->wPrint, 4, $texto, $aFont, 'T', 'R', false, '', false); |
|
39
|
|
|
|
|
40
|
|
|
$z = $y + $y1; |
|
41
|
|
|
foreach ($arpgto as $p) { |
|
42
|
|
|
$this->pdf->textBox($this->margem, $z, $this->wPrint, 3, $p['tipo'], $aFont, 'T', 'L', false, '', false); |
|
43
|
|
|
$y2 = $this->pdf->textBox( |
|
44
|
|
|
$this->margem, |
|
45
|
|
|
$z, |
|
46
|
|
|
$this->wPrint, |
|
47
|
|
|
3, |
|
48
|
|
|
$p['valor'], |
|
49
|
|
|
$aFont, |
|
50
|
|
|
'T', |
|
51
|
|
|
'R', |
|
52
|
|
|
false, |
|
53
|
|
|
'', |
|
54
|
|
|
false |
|
55
|
|
|
); |
|
56
|
|
|
$z += $y2; |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
|
|
$texto = "Troco R$"; |
|
60
|
|
|
$this->pdf->textBox($this->margem, $z, $this->wPrint, 3, $texto, $aFont, 'T', 'L', false, '', false); |
|
61
|
|
|
$texto = number_format($this->vTroco, 2, ',', '.'); |
|
|
|
|
|
|
62
|
|
|
$y1 = $this->pdf->textBox($this->margem, $z, $this->wPrint, 3, $texto, $aFont, 'T', 'R', false, '', false); |
|
|
|
|
|
|
63
|
|
|
|
|
64
|
|
|
|
|
65
|
|
|
$this->pdf->dashedHLine($this->margem, $this->bloco5H+$y, $this->wPrint, 0.1, 30); |
|
66
|
|
|
return $this->bloco5H + $y; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
protected function pagType($type) |
|
70
|
|
|
{ |
|
71
|
|
|
$lista = [ |
|
72
|
|
|
1 => 'Dinheiro', |
|
73
|
|
|
2 => 'Cheque', |
|
74
|
|
|
3 => 'Cartão de Crédito', |
|
75
|
|
|
4 => 'Cartão de Débito', |
|
76
|
|
|
5 => 'Crédito Loja', |
|
77
|
|
|
10 => 'Vale Alimentação', |
|
78
|
|
|
11 => 'Vale Refeição', |
|
79
|
|
|
12 => 'Vale Presente', |
|
80
|
|
|
13 => 'Vale Combustível', |
|
81
|
|
|
15 => 'Boleto Bancário', |
|
82
|
|
|
90 => 'Sem pagamento', |
|
83
|
|
|
99 => 'Outros' |
|
84
|
|
|
]; |
|
85
|
|
|
return $lista[$type]; |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
|
|
protected function calculateHeightPag() |
|
89
|
|
|
{ |
|
90
|
|
|
$n = $this->pag->length > 0 ? $this->pag->length : 1; |
|
91
|
|
|
$height = 4 + (2.4 * $n) + 3; |
|
92
|
|
|
return $height; |
|
93
|
|
|
} |
|
94
|
|
|
} |
|
95
|
|
|
|
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: