@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | } |
| 128 | 128 | $this->id = str_replace('ID', '', $this->infCanc->getAttribute("Id")); |
| 129 | 129 | $this->chCTe = $this->infCanc->getElementsByTagName("chCTe")->item(0)->nodeValue; |
| 130 | - $this->aEnd['CNPJ']=substr($this->chCTe, 6, 14); |
|
| 130 | + $this->aEnd['CNPJ'] = substr($this->chCTe, 6, 14); |
|
| 131 | 131 | $this->tpAmb = $this->infCanc->getElementsByTagName("tpAmb")->item(0)->nodeValue; |
| 132 | 132 | $this->xJust = $this->infCanc->getElementsByTagName("xJust")->item(0)->nodeValue; |
| 133 | 133 | $this->dhEvento = $this->retCancCTe->getElementsByTagName("dhRecbto")->item(0)->nodeValue; |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | $this->orientacao = $orientacao; |
| 180 | 180 | $this->papel = $papel; |
| 181 | 181 | $this->logoAlign = $logoAlign; |
| 182 | - if ($classPDF!==false) { |
|
| 182 | + if ($classPDF !== false) { |
|
| 183 | 183 | $this->pdf = $classPDF; |
| 184 | 184 | } else { |
| 185 | 185 | $this->pdf = new Pdf($this->orientacao, 'mm', $this->papel); |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | // posição inicial do relatorio |
| 192 | 192 | $xInic = 1; |
| 193 | 193 | $yInic = 1; |
| 194 | - if ($this->papel =='A4') { |
|
| 194 | + if ($this->papel == 'A4') { |
|
| 195 | 195 | $maxW = 210; |
| 196 | 196 | $maxH = 297; |
| 197 | 197 | } |
@@ -202,15 +202,15 @@ discard block |
||
| 202 | 202 | // posição inicial do relatorio |
| 203 | 203 | $xInic = 5; |
| 204 | 204 | $yInic = 5; |
| 205 | - if ($papel =='A4') { |
|
| 205 | + if ($papel == 'A4') { |
|
| 206 | 206 | $maxH = 210; |
| 207 | 207 | $maxW = 297; |
| 208 | 208 | } |
| 209 | 209 | } |
| 210 | 210 | //largura imprimivel em mm |
| 211 | - $this->wPrint = $maxW-($margEsq+$xInic); |
|
| 211 | + $this->wPrint = $maxW - ($margEsq + $xInic); |
|
| 212 | 212 | //comprimento imprimivel em mm |
| 213 | - $this->hPrint = $maxH-($margSup+$yInic); |
|
| 213 | + $this->hPrint = $maxH - ($margSup + $yInic); |
|
| 214 | 214 | // estabelece contagem de paginas |
| 215 | 215 | $this->pdf->aliasNbPages(); |
| 216 | 216 | // fixa as margens |
@@ -230,12 +230,12 @@ discard block |
||
| 230 | 230 | //coloca o cabeçalho |
| 231 | 231 | $y = $this->headerCCe($x, $y, $pag); |
| 232 | 232 | //coloca os dados da CCe |
| 233 | - $y = $this->bodyCCe($x, $y+15); |
|
| 233 | + $y = $this->bodyCCe($x, $y + 15); |
|
| 234 | 234 | //coloca os dados da CCe |
| 235 | - $y = $this->footerCCe($x, $y+$this->hPrint-20); |
|
| 235 | + $y = $this->footerCCe($x, $y + $this->hPrint - 20); |
|
| 236 | 236 | //retorna o ID do evento |
| 237 | - if ($classPDF!==false) { |
|
| 238 | - $aR = ['id'=>$this->id,'classe_PDF'=>$this->pdf]; |
|
| 237 | + if ($classPDF !== false) { |
|
| 238 | + $aR = ['id'=>$this->id, 'classe_PDF'=>$this->pdf]; |
|
| 239 | 239 | return $aR; |
| 240 | 240 | } else { |
| 241 | 241 | return $this->id; |
@@ -256,14 +256,14 @@ discard block |
||
| 256 | 256 | $maxW = $this->wPrint; |
| 257 | 257 | //############################################################# |
| 258 | 258 | //coluna esquerda identificação do emitente |
| 259 | - $w = round($maxW*0.41, 0);// 80; |
|
| 259 | + $w = round($maxW * 0.41, 0); // 80; |
|
| 260 | 260 | if ($this->orientacao == 'P') { |
| 261 | - $aFont = array('font'=>$this->fontePadrao,'size'=>6,'style'=>'I'); |
|
| 261 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>6, 'style'=>'I'); |
|
| 262 | 262 | } else { |
| 263 | - $aFont = array('font'=>$this->fontePadrao,'size'=>8,'style'=>'B'); |
|
| 263 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>8, 'style'=>'B'); |
|
| 264 | 264 | } |
| 265 | 265 | $w1 = $w; |
| 266 | - $h=32; |
|
| 266 | + $h = 32; |
|
| 267 | 267 | $oldY += $h; |
| 268 | 268 | $this->pdf->textBox($x, $y, $w, $h); |
| 269 | 269 | $texto = 'IDENTIFICAÇÃO DO EMITENTE'; |
@@ -271,147 +271,147 @@ discard block |
||
| 271 | 271 | if (is_file($this->logomarca)) { |
| 272 | 272 | $logoInfo = getimagesize($this->logomarca); |
| 273 | 273 | //largura da imagem em mm |
| 274 | - $logoWmm = ($logoInfo[0]/72)*25.4; |
|
| 274 | + $logoWmm = ($logoInfo[0] / 72) * 25.4; |
|
| 275 | 275 | //altura da imagem em mm |
| 276 | - $logoHmm = ($logoInfo[1]/72)*25.4; |
|
| 277 | - if ($this->logoAlign=='L') { |
|
| 278 | - $nImgW = round($w/3, 0); |
|
| 279 | - $nImgH = round($logoHmm * ($nImgW/$logoWmm), 0); |
|
| 280 | - $xImg = $x+1; |
|
| 281 | - $yImg = round(($h-$nImgH)/2, 0)+$y; |
|
| 276 | + $logoHmm = ($logoInfo[1] / 72) * 25.4; |
|
| 277 | + if ($this->logoAlign == 'L') { |
|
| 278 | + $nImgW = round($w / 3, 0); |
|
| 279 | + $nImgH = round($logoHmm * ($nImgW / $logoWmm), 0); |
|
| 280 | + $xImg = $x + 1; |
|
| 281 | + $yImg = round(($h - $nImgH) / 2, 0) + $y; |
|
| 282 | 282 | //estabelecer posições do texto |
| 283 | - $x1 = round($xImg + $nImgW +1, 0); |
|
| 284 | - $y1 = round($h/3+$y, 0); |
|
| 285 | - $tw = round(2*$w/3, 0); |
|
| 283 | + $x1 = round($xImg + $nImgW + 1, 0); |
|
| 284 | + $y1 = round($h / 3 + $y, 0); |
|
| 285 | + $tw = round(2 * $w / 3, 0); |
|
| 286 | 286 | } |
| 287 | - if ($this->logoAlign=='C') { |
|
| 288 | - $nImgH = round($h/3, 0); |
|
| 289 | - $nImgW = round($logoWmm * ($nImgH/$logoHmm), 0); |
|
| 290 | - $xImg = round(($w-$nImgW)/2+$x, 0); |
|
| 291 | - $yImg = $y+3; |
|
| 287 | + if ($this->logoAlign == 'C') { |
|
| 288 | + $nImgH = round($h / 3, 0); |
|
| 289 | + $nImgW = round($logoWmm * ($nImgH / $logoHmm), 0); |
|
| 290 | + $xImg = round(($w - $nImgW) / 2 + $x, 0); |
|
| 291 | + $yImg = $y + 3; |
|
| 292 | 292 | $x1 = $x; |
| 293 | 293 | $y1 = round($yImg + $nImgH + 1, 0); |
| 294 | 294 | $tw = $w; |
| 295 | 295 | } |
| 296 | - if ($this->logoAlign=='R') { |
|
| 297 | - $nImgW = round($w/3, 0); |
|
| 298 | - $nImgH = round($logoHmm * ($nImgW/$logoWmm), 0); |
|
| 299 | - $xImg = round($x+($w-(1+$nImgW)), 0); |
|
| 300 | - $yImg = round(($h-$nImgH)/2, 0)+$y; |
|
| 296 | + if ($this->logoAlign == 'R') { |
|
| 297 | + $nImgW = round($w / 3, 0); |
|
| 298 | + $nImgH = round($logoHmm * ($nImgW / $logoWmm), 0); |
|
| 299 | + $xImg = round($x + ($w - (1 + $nImgW)), 0); |
|
| 300 | + $yImg = round(($h - $nImgH) / 2, 0) + $y; |
|
| 301 | 301 | $x1 = $x; |
| 302 | - $y1 = round($h/3+$y, 0); |
|
| 303 | - $tw = round(2*$w/3, 0); |
|
| 302 | + $y1 = round($h / 3 + $y, 0); |
|
| 303 | + $tw = round(2 * $w / 3, 0); |
|
| 304 | 304 | } |
| 305 | 305 | $this->pdf->image($this->logomarca, $xImg, $yImg, $nImgW, $nImgH, 'jpeg'); |
| 306 | 306 | } else { |
| 307 | 307 | $x1 = $x; |
| 308 | - $y1 = round($h/3+$y, 0); |
|
| 308 | + $y1 = round($h / 3 + $y, 0); |
|
| 309 | 309 | $tw = $w; |
| 310 | 310 | } |
| 311 | 311 | //Nome emitente |
| 312 | - $aFont = array('font'=>$this->fontePadrao,'size'=>12,'style'=>'B'); |
|
| 313 | - $texto = (isset($this->aEnd['razao'])?$this->aEnd['razao']:''); |
|
| 312 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>12, 'style'=>'B'); |
|
| 313 | + $texto = (isset($this->aEnd['razao']) ? $this->aEnd['razao'] : ''); |
|
| 314 | 314 | $this->pdf->textBox($x1, $y1, $tw, 8, $texto, $aFont, 'T', 'C', 0, ''); |
| 315 | 315 | //endereço |
| 316 | - $y1 = $y1+6; |
|
| 317 | - $aFont = array('font'=>$this->fontePadrao,'size'=>8,'style'=>''); |
|
| 318 | - $lgr = (isset($this->aEnd['logradouro'])?$this->aEnd['logradouro']:''); |
|
| 319 | - $nro = (isset($this->aEnd['numero'])?$this->aEnd['numero']:''); |
|
| 320 | - $cpl = (isset($this->aEnd['complemento'])?$this->aEnd['complemento']:''); |
|
| 321 | - $bairro = (isset($this->aEnd['bairro'])?$this->aEnd['bairro']:''); |
|
| 322 | - $CEP = (isset($this->aEnd['CEP'])?$this->aEnd['CEP']:''); |
|
| 316 | + $y1 = $y1 + 6; |
|
| 317 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>8, 'style'=>''); |
|
| 318 | + $lgr = (isset($this->aEnd['logradouro']) ? $this->aEnd['logradouro'] : ''); |
|
| 319 | + $nro = (isset($this->aEnd['numero']) ? $this->aEnd['numero'] : ''); |
|
| 320 | + $cpl = (isset($this->aEnd['complemento']) ? $this->aEnd['complemento'] : ''); |
|
| 321 | + $bairro = (isset($this->aEnd['bairro']) ? $this->aEnd['bairro'] : ''); |
|
| 322 | + $CEP = (isset($this->aEnd['CEP']) ? $this->aEnd['CEP'] : ''); |
|
| 323 | 323 | $CEP = $this->format($CEP, "#####-###"); |
| 324 | - $mun = (isset($this->aEnd['municipio'])?$this->aEnd['municipio']:''); |
|
| 325 | - $UF = (isset($this->aEnd['UF'])?$this->aEnd['UF']:''); |
|
| 326 | - $fone = (isset($this->aEnd['telefone'])?$this->aEnd['telefone']:''); |
|
| 327 | - $email = (isset($this->aEnd['email'])?$this->aEnd['email']:''); |
|
| 324 | + $mun = (isset($this->aEnd['municipio']) ? $this->aEnd['municipio'] : ''); |
|
| 325 | + $UF = (isset($this->aEnd['UF']) ? $this->aEnd['UF'] : ''); |
|
| 326 | + $fone = (isset($this->aEnd['telefone']) ? $this->aEnd['telefone'] : ''); |
|
| 327 | + $email = (isset($this->aEnd['email']) ? $this->aEnd['email'] : ''); |
|
| 328 | 328 | $foneLen = strlen($fone); |
| 329 | 329 | if ($foneLen > 0) { |
| 330 | - $fone2 = substr($fone, 0, $foneLen-4); |
|
| 331 | - $fone1 = substr($fone, 0, $foneLen-8); |
|
| 330 | + $fone2 = substr($fone, 0, $foneLen - 4); |
|
| 331 | + $fone1 = substr($fone, 0, $foneLen - 8); |
|
| 332 | 332 | $fone = '(' . $fone1 . ') ' . substr($fone2, -4) . '-' . substr($fone, -4); |
| 333 | 333 | } else { |
| 334 | 334 | $fone = ''; |
| 335 | 335 | } |
| 336 | 336 | if ($email != '') { |
| 337 | - $email = 'Email: '.$email; |
|
| 337 | + $email = 'Email: ' . $email; |
|
| 338 | 338 | } |
| 339 | 339 | $texto = ""; |
| 340 | - $tmp_txt=trim(($lgr!=''?"$lgr, ":'').($nro!=0?$nro:"SN").($cpl!=''?" - $cpl":'')); |
|
| 341 | - $tmp_txt=($tmp_txt=='SN'?'':$tmp_txt); |
|
| 342 | - $texto .= ($texto!='' && $tmp_txt!=''?"\n":'').$tmp_txt; |
|
| 343 | - $tmp_txt=trim($bairro . ($bairro!='' && $CEP!=''?" - ":'') . $CEP); |
|
| 344 | - $texto .= ($texto!='' && $tmp_txt!=''?"\n":'').$tmp_txt; |
|
| 345 | - $tmp_txt=$mun; |
|
| 346 | - $tmp_txt.=($tmp_txt!='' && $UF!=''?" - ":'').$UF; |
|
| 347 | - $tmp_txt.=($tmp_txt!='' && $fone!=''?" - ":'').$fone; |
|
| 348 | - $texto .= ($texto!='' && $tmp_txt!=''?"\n":'').$tmp_txt; |
|
| 349 | - $tmp_txt=$email; |
|
| 350 | - $texto .= ($texto!='' && $tmp_txt!=''?"\n":'').$tmp_txt; |
|
| 351 | - $this->pdf->textBox($x1, $y1-2, $tw, 8, $texto, $aFont, 'T', 'C', 0, ''); |
|
| 340 | + $tmp_txt = trim(($lgr != '' ? "$lgr, " : '') . ($nro != 0 ? $nro : "SN") . ($cpl != '' ? " - $cpl" : '')); |
|
| 341 | + $tmp_txt = ($tmp_txt == 'SN' ? '' : $tmp_txt); |
|
| 342 | + $texto .= ($texto != '' && $tmp_txt != '' ? "\n" : '') . $tmp_txt; |
|
| 343 | + $tmp_txt = trim($bairro . ($bairro != '' && $CEP != '' ? " - " : '') . $CEP); |
|
| 344 | + $texto .= ($texto != '' && $tmp_txt != '' ? "\n" : '') . $tmp_txt; |
|
| 345 | + $tmp_txt = $mun; |
|
| 346 | + $tmp_txt .= ($tmp_txt != '' && $UF != '' ? " - " : '') . $UF; |
|
| 347 | + $tmp_txt .= ($tmp_txt != '' && $fone != '' ? " - " : '') . $fone; |
|
| 348 | + $texto .= ($texto != '' && $tmp_txt != '' ? "\n" : '') . $tmp_txt; |
|
| 349 | + $tmp_txt = $email; |
|
| 350 | + $texto .= ($texto != '' && $tmp_txt != '' ? "\n" : '') . $tmp_txt; |
|
| 351 | + $this->pdf->textBox($x1, $y1 - 2, $tw, 8, $texto, $aFont, 'T', 'C', 0, ''); |
|
| 352 | 352 | //################################################## |
| 353 | 353 | $w2 = round($maxW - $w, 0); |
| 354 | 354 | $x += $w; |
| 355 | 355 | $this->pdf->textBox($x, $y, $w2, $h); |
| 356 | 356 | $y1 = $y + $h; |
| 357 | - $aFont = array('font'=>$this->fontePadrao,'size'=>16,'style'=>'B'); |
|
| 358 | - $this->pdf->textBox($x, $y+2, $w2, 8, 'Representação Gráfica de ProtCancCTe', $aFont, 'T', 'C', 0, ''); |
|
| 359 | - $aFont = array('font'=>$this->fontePadrao,'size'=>12,'style'=>'I'); |
|
| 360 | - $this->pdf->textBox($x, $y+7, $w2, 8, '(Protocolo Cancelamento de CTe)', $aFont, 'T', 'C', 0, ''); |
|
| 357 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>16, 'style'=>'B'); |
|
| 358 | + $this->pdf->textBox($x, $y + 2, $w2, 8, 'Representação Gráfica de ProtCancCTe', $aFont, 'T', 'C', 0, ''); |
|
| 359 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>12, 'style'=>'I'); |
|
| 360 | + $this->pdf->textBox($x, $y + 7, $w2, 8, '(Protocolo Cancelamento de CTe)', $aFont, 'T', 'C', 0, ''); |
|
| 361 | 361 | $tsHora = $this->convertTime($this->dhEvento); |
| 362 | - $texto = 'Criado em : '. date('d/m/Y H:i:s', $tsHora); |
|
| 363 | - $this->pdf->textBox($x, $y+20, $w2, 8, $texto, $aFont, 'T', 'L', 0, ''); |
|
| 362 | + $texto = 'Criado em : ' . date('d/m/Y H:i:s', $tsHora); |
|
| 363 | + $this->pdf->textBox($x, $y + 20, $w2, 8, $texto, $aFont, 'T', 'L', 0, ''); |
|
| 364 | 364 | $tsHora = $this->convertTime($this->dhRegEvento); |
| 365 | - $texto = 'Prococolo: '.$this->nProt.' - Registrado na SEFAZ em: '.date('d/m/Y H:i:s', $tsHora); |
|
| 366 | - $this->pdf->textBox($x, $y+25, $w2, 8, $texto, $aFont, 'T', 'L', 0, ''); |
|
| 365 | + $texto = 'Prococolo: ' . $this->nProt . ' - Registrado na SEFAZ em: ' . date('d/m/Y H:i:s', $tsHora); |
|
| 366 | + $this->pdf->textBox($x, $y + 25, $w2, 8, $texto, $aFont, 'T', 'L', 0, ''); |
|
| 367 | 367 | //#################################################### |
| 368 | 368 | $x = $oldX; |
| 369 | 369 | $this->pdf->textBox($x, $y1, $maxW, 33); |
| 370 | - $sY = $y1+23; |
|
| 370 | + $sY = $y1 + 23; |
|
| 371 | 371 | $texto = 'De acordo com as determinações legais vigentes, vimos por meio desta ' |
| 372 | 372 | . 'comunicar-lhe que o Conhecimento de Transporte Eletrônico, abaixo ' |
| 373 | 373 | . 'referenciada, encontra-se cancelada, solicitamos que sejam aplicadas ' |
| 374 | 374 | . 'essas correções ao executar seus lançamentos fiscais.'; |
| 375 | - $aFont = array('font'=>$this->fontePadrao,'size'=>10,'style'=>''); |
|
| 376 | - $this->pdf->textBox($x+5, $y1, $maxW-5, 20, $texto, $aFont, 'T', 'L', 0, '', false); |
|
| 375 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>10, 'style'=>''); |
|
| 376 | + $this->pdf->textBox($x + 5, $y1, $maxW - 5, 20, $texto, $aFont, 'T', 'L', 0, '', false); |
|
| 377 | 377 | //############################################ |
| 378 | 378 | $x = $oldX; |
| 379 | 379 | $y = $y1; |
| 380 | 380 | $numNF = substr($this->chCTe, 25, 9); |
| 381 | 381 | $serie = substr($this->chCTe, 22, 3); |
| 382 | 382 | $numNF = $this->format($numNF, "###.###.###"); |
| 383 | - $texto = "Conhecimento: " . $numNF .' - Série: '.$serie; |
|
| 384 | - $this->pdf->textBox($x+2, $y+11, $w2, 8, $texto, $aFont, 'T', 'L', 0, ''); |
|
| 383 | + $texto = "Conhecimento: " . $numNF . ' - Série: ' . $serie; |
|
| 384 | + $this->pdf->textBox($x + 2, $y + 11, $w2, 8, $texto, $aFont, 'T', 'L', 0, ''); |
|
| 385 | 385 | $bW = 87; |
| 386 | 386 | $bH = 15; |
| 387 | 387 | $x = 55; |
| 388 | - $y = $y1+10; |
|
| 388 | + $y = $y1 + 10; |
|
| 389 | 389 | $w = $maxW; |
| 390 | 390 | $this->pdf->setFillColor(0, 0, 0); |
| 391 | - $this->pdf->code128($x+(($w-$bW)/2), $y+2, $this->chCTe, $bW, $bH); |
|
| 391 | + $this->pdf->code128($x + (($w - $bW) / 2), $y + 2, $this->chCTe, $bW, $bH); |
|
| 392 | 392 | $this->pdf->setFillColor(255, 255, 255); |
| 393 | - $y1 = $y+2+$bH; |
|
| 394 | - $aFont = array('font'=>$this->fontePadrao,'size'=>10,'style'=>''); |
|
| 393 | + $y1 = $y + 2 + $bH; |
|
| 394 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>10, 'style'=>''); |
|
| 395 | 395 | $texto = $this->format($this->chCTe, $this->formatoChave); |
| 396 | - $this->pdf->textBox($x, $y1, $w-2, $h, $texto, $aFont, 'T', 'C', 0, ''); |
|
| 396 | + $this->pdf->textBox($x, $y1, $w - 2, $h, $texto, $aFont, 'T', 'C', 0, ''); |
|
| 397 | 397 | $retVal = $sY; |
| 398 | 398 | //indicar sem valor |
| 399 | 399 | if ($this->tpAmb != 1) { |
| 400 | 400 | $x = 10; |
| 401 | 401 | if ($this->orientacao == 'P') { |
| 402 | - $y = round($this->hPrint*2/3, 0); |
|
| 402 | + $y = round($this->hPrint * 2 / 3, 0); |
|
| 403 | 403 | } else { |
| 404 | - $y = round($this->hPrint/2, 0); |
|
| 404 | + $y = round($this->hPrint / 2, 0); |
|
| 405 | 405 | } |
| 406 | 406 | $h = 5; |
| 407 | - $w = $maxW-(2*$x); |
|
| 407 | + $w = $maxW - (2 * $x); |
|
| 408 | 408 | $this->pdf->setTextColor(90, 90, 90); |
| 409 | 409 | $texto = "SEM VALOR FISCAL"; |
| 410 | - $aFont = array('font'=>$this->fontePadrao,'size'=>48,'style'=>'B'); |
|
| 410 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>48, 'style'=>'B'); |
|
| 411 | 411 | $this->pdf->textBox($x, $y, $w, $h, $texto, $aFont, 'C', 'C', 0, ''); |
| 412 | - $aFont = array('font'=>$this->fontePadrao,'size'=>30,'style'=>'B'); |
|
| 412 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>30, 'style'=>'B'); |
|
| 413 | 413 | $texto = "AMBIENTE DE HOMOLOGAÇÃO"; |
| 414 | - $this->pdf->textBox($x, $y+14, $w, $h, $texto, $aFont, 'C', 'C', 0, ''); |
|
| 414 | + $this->pdf->textBox($x, $y + 14, $w, $h, $texto, $aFont, 'C', 'C', 0, ''); |
|
| 415 | 415 | $this->pdf->setTextColor(0, 0, 0); |
| 416 | 416 | } |
| 417 | 417 | return $retVal; |
@@ -426,13 +426,13 @@ discard block |
||
| 426 | 426 | { |
| 427 | 427 | $maxW = $this->wPrint; |
| 428 | 428 | $texto = 'JUSTIFICATIVA DO CANCELAMENTO'; |
| 429 | - $aFont = array('font'=>$this->fontePadrao,'size'=>10,'style'=>'B'); |
|
| 429 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>10, 'style'=>'B'); |
|
| 430 | 430 | $this->pdf->textBox($x, $y, $maxW, 5, $texto, $aFont, 'T', 'L', 0, '', false); |
| 431 | 431 | $y += 5; |
| 432 | 432 | $this->pdf->textBox($x, $y, $maxW, 210); |
| 433 | 433 | $texto = $this->xJust; |
| 434 | - $aFont = array('font'=>$this->fontePadrao,'size'=>12,'style'=>'B'); |
|
| 435 | - $this->pdf->textBox($x+2, $y+2, $maxW-2, 150, $texto, $aFont, 'T', 'L', 0, '', false); |
|
| 434 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>12, 'style'=>'B'); |
|
| 435 | + $this->pdf->textBox($x + 2, $y + 2, $maxW - 2, 150, $texto, $aFont, 'T', 'L', 0, '', false); |
|
| 436 | 436 | } |
| 437 | 437 | |
| 438 | 438 | /** |
@@ -449,17 +449,17 @@ discard block |
||
| 449 | 449 | . "validade fiscal.\n O Protocolo deve ser recebido e mantido" |
| 450 | 450 | . " em arquivo eletrônico XML e pode ser consultada através dos" |
| 451 | 451 | . " Portais das SEFAZ."; |
| 452 | - $aFont = array('font'=>$this->fontePadrao,'size'=>10,'style'=>'I'); |
|
| 452 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>10, 'style'=>'I'); |
|
| 453 | 453 | $this->pdf->textBox($x, $y, $w, 20, $texto, $aFont, 'T', 'C', 0, '', false); |
| 454 | - $y = $this->hPrint -4; |
|
| 455 | - $texto = "Impresso em ". date('d/m/Y H:i:s'); |
|
| 456 | - $w = $this->wPrint-4; |
|
| 457 | - $aFont = array('font'=>$this->fontePadrao,'size'=>6,'style'=>'I'); |
|
| 454 | + $y = $this->hPrint - 4; |
|
| 455 | + $texto = "Impresso em " . date('d/m/Y H:i:s'); |
|
| 456 | + $w = $this->wPrint - 4; |
|
| 457 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>6, 'style'=>'I'); |
|
| 458 | 458 | $this->pdf->textBox($x, $y, $w, 4, $texto, $aFont, 'T', 'L', 0, ''); |
| 459 | 459 | $texto = "DaCanccteNFePHP ver. " |
| 460 | 460 | . $this->version |
| 461 | 461 | . " Powered by NFePHP (GNU/GPLv3 GNU/LGPLv3) © www.nfephp.org"; |
| 462 | - $aFont = array('font'=>$this->fontePadrao,'size'=>6,'style'=>'I'); |
|
| 462 | + $aFont = array('font'=>$this->fontePadrao, 'size'=>6, 'style'=>'I'); |
|
| 463 | 463 | $this->pdf->textBox($x, $y, $w, 4, $texto, $aFont, 'T', 'R', 0, 'http://www.nfephp.org'); |
| 464 | 464 | } |
| 465 | 465 | |