Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Alguns acréscimos de funcionalidades para MG e pequenos ajustes #59

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
omni-nfetest.js
omni-nfetest2.js
rascunho/*
.gitignore

#ide vs
.vscode

#ide stuff
.idea

Expand Down
12 changes: 10 additions & 2 deletions autorizadores.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,12 @@
"url_homologacao": "https://hnfce.fazenda.mg.gov.br/nfce/services/NFeStatusServico4"
},
"inutilizacao": {
"url_producao": "https://nfe.fazenda.mg.gov.br/nfe2/services/NFeInutilizacao4",
"url_producao": "https://nfce.fazenda.mg.gov.br/nfe2/services/NFeInutilizacao4",
"url_homologacao": "https://hnfce.fazenda.mg.gov.br/nfce/services/Nfeinutilizacao4.asmx"
},
"recepcaoEvento": {
"url_producao": "https://nfce.fazenda.mg.gov.br/nfce/services/NFeRecepcaoEvento4",
"url_homologacao": "https://hnfce.fazenda.mg.gov.br/nfce/services/NFeRecepcaoEvento4"
}
}
},
Expand Down Expand Up @@ -185,6 +189,10 @@
"inutilizacao": {
"url_producao": "https://nfe.svrs.rs.gov.br/ws/nfeinutilizacao/nfeinutilizacao4.asmx",
"url_homologacao": "https://nfce-homologacao.svrs.rs.gov.br/ws/nfeinutilizacao/nfeinutilizacao4.asmx"
},
"recepcaoEvento": {
"url_producao": "https://nfce.svrs.rs.gov.br/ws/recepcaoevento/recepcaoevento4.asmx",
"url_homologacao": "https://nfce-homologacao.svrs.rs.gov.br/ws/recepcaoevento/recepcaoevento4.asmx"
}
}
},
Expand Down Expand Up @@ -221,4 +229,4 @@
}
}
}
}
}
10 changes: 9 additions & 1 deletion autorizadoresNFe.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@
"consultarStatusServico": {
"url_producao": "https://nfe.fazenda.mg.gov.br/nfe2/services/NFeStatusServico4",
"url_homologacao": "https://hnfe.fazenda.mg.gov.br/nfe2/services/NFeStatusServico4"
},
"recepcaoEvento": {
"url_producao": "https://nfe.fazenda.mg.gov.br/nfe2/services/NFeRecepcaoEvento4",
"url_homologacao": "https://hnfe.fazenda.mg.gov.br/nfe2/services/NFeRecepcaoEvento4"
}
}
},
Expand Down Expand Up @@ -233,6 +237,10 @@
"consultarStatusServico": {
"url_producao": "https://nfe.svrs.rs.gov.br/ws/NfeStatusServico/NfeStatusServico4.asmx",
"url_homologacao": "https://nfe-homologacao.svrs.rs.gov.br/ws/NfeStatusServico/NfeStatusServico4.asmx"
},
"recepcaoEvento": {
"url_producao": "https://nfe.svrs.rs.gov.br/ws/recepcaoevento/recepcaoevento4.asmx",
"url_homologacao": "https://nfe-homologacao.svrs.rs.gov.br/ws/recepcaoevento/recepcaoevento4.asmx"
}
}
},
Expand Down Expand Up @@ -270,4 +278,4 @@
}
}
}
}
}
1 change: 1 addition & 0 deletions lib/factory/processor/enviaProcessor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export declare class EnviaProcessor {
* @param assincrono Boolean para definir se a execução sera sincrona ou assincrona, por padrao === sincrona!
*/
executar(documento: NFeBase, assincrono?: boolean): Promise<RetornoProcessamentoNF>;
obterXmlLoteAssinado(documento: NFeBase);
private configuraUrlsSefaz;
private appendQRCodeXML;
transmitirXml(xmlLote: string, nfeObj: Object): Promise<RetornoProcessamentoNF>;
Expand Down
Loading