Skip to content

Commit

Permalink
Correções revisão PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurício Bernardo committed Nov 7, 2024
1 parent 13bb24d commit 42ee166
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
7 changes: 3 additions & 4 deletions NFe.AppTeste/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2274,11 +2274,10 @@ private void BtnAtorInteressado_Click(object sender, RoutedEventArgs e)
var idlote = Funcoes.InpuBox(this, titulo, "Identificador de controle do Lote de envio:", "1");
if (string.IsNullOrEmpty(idlote)) throw new Exception("A Id do Lote deve ser informada!");

var sequenciaEvento = Funcoes.InpuBox(this, titulo, "Número sequencial do evento:", "1");
if (string.IsNullOrEmpty(sequenciaEvento))
throw new Exception("O número sequencial deve ser informado!");
var sequenciaEvento = Funcoes.InpuBox(this, titulo, "Número sequencial do evento:", "2");
if (string.IsNullOrEmpty(sequenciaEvento)) throw new Exception("O número sequencial deve ser informado!");

var chave = Funcoes.InpuBox(this, titulo, "Chave da NFe:", "35240311656919000154550750000008281647961399");
var chave = Funcoes.InpuBox(this, titulo, "Chave da NFe:", "28241132876302000114550010000090041001283454");
if (string.IsNullOrEmpty(chave)) throw new Exception("A Chave deve ser informada!");
if (chave.Length != 44) throw new Exception("Chave deve conter 44 caracteres!");

Expand Down
1 change: 1 addition & 0 deletions NFe.Classes/Servicos/Evento/detEvento.cs
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ public bool ShouldSerializedetPag()
}

#endregion

#region Ator Interessado NFe
/// <summary>
/// P23 - Pessoas autorizadas a acessar o XML da NF-e
Expand Down
2 changes: 1 addition & 1 deletion NFe.Classes/Servicos/Evento/retEvento.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class retEvento
public infEventoRet infEvento { get; set; }

/// <summary>
/// HP22 - Assinatura Digital do documento XML, a assinatura deverá ser aplicada no elemento infEvento.
/// HR91 - Assinatura Digital do documento XML, a assinatura deverá ser aplicada no elemento infEvento.
/// A decisão de assinar a mensagem fica da critério da UF.
/// </summary>
[XmlElement(Namespace = "http://www.w3.org/2000/09/xmldsig#")]
Expand Down
6 changes: 3 additions & 3 deletions NFe.Servicos/ServicosNFe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -642,14 +642,14 @@ public RetornoRecepcaoEvento RecepcaoEventoAtorInteressado(int idlote, int seque
{
cOrgao = Estado.AN,
tpAmb = _cFgServico.tpAmb,
CNPJ = cpfCnpjAtorEvento.Length == 11 ? null : cpfCnpjAtorEvento,
CPF = cpfCnpjAtorEvento.Length == 11 ? cpfCnpjAtorEvento : null,
chNFe = chaveNFe,
dhEvento = dhEvento ?? DateTime.Now,
tpEvento = NFeTipoEvento.TeNfeAtorInteressadoNFe,
nSeqEvento = sequenciaEvento,
verEvento = versaoServico,
detEvento = detEvento,
CPF = cpfCnpjAtorEvento.Length == 11 ? cpfCnpjAtorEvento : null,
CNPJ = cpfCnpjAtorEvento.Length == 11 ? null : cpfCnpjAtorEvento
detEvento = detEvento
};

var evento = new evento
Expand Down

0 comments on commit 42ee166

Please sign in to comment.