GerarXMLCCeDestinatario(aIDEvento, aLogEvento, aLogRetEvento, aSalvarComo)
Função responsável por gerar XML da CCe que deve ser enviado ao Destinatário quando for necessário gerar manualmente um XML de uma CC-e.
Método
GerarXMLCCeDestinatario(aIDEvento: String; aLogEvento, aLogRetEvento: String; aSalvarComo: String) : string;
Parâmetros
Argumento | Tipo | Detalhes |
aIDEvento | String | Chave da CC-e, cujo arquivo será gerado. |
aLogEvento | String | Caminho do Log de Envio da CC-e. |
aLogRetEvento | String | Caminho do Log de Retorno da CC-e. |
aSalvarComo | String | Define o local onde será salvo o XML Destinatário gerado. |
Retorno
XML da CC-e.
Exemplos
Delphi
retorno := spdNFe.GerarXMLCCeDestinatario('41160408187168000160550010000929881416403141',
'C:\Log\2016-04-11-11-33-10-33-1-env-lot.xml',
'C:\Log\2016-04-11-11-33-10-233-1-rec.xml',
'C:\Xml\41160408187168000160550010000929881416403141-cce.xml');
C#
public spdNFeX spdNFe = new spdNFeX();
retorno = spdNFe.GerarXMLCCeDestinatario("41160408187168000160550010000929881416403141",
"C:\Log\2016-04-11-11-33-10-33-1-env-lot.xml",
"C:\Log\2016-04-11-11-33-10-233-1-rec.xml",
"C:\Xml\41160408187168000160550010000929881416403141-cce.xml");
VB6
Public spdNFe As NFeX.spdNFeX
Set spdNFe = New NFeX.spdNFeX
retorno = spdNFe.GerarXMLCCeDestinatario "41160408187168000160550010000929881416403141",
"C:\Log\2016-04-11-11-33-10-33-1-env-lot.xml",
"C:\Log\2016-04-11-11-33-10-233-1-rec.xml",
"C:\Xml\41160408187168000160550010000929881416403141-cce.xml"
PHP
$spdNFe = new COM("NFeX.spdNFeX");
$retorno = $spdNFe->GerarXMLCCeDestinatario("41160408187168000160550010000929881416403141",
"C:\Log\2016-04-11-11-33-10-33-1-env-lot.xml",
"C:\Log\2016-04-11-11-33-10-233-1-rec.xml",
"C:\Xml\41160408187168000160550010000929881416403141-cce.xml");
JAVA
ActiveXComponent spdNFe = new ActiveXComponent("NFeX.spdNFeX");
retorno = spdNFe.invoke("GerarXMLCCeDestinatario", "41160408187168000160550010000929881416403141",
"C:\Log\2016-04-11-11-33-10-33-1-env-lot.xml",
"C:\Log\2016-04-11-11-33-10-233-1-rec.xml",
"C:\Xml\41160408187168000160550010000929881416403141-cce.xml").toString();
Comentários
0 comentário
Por favor, entre para comentar.