Skip to content

Commit

Permalink
NFe - Validação de Schemas ignora duplicidade de TCOrgaoIBGE (#1500)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosgerene authored Mar 11, 2024
1 parent addf0cd commit 475f37e
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion NFe.Utils/Validacao/Validador.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
using NFe.Classes.Servicos.Evento;
using NFe.Classes.Servicos.Tipos;
using NFe.Utils.Excecoes;
using Shared.DFe.Utils;

namespace NFe.Utils.Validacao
{
Expand Down Expand Up @@ -153,7 +154,19 @@ public static string[] Valida(ServicoNFe servicoNFe, VersaoServico versaoServico
// Especifica o tratamento de evento para os erros de validacao
cfg.ValidationEventHandler += delegate (object sender, ValidationEventArgs args)
{
falhas.AppendLine($"[{args.Severity}] - {args.Message} {args.Exception?.Message} na linha {args.Exception.LineNumber} posição {args.Exception.LinePosition} em {args.Exception.SourceUri}".ToString());
string message = args.Message;

if (message.ToLower().Contains("tcorgaoibge") && message.ToLower().RemoverAcentos().Contains("ja foi declarado"))
{
//aqui talvez um aviso?
}
else
{
falhas.AppendLine($"[{args.Severity}] - {message} {args.Exception?.Message} " +
$"na linha {args.Exception.LineNumber} " +
$"posição {args.Exception.LinePosition} " +
$"em {args.Exception.SourceUri}".ToString());
}
};

// cria um leitor para validação
Expand Down

0 comments on commit 475f37e

Please sign in to comment.