-
Notifications
You must be signed in to change notification settings - Fork 686
/
ToolsNFe.php
executable file
·2267 lines (2205 loc) · 82.4 KB
/
ToolsNFe.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
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace NFePHP\NFe;
/**
* Classe principal para a comunicação com a SEFAZ
*
* @category NFePHP
* @package NFePHP\NFe\ToolsNFe
* @copyright Copyright (c) 2008-2015
* @license http://www.gnu.org/licenses/lesser.html LGPL v3
* @author Roberto L. Machado <linux.rlm at gmail dot com>
* @link http://github.com/nfephp-org/nfephp for the canonical source repository
*/
use NFePHP\Common\Base\BaseTools;
use NFePHP\Common\DateTime\DateTime;
use NFePHP\Common\LotNumber\LotNumber;
use NFePHP\Common\Strings\Strings;
use NFePHP\Common\Files;
use NFePHP\Common\Exception;
use NFePHP\Common\Dom\Dom;
use NFePHP\NFe\ReturnNFe;
use NFePHP\NFe\MailNFe;
use NFePHP\NFe\IdentifyNFe;
use NFePHP\Common\Dom\ValidXsd;
use NFePHP\Extras;
if (!defined('NFEPHP_ROOT')) {
define('NFEPHP_ROOT', dirname(dirname(dirname(__FILE__))));
}
class ToolsNFe extends BaseTools
{
/**
* errrors
*
* @var string
*/
public $errors = array();
/**
* soapDebug
*
* @var string
*/
public $soapDebug = '';
/**
* urlPortal
* Instância do WebService
*
* @var string
*/
protected $urlPortal = 'http://www.portalfiscal.inf.br/nfe';
/**
* aLastRetEvent
*
* @var array
*/
private $aLastRetEvent = array();
/**
* Define se salva as mensagens dos eventos em arquivo
*
* @var bool
*/
private $bSalvarMensagensEvento = true;
/**
* setModelo
*
* Ajusta o modelo da NFe 55 ou 65
*
* @param string $modelo
*/
public function setModelo($modelo = '55')
{
//força pelo menos um modelo correto
if ($modelo != '55' && $modelo != '65') {
$modelo = '55';
}
$this->modelo = $modelo;
}
/**
* getModelo
* Retorna o modelo de NFe atualmente setado
*
* @return string
*/
public function getModelo()
{
return $this->modelo;
}
/**
* ativaContingencia
* Ativa a contingencia SVCAN ou SVCRS conforme a
* sigla do estado ou EPEC
*
* @param string $siglaUF
* @param string $motivo
* @param string $tipo
* @return bool
*/
public function ativaContingencia($siglaUF = '', $motivo = '', $tipo = '')
{
if ($siglaUF == '' || $motivo == '') {
return false;
}
if ($this->enableSVCAN || $this->enableSVCRS || $this->enableEPEC) {
return true;
}
$this->motivoContingencia = $motivo;
$this->tsContingencia = time(); // mktime() necessita de paramentos...
$ctgList = array(
'AC'=>'SVCAN',
'AL'=>'SVCAN',
'AM'=>'SVCAN',
'AP'=>'SVCRS',
'BA'=>'SVCRS',
'CE'=>'SVCRS',
'DF'=>'SVCAN',
'ES'=>'SVCRS',
'GO'=>'SVCRS',
'MA'=>'SVCRS',
'MG'=>'SVCAN',
'MS'=>'SVCRS',
'MT'=>'SVCRS',
'PA'=>'SVCRS',
'PB'=>'SVCAN',
'PE'=>'SVCRS',
'PI'=>'SVCRS',
'PR'=>'SVCRS',
'RJ'=>'SVCAN',
'RN'=>'SVCRS',
'RO'=>'SVCAN',
'RR'=>'SVCAN',
'RS'=>'SVCAN',
'SC'=>'SVCAN',
'SE'=>'SVCAN',
'SP'=>'SVCAN',
'TO'=>'SVCAN'
);
$ctg = $ctgList[$siglaUF];
$this->enableSVCAN = false;
$this->enableSVCRS = false;
$this->enableEPEC = false;
if ($tipo == 'EPEC') {
$this->enableEPEC = true;
} else {
if ($ctg == 'SVCAN') {
$this->enableSVCAN = true;
} elseif ($ctg == 'SVCRS') {
$this->enableSVCRS = true;
}
}
$aCont = array(
'motivo' => $this->motivoContingencia,
'ts' => $this->tsContingencia,
'SVCAN' => $this->enableSVCAN,
'SVCRS' => $this->enableSVCRS,
'EPEC' => $this->enableEPEC
);
$strJson = json_encode($aCont);
$filename = NFEPHP_ROOT
. DIRECTORY_SEPARATOR
. 'config'
. DIRECTORY_SEPARATOR
. $this->aConfig['cnpj']
. '_contingencia.json';
file_put_contents($filename, $strJson);
return true;
}
/**
* desativaContingencia
* Desliga opção de contingência
*
* @return boolean
*/
public function desativaContingencia()
{
$this->enableSVCAN = false;
$this->enableSVCRS = false;
$this->enableEPEC = false;
$this->tsContingencia = 0;
$this->motivoContingencia = '';
$filename = NFEPHP_ROOT
. DIRECTORY_SEPARATOR
. 'config'
. DIRECTORY_SEPARATOR
. $this->aConfig['cnpj']
. '_contingencia.json';
return Files\FilesFolders::removeFile($filename);
}
/**
* imprime
* Imprime o documento eletrônico (NFe, CCe, Inut.)
*
* @param string $pathXml
* @param string $pathDestino
* @param string $printer
* @return string
*/
public function imprime($pathXml = '', $pathDestino = '', $printer = '')
{
//TODO : falta implementar esse método para isso é necessária a classe
//PrintNFe
return "$pathXml $pathDestino $printer";
}
/**
* enviaMail
* Envia a NFe por email aos destinatários
* Caso $aMails esteja vazio serão obtidos os email do destinatário e
* os emails que estiverem registrados nos campos obsCont do xml
*
* @param string $pathXml
* @param array $aMails
* @param string $templateFile path completo ao arquivo template html do corpo do email
* @param boolean $comPdf se true o sistema irá renderizar o DANFE e anexa-lo a mensagem
* @param string $pathPdf
* @return boolean
* @throws Exception\RuntimeException
*/
public function enviaMail($pathXml = '', $aMails = array(), $templateFile = '', $comPdf = false, $pathPdf = '')
{
$mail = new MailNFe($this->aMailConf);
// Se não for informado o caminho do PDF, monta um através do XML
if ($comPdf && $this->modelo == '55' && $pathPdf == '') {
$docxml = Files\FilesFolders::readFile($pathXml);
$danfe = new Extras\Danfe($docxml, 'P', 'A4', $this->aDocFormat['pathLogoFile'], 'I', '');
$id = $danfe->montaDANFE();
$pathPdf = $this->aConfig['pathNFeFiles']
. DIRECTORY_SEPARATOR
. $this->ambiente
. DIRECTORY_SEPARATOR
. 'pdf'
. DIRECTORY_SEPARATOR
. $id . '-danfe.pdf';
$pdf = $danfe->printDANFE($pathPdf, 'F');
}
if ($templateFile != '') {
$mail->setTemplate($templateFile);
}
if ($mail->envia($pathXml, $aMails, $comPdf, $pathPdf) === false) {
throw new Exception\RuntimeException('Email não enviado. '.$mail->error);
}
return true;
}
/**
* addB2B
* Adiciona tags de comunicação B2B, especialmente ANFAVEA
*
* @param string $pathNFefile
* @param string $pathB2Bfile
* @param string $tagB2B
* @return string
* @throws Exception\InvalidArgumentException
* @throws Exception\RuntimeException
*/
public function addB2B($pathNFefile = '', $pathB2Bfile = '', $tagB2B = '')
{
if (! is_file($pathNFefile) || ! is_file($pathB2Bfile)) {
$msg = "Algum dos arquivos não foi localizado no caminho indicado ! $pathNFefile ou $pathB2Bfile";
throw new Exception\InvalidArgumentException($msg);
}
if ($tagB2B == '') {
//padrão anfavea
$tagB2B = 'NFeB2BFin';
}
$docnfe = new Dom();
$docnfe->loadXMLFile($pathNFefile);
$nodenfe = $docnfe->getNode('nfeProc', 0);
if ($nodenfe == '') {
$msg = "O arquivo indicado como NFe não está protocolado ou não é uma NFe!!";
throw new Exception\RuntimeException($msg);
}
//carrega o arquivo B2B
$docb2b = new Dom();
$docb2b->loadXMLFile($pathNFefile);
$nodeb2b = $docnfe->getNode($tagB2B, 0);
if ($nodeb2b == '') {
$msg = "O arquivo indicado como B2B não contên a tag requerida!!";
throw new Exception\RuntimeException($msg);
}
//cria a NFe processada com a tag do protocolo
$procb2b = new Dom();
//cria a tag nfeProc
$nfeProcB2B = $procb2b->createElement('nfeProcB2B');
$procb2b->appendChild($nfeProcB2B);
//inclui a tag NFe
$node1 = $procb2b->importNode($nodenfe, true);
$nfeProcB2B->appendChild($node1);
//inclui a tag NFeB2BFin
$node2 = $procb2b->importNode($nodeb2b, true);
$nfeProcB2B->appendChild($node2);
//salva o xml como string em uma variável
$nfeb2bXML = $procb2b->saveXML();
//remove as informações indesejadas
$nfeb2bXMLString = str_replace(array("\n","\r","\s"), '', $nfeb2bXML);
return (string) $nfeb2bXMLString;
}
/**
* addProtocolo
* Adiciona o protocolo de autorização de uso da NFe
* NOTA: exigência da SEFAZ, a nota somente é válida com o seu respectivo protocolo
*
* @param string $pathNFefile
* @param string $pathProtfile
* @param boolean $saveFile
* @return string
* @throws Exception\RuntimeException
*/
public function addProtocolo($pathNFefile = '', $pathProtfile = '', $saveFile = false)
{
//carrega a NFe
$docnfe = new Dom();
if (file_exists($pathNFefile)) {
//carrega o XML pelo caminho do arquivo informado
$docnfe->loadXMLFile($pathNFefile);
} else {
//carrega o XML pelo conteúdo
$docnfe->loadXMLString($pathNFefile);
}
$nodenfe = $docnfe->getNode('NFe', 0);
if ($nodenfe == '') {
$msg = "O arquivo indicado como NFe não é um xml de NFe!";
throw new Exception\RuntimeException($msg);
}
if ($docnfe->getNode('Signature') == '') {
$msg = "A NFe não está assinada!";
throw new Exception\RuntimeException($msg);
}
//carrega o protocolo
$docprot = new Dom();
if (file_exists($pathProtfile)) {
//carrega o XML pelo caminho do arquivo informado
$docprot->loadXMLFile($pathProtfile);
} else {
//carrega o XML pelo conteúdo
$docprot->loadXMLString($pathProtfile);
}
$nodeprots = $docprot->getElementsByTagName('protNFe');
if ($nodeprots->length == 0) {
$msg = "O arquivo indicado não contem um protocolo de autorização!";
throw new Exception\RuntimeException($msg);
}
//carrega dados da NFe
$tpAmb = $docnfe->getNodeValue('tpAmb');
$anomes = date(
'Ym',
DateTime::convertSefazTimeToTimestamp($docnfe->getNodeValue('dhEmi'))
);
$infNFe = $docnfe->getNode("infNFe", 0);
$versao = $infNFe->getAttribute("versao");
$chaveId = $infNFe->getAttribute("Id");
$chaveNFe = preg_replace('/[^0-9]/', '', $chaveId);
$digValueNFe = $docnfe->getNodeValue('DigestValue');
//carrega os dados do protocolo
for ($i = 0; $i < $nodeprots->length; $i++) {
$nodeprot = $nodeprots->item($i);
$protver = $nodeprot->getAttribute("versao");
$chaveProt = $nodeprot->getElementsByTagName("chNFe")->item(0)->nodeValue;
$digValueProt = ($nodeprot->getElementsByTagName("digVal")->length)
? $nodeprot->getElementsByTagName("digVal")->item(0)->nodeValue
: '';
$infProt = $nodeprot->getElementsByTagName("infProt")->item(0);
if ($digValueNFe == $digValueProt && $chaveNFe == $chaveProt) {
break;
}
}
if ($digValueNFe != $digValueProt) {
$msg = "Inconsistência! O DigestValue da NFe não combina com o do digVal do protocolo indicado!";
throw new Exception\RuntimeException($msg);
}
if ($chaveNFe != $chaveProt) {
$msg = "O protocolo indicado pertence a outra NFe. Os números das chaves não combinam !";
throw new Exception\RuntimeException($msg);
}
//cria a NFe processada com a tag do protocolo
$procnfe = new \DOMDocument('1.0', 'utf-8');
$procnfe->formatOutput = false;
$procnfe->preserveWhiteSpace = false;
//cria a tag nfeProc
$nfeProc = $procnfe->createElement('nfeProc');
$procnfe->appendChild($nfeProc);
//estabele o atributo de versão
$nfeProcAtt1 = $nfeProc->appendChild($procnfe->createAttribute('versao'));
$nfeProcAtt1->appendChild($procnfe->createTextNode($protver));
//estabelece o atributo xmlns
$nfeProcAtt2 = $nfeProc->appendChild($procnfe->createAttribute('xmlns'));
$nfeProcAtt2->appendChild($procnfe->createTextNode($this->urlPortal));
//inclui a tag NFe
$node = $procnfe->importNode($nodenfe, true);
$nfeProc->appendChild($node);
//cria tag protNFe
$protNFe = $procnfe->createElement('protNFe');
$nfeProc->appendChild($protNFe);
//estabele o atributo de versão
$protNFeAtt1 = $protNFe->appendChild($procnfe->createAttribute('versao'));
$protNFeAtt1->appendChild($procnfe->createTextNode($versao));
//cria tag infProt
$nodep = $procnfe->importNode($infProt, true);
$protNFe->appendChild($nodep);
//salva o xml como string em uma variável
$procXML = $procnfe->saveXML();
//remove as informações indesejadas
$procXML = Strings::clearProt($procXML);
if ($saveFile) {
$filename = "{$chaveNFe}-protNFe.xml";
$this->zGravaFile(
'nfe',
$tpAmb,
$filename,
$procXML,
'enviadas'.DIRECTORY_SEPARATOR.'aprovadas',
$anomes
);
}
return $procXML;
}
/**
* addCancelamento
* Adiciona a tga de cancelamento a uma NFe já autorizada
* NOTA: não é requisito da SEFAZ, mas auxilia na identificação das NFe que foram canceladas
*
* @param string $pathNFefile
* @param string $pathCancfile
* @param bool $saveFile
* @return string
* @throws Exception\RuntimeException
*/
public function addCancelamento($pathNFefile = '', $pathCancfile = '', $saveFile = false)
{
$procXML = '';
//carrega a NFe
$docnfe = new Dom();
$docnfe->loadXMLFile($pathNFefile);
$nodenfe = $docnfe->getNode('NFe', 0);
if ($nodenfe == '') {
$msg = "O arquivo indicado como NFe não é um xml de NFe!";
throw new Exception\RuntimeException($msg);
}
$proNFe = $docnfe->getNode('protNFe');
if ($proNFe == '') {
$msg = "A NFe não está protocolada ainda!!";
throw new Exception\RuntimeException($msg);
}
$chaveNFe = $proNFe->getElementsByTagName('chNFe')->item(0)->nodeValue;
//$nProtNFe = $proNFe->getElementsByTagName('nProt')->item(0)->nodeValue;
$tpAmb = $docnfe->getNodeValue('tpAmb');
$anomes = date(
'Ym',
DateTime::convertSefazTimeToTimestamp($docnfe->getNodeValue('dhEmi'))
);
//carrega o cancelamento
//pode ser um evento ou resultado de uma consulta com multiplos eventos
$doccanc = new Dom();
$doccanc->loadXMLFile($pathCancfile);
$retEvento = $doccanc->getElementsByTagName('retEvento')->item(0);
$eventos = $retEvento->getElementsByTagName('infEvento');
foreach ($eventos as $evento) {
//evento
$cStat = $evento->getElementsByTagName('cStat')->item(0)->nodeValue;
$tpAmb = $evento->getElementsByTagName('tpAmb')->item(0)->nodeValue;
$chaveEvento = $evento->getElementsByTagName('chNFe')->item(0)->nodeValue;
$tpEvento = $evento->getElementsByTagName('tpEvento')->item(0)->nodeValue;
//$nProtEvento = $evento->getElementsByTagName('nProt')->item(0)->nodeValue;
//verifica se conferem os dados
//cStat = 135 ==> evento homologado
//cStat = 136 ==> vinculação do evento à respectiva NF-e prejudicada
//cStat = 155 ==> Cancelamento homologado fora de prazo
//tpEvento = 110111 ==> Cancelamento
//chave do evento == chave da NFe
//protocolo do evneto == protocolo da NFe
if (($cStat == '135' || $cStat == '136' || $cStat == '155')
&& $tpEvento == '110111'
&& $chaveEvento == $chaveNFe
) {
$proNFe->getElementsByTagName('cStat')->item(0)->nodeValue = '101';
$proNFe->getElementsByTagName('xMotivo')->item(0)->nodeValue = 'Cancelamento de NF-e homologado';
$procXML = $docnfe->saveXML();
//remove as informações indesejadas
$procXML = Strings::clearProt($procXML);
if ($saveFile) {
$filename = "$chaveNFe-protNFe.xml";
$this->zGravaFile(
'nfe',
$tpAmb,
$filename,
$procXML,
'canceladas',
$anomes
);
}
break;
}
}
return (string) $procXML;
}
/**
* verificaValidade
* Verifica a validade de uma NFe recebida
*
* @param string $pathXmlFile
* @param array $aRetorno
* @return boolean
* @throws Exception\InvalidArgumentException
*/
public function verificaValidade($pathXmlFile = '', &$aRetorno = array())
{
$aRetorno = array();
if (!file_exists($pathXmlFile)) {
$msg = "Arquivo não localizado!!";
throw new Exception\InvalidArgumentException($msg);
}
//carrega a NFe
$xml = Files\FilesFolders::readFile($pathXmlFile);
$this->oCertificate->verifySignature($xml, 'infNFe');
//obtem o chave da NFe
$docnfe = new Dom();
$docnfe->loadXMLFile($pathXmlFile);
$tpAmb = $docnfe->getNodeValue('tpAmb');
$chNFe = $docnfe->getChave('infNFe');
$this->sefazConsultaChave($chNFe, $tpAmb, $aRetorno);
if ($aRetorno['cStat'] != '100' && $aRetorno['cStat'] != '150') {
return false;
}
return true;
}
/**
* assina
* Assina uma NFe
*
* @param string $xml
* @param boolean $saveFile
* @return string
* @throws Exception\RuntimeException
*/
public function assina($xml = '', $saveFile = false)
{
$xmlSigned = $this->assinaDoc($xml, 'nfe', 'infNFe', $saveFile);
$dom = new Dom();
$dom->loadXMLString($xmlSigned);
$modelo = $dom->getValue($dom, 'mod');
$oldmod = $this->modelo;
$this->modelo = $modelo;
if ($this->modelo == 65) {
//descomentar essa linha após 03/11/2015 conforme NT 2015.002
//ou quando for habilitada essa TAG no XML da NFCe
//para incluir o QRCode no corpo da NFCe
$xmlSigned = $this->zPutQRTag($dom, $saveFile);
}
$this->modelo = $oldmod;
return $xmlSigned;
}
/**
* zPutQRTag
* Monta a URI para o QRCode e coloca a tag
* no xml já assinado
*
* @param Dom $dom
* @return string
* NOTA: O Campo QRCode está habilitado para uso a partir de
* 01/10/2015 homologação
* 03/11/2015 Produção
*/
protected function zPutQRTag(Dom $dom, $saveFile)
{
//pega os dados necessários para a montagem da URI a partir do xml
$nfe = $dom->getNode('NFe');
$ide = $dom->getNode('ide');
$dest = $dom->getNode('dest');
$icmsTot = $dom->getNode('ICMSTot');
$signedInfo = $dom->getNode('SignedInfo');
$chNFe = $dom->getChave('infNFe');
$cUF = $dom->getValue($ide, 'cUF');
$tpAmb = $dom->getValue($ide, 'tpAmb');
$dhEmi = $dom->getValue($ide, 'dhEmi');
$cDest = '';
if (!empty($dest)) {
//pode ser CNPJ , CPF ou idEstrageiro
$cDest = $dom->getValue($dest, 'CNPJ');
if ($cDest == '') {
$cDest = $dom->getValue($dest, 'CPF');
if ($cDest == '') {
$cDest = $dom->getValue($dest, 'idEstrangeiro');
}
}
}
$vNF = $dom->getValue($icmsTot, 'vNF');
$vICMS = $dom->getValue($icmsTot, 'vICMS');
$digVal = $dom->getValue($signedInfo, 'DigestValue');
$token = $this->aConfig['tokenNFCe'];
$idToken = $this->aConfig['tokenNFCeId'];
$versao = '100';
/*
*Pega a URL para consulta do QRCode do estado emissor,
*essa url está em nfe_ws3_mode65.xml, em tese essa url
*NÃO É uma WebService, é simplismente uma página para
*consulta do QRCode via parametros GET, percebe-se que
*em todas as SEFAZ o endereço de consulta do QRCode se
*difere do padrão de endereço das WS.
*Esse é um serviço para ser utilizado pelo consumidor...
*NOTA: Sem o endereço de consulta não é possível gerar o QR-Code!!!
*/
//carrega serviço
$servico = 'NfeConsultaQR';
$siglaUF = $this->zGetSigla($cUF);
$this->zLoadServico(
'nfe',
$servico,
$siglaUF,
$tpAmb
);
if ($this->urlService == '') {
$this->errors[] = "A consulta por QRCode não está disponível na SEFAZ $siglaUF!!!";
return $dom->saveXML();
}
$url = $this->urlService;
//usa a função zMakeQRCode para gerar a string da URI
$qrcode = $this->zMakeQRCode(
$chNFe,
$url,
$tpAmb,
$dhEmi,
$vNF,
$vICMS,
$digVal,
$token,
$cDest,
$idToken,
$versao
);
if ($qrcode == '') {
return $dom->saveXML();
}
//inclui a TAG NFe/infNFeSupl com o qrcode
$infNFeSupl = $dom->createElement("infNFeSupl");
$nodeqr = $infNFeSupl->appendChild($dom->createElement('qrCode'));
$nodeqr->appendChild($dom->createCDATASection($qrcode));
$signature = $dom->getElementsByTagName('Signature')->item(0);
$nfe->insertBefore($infNFeSupl, $signature);
$dom->formatOutput = false;
$xmlSigned = $dom->saveXML();
//salva novamente o xml assinado e agora com o QRCode
if ($saveFile) {
$anomes = date(
'Ym',
DateTime::convertSefazTimeToTimestamp($dhEmi)
);
$filename = "$chNFe-nfe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $xmlSigned, 'assinadas', $anomes);
}
//retorna a string com o xml assinado e com o QRCode
return $xmlSigned;
}
/**
* sefazEnviaLote
* Solicita a autorização de uso de Lote de NFe
*
* @param array $aXml
* @param string $tpAmb
* @param string $idLote
* @param array $aRetorno
* @param int $indSinc
* @param boolean $compactarZip
* @return string
* @throws Exception\InvalidArgumentException
* @throws Exception\RuntimeException
* @internal function zLoadServico (Common\Base\BaseTools)
*/
public function sefazEnviaLote(
$aXml,
$tpAmb = '2',
$idLote = '',
&$aRetorno = array(),
$indSinc = 0,
$compactarZip = false,
$salvarMensagens = true
) {
$sxml = $aXml;
if (empty($aXml)) {
$msg = "Pelo menos uma NFe deve ser informada.";
throw new Exception\InvalidArgumentException($msg);
}
if (is_array($aXml)) {
if (count($aXml) > 1) {
//multiplas nfes, não pode ser sincrono
$indSinc = 0;
}
$sxml = implode("", $sxml);
}
$sxml = preg_replace("/<\?xml.*\?>/", "", $sxml);
$siglaUF = $this->aConfig['siglaUF'];
if ($tpAmb == '') {
$tpAmb = $this->aConfig['tpAmb'];
}
if ($idLote == '') {
$idLote = LotNumber::geraNumLote(15);
}
//carrega serviço
$servico = 'NfeAutorizacao';
$this->zLoadServico(
'nfe',
$servico,
$siglaUF,
$tpAmb
);
if ($this->urlService == '') {
$msg = "O envio de lote não está disponível na SEFAZ $siglaUF!!!";
throw new Exception\RuntimeException($msg);
}
//montagem dos dados da mensagem SOAP
$cons = "<enviNFe xmlns=\"$this->urlPortal\" versao=\"$this->urlVersion\">"
. "<idLote>$idLote</idLote>"
. "<indSinc>$indSinc</indSinc>"
. "$sxml"
. "</enviNFe>";
//valida a mensagem com o xsd
//validar mensagem com xsd
//if (! $this->validarXml($cons)) {
// $msg = 'Falha na validação. '.$this->error;
// throw new Exception\RuntimeException($msg);
//}
//montagem dos dados da mensagem SOAP
$body = "<nfeDadosMsg xmlns=\"$this->urlNamespace\">$cons</nfeDadosMsg>";
$method = $this->urlMethod;
if ($compactarZip) {
$gzdata = base64_encode(gzencode($cons, 9, FORCE_GZIP));
$body = "<nfeDadosMsgZip xmlns=\"$this->urlNamespace\">$gzdata</nfeDadosMsgZip>";
$method = $this->urlMethod."Zip";
}
//envia a solicitação via SOAP
$retorno = $this->oSoap->send($this->urlService, $this->urlNamespace, $this->urlHeader, $body, $method);
$this->soapDebug = $this->oSoap->soapDebug;
//salva mensagens
if ($salvarMensagens) {
$lastMsg = $this->oSoap->lastMsg;
$filename = "$idLote-enviNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $lastMsg);
$filename = "$idLote-retEnviNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $retorno);
}
//tratar dados de retorno
$aRetorno = ReturnNFe::readReturnSefaz($servico, $retorno);
//caso o envio seja recebido com sucesso mover a NFe da pasta
//das assinadas para a pasta das enviadas
return (string) $retorno;
}
/**
* sefazConsultaRecibo
* Consulta a situação de um Lote de NFe enviadas pelo recibo desse envio
*
* @param string $recibo
* @param string $tpAmb
* @param array $aRetorno
* @return string
* @throws Exception\InvalidArgumentException
* @throws Exception\RuntimeException
* @internal function zLoadServico (Common\Base\BaseTools)
*/
public function sefazConsultaRecibo($recibo = '', $tpAmb = '2', &$aRetorno = array(), $saveMensagens = true)
{
if ($recibo == '') {
$msg = "Deve ser informado um recibo.";
throw new Exception\InvalidArgumentException($msg);
}
if ($tpAmb == '') {
$tpAmb = $this->aConfig['tpAmb'];
}
$siglaUF = $this->aConfig['siglaUF'];
//carrega serviço
$servico = 'NfeRetAutorizacao';
$this->zLoadServico(
'nfe',
$servico,
$siglaUF,
$tpAmb
);
if ($this->urlService == '') {
$msg = "A consulta de NFe não está disponível na SEFAZ $siglaUF!!!";
throw new Exception\RuntimeException($msg);
}
$cons = "<consReciNFe xmlns=\"$this->urlPortal\" versao=\"$this->urlVersion\">"
. "<tpAmb>$tpAmb</tpAmb>"
. "<nRec>$recibo</nRec>"
. "</consReciNFe>";
//validar mensagem com xsd
//if (! $this->validarXml($cons)) {
// $msg = 'Falha na validação. '.$this->error;
// throw new Exception\RuntimeException($msg);
//}
//montagem dos dados da mensagem SOAP
$body = "<nfeDadosMsg xmlns=\"$this->urlNamespace\">$cons</nfeDadosMsg>";
//envia a solicitação via SOAP
$retorno = $this->oSoap->send(
$this->urlService,
$this->urlNamespace,
$this->urlHeader,
$body,
$this->urlMethod
);
$this->soapDebug = $this->oSoap->soapDebug;
//salva mensagens
if ($saveMensagens) {
$lastMsg = $this->oSoap->lastMsg;
$filename = "$recibo-consReciNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $lastMsg);
$filename = "$recibo-retConsReciNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $retorno);
}
//tratar dados de retorno
$aRetorno = ReturnNFe::readReturnSefaz($servico, $retorno);
//podem ser retornados nenhum, um ou vários protocolos
//caso existam protocolos protocolar as NFe e movelas-las para a
//pasta enviadas/aprovadas/anomes
return (string) $retorno;
}
/**
* sefazConsultaChave
* Consulta o status da NFe pela chave de 44 digitos
*
* @param string $chave
* @param string $tpAmb
* @param array $aRetorno
* @return string
* @throws Exception\InvalidArgumentException
* @throws Exception\RuntimeException
* @internal function zLoadServico (Common\Base\BaseTools)
*/
public function sefazConsultaChave($chave = '', $tpAmb = '2', &$aRetorno = array(), $salvaMensagens = true)
{
$chNFe = preg_replace('/[^0-9]/', '', $chave);
if (strlen($chNFe) != 44) {
$msg = "Uma chave de 44 dígitos da NFe deve ser passada.";
throw new Exception\InvalidArgumentException($msg);
}
if ($tpAmb == '') {
$tpAmb = $this->aConfig['tpAmb'];
}
$cUF = substr($chNFe, 0, 2);
$siglaUF = $this->zGetSigla($cUF);
//carrega serviço
$servico = 'NfeConsultaProtocolo';
$this->zLoadServico(
'nfe',
$servico,
$siglaUF,
$tpAmb
);
if ($this->urlService == '') {
$msg = "A consulta de NFe não está disponível na SEFAZ $siglaUF!!!";
throw new Exception\RuntimeException($msg);
}
$cons = "<consSitNFe xmlns=\"$this->urlPortal\" versao=\"$this->urlVersion\">"
. "<tpAmb>$tpAmb</tpAmb>"
. "<xServ>CONSULTAR</xServ>"
. "<chNFe>$chNFe</chNFe>"
. "</consSitNFe>";
//validar mensagem com xsd
//if (! $this->validarXml($cons)) {
// $msg = 'Falha na validação. '.$this->error;
// throw new Exception\RuntimeException($msg);
//}
//montagem dos dados da mensagem SOAP
$body = "<nfeDadosMsg xmlns=\"$this->urlNamespace\">$cons</nfeDadosMsg>";
//envia a solicitação via SOAP
$retorno = $this->oSoap->send(
$this->urlService,
$this->urlNamespace,
$this->urlHeader,
$body,
$this->urlMethod
);
$lastMsg = $this->oSoap->lastMsg;
$this->soapDebug = $this->oSoap->soapDebug;
//salva mensagens
if ($salvaMensagens) {
$filename = "$chNFe-consSitNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $lastMsg);
$filename = "$chNFe-retConsSitNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $retorno);
}
//tratar dados de retorno
$aRetorno = ReturnNFe::readReturnSefaz($servico, $retorno);
return (string) $retorno;
}
/**
* sefazInutiliza
* Solicita a inutilização de uma ou uma sequencia de NFe
* de uma determinada série
*
* @param integer $nSerie
* @param integer $nIni
* @param integer $nFin
* @param string $xJust
* @param string $tpAmb
* @param array $aRetorno
* @return string
* @internal param string $modelo
* @internal function zLoadServico (Common\Base\BaseTools)
*/
public function sefazInutiliza(
$nSerie = 1,
$nIni = 0,
$nFin = 0,
$xJust = '',
$tpAmb = '2',
&$aRetorno = array(),
$salvarMensagens = true
) {
$xJust = Strings::cleanString($xJust);
$nSerie = (integer) $nSerie;
$nIni = (integer) $nIni;
$nFin = (integer) $nFin;
$this->zValidParamInut($xJust, $nSerie, $nIni, $nFin);
if ($tpAmb == '') {
$tpAmb = $this->aConfig['tpAmb'];
}
//monta serviço
$siglaUF = $this->aConfig['siglaUF'];
//carrega serviço
$servico = 'NfeInutilizacao';
$this->zLoadServico(
'nfe',
$servico,
$siglaUF,
$tpAmb
);
if ($this->urlService == '') {
$msg = "A inutilização não está disponível na SEFAZ $siglaUF!!!";
throw new Exception\RuntimeException($msg);
}
//montagem dos dados da mensagem SOAP
$cnpj = $this->aConfig['cnpj'];
$sAno = (string) date('y');
$sSerie = str_pad($nSerie, 3, '0', STR_PAD_LEFT);
$sInicio = str_pad($nIni, 9, '0', STR_PAD_LEFT);
$sFinal = str_pad($nFin, 9, '0', STR_PAD_LEFT);
$idInut = "ID".$this->urlcUF.$sAno.$cnpj.$this->modelo.$sSerie.$sInicio.$sFinal;
//limpa os caracteres indesejados da justificativa
$xJust = Strings::cleanString($xJust);
//montagem do corpo da mensagem
$cons = "<inutNFe xmlns=\"$this->urlPortal\" versao=\"$this->urlVersion\">"
. "<infInut Id=\"$idInut\">"
. "<tpAmb>$tpAmb</tpAmb>"
. "<xServ>INUTILIZAR</xServ>"
. "<cUF>$this->urlcUF</cUF>"
. "<ano>$sAno</ano>"
. "<CNPJ>$cnpj</CNPJ>"
. "<mod>$this->modelo</mod>"
. "<serie>$nSerie</serie>"
. "<nNFIni>$nIni</nNFIni>"
. "<nNFFin>$nFin</nNFFin>"
. "<xJust>$xJust</xJust>"
. "</infInut></inutNFe>";
//assina a lsolicitação de inutilização
$signedMsg = $this->oCertificate->signXML($cons, 'infInut');
$signedMsg = Strings::clearXml($signedMsg, true);
//valida a mensagem com o xsd
//if (! $this->zValidMessage($cons, 'nfe', 'inutNFe', $version)) {
// $msg = 'Falha na validação. '.$this->error;
// throw new Exception\RuntimeException($msg);
//}
$body = "<nfeDadosMsg xmlns=\"$this->urlNamespace\">$signedMsg</nfeDadosMsg>";
//envia a solicitação via SOAP
$retorno = $this->oSoap->send(
$this->urlService,
$this->urlNamespace,
$this->urlHeader,
$body,
$this->urlMethod
);
$lastMsg = $this->oSoap->lastMsg;
$this->soapDebug = $this->oSoap->soapDebug;
//salva mensagens
if ($salvarMensagens) {
$filename = "$sAno-$this->modelo-$sSerie-".$sInicio."_".$sFinal."-inutNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $lastMsg);
$filename = "$sAno-$this->modelo-$sSerie-".$sInicio."_".$sFinal."-retInutNFe.xml";
$this->zGravaFile('nfe', $tpAmb, $filename, $retorno);