Skip to content

Commit

Permalink
Merge pull request #267 from Margera/master
Browse files Browse the repository at this point in the history
fix: ajuste na geração de xml de evento
  • Loading branch information
Samuel-Oliveira authored Jul 30, 2023
2 parents d0ff869 + 9133497 commit 768028e
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions src/main/java/br/com/swconsultoria/nfe/util/ManifestacaoUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import javax.xml.bind.JAXBException;
import java.util.Collections;
import java.util.List;
import java.util.Optional;

/**
* @author Samuel Oliveira - [email protected]
Expand Down Expand Up @@ -89,12 +90,12 @@ public static TEnvEvento montaManifestacao(List<Evento> listaManifestacao, Confi
}

/**
* Cria o ProcEvento de Cancelamento
* Cria e assina o tag procEventoNFe
*
* @param config
* @param enviEvento
* @param retorno
* @return
* @param config Um {@link ConfiguracoesNfe}, interface de configuração da NF-e ou NFC-e.
* @param enviEvento Um {@link TEnvEvento} com a estrutura com a mensagem enviada para o sistema de distribuição.
* @param retorno Um {@link TretEvento} com os dadps do resultado do Envio do Evento.
* @return Uma {@link String} retornando um XML de evento assinado.
* @throws JAXBException
* @throws NfeException
*/
Expand All @@ -108,7 +109,17 @@ public static String criaProcEventoManifestacao(ConfiguracoesNfe config, TEnvEve

TProcEvento procEvento = new TProcEvento();
procEvento.setVersao(ConstantesUtil.VERSAO.EVENTO_MANIFESTAR);
procEvento.setEvento(XmlNfeUtil.xmlToObject(assinado, TEnvEvento.class).getEvento().get(0));

Optional<TEvento> optEvento = XmlNfeUtil.xmlToObject(assinado, TEnvEvento.class)
.getEvento()
.stream()
.filter(e -> e.getInfEvento().getChNFe().equalsIgnoreCase(retorno.getInfEvento().getChNFe()))
.findFirst();

if (optEvento.isPresent()) {
procEvento.setEvento(optEvento.get());
}

procEvento.setRetEvento(retorno);

return XmlNfeUtil.objectToXml(procEvento, config.getEncode());
Expand Down

0 comments on commit 768028e

Please sign in to comment.