-
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #267 from Margera/master
fix: ajuste na geração de xml de evento
- Loading branch information
Showing
1 changed file
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 | ||
*/ | ||
|
@@ -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()); | ||
|