Skip to content

Commit 9739022

Browse files
committed
Removido alteracoes no provider principal
1 parent dbc30d7 commit 9739022

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/OpenAC.Net.NFSe/Commom/Types/NFSeProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public enum NFSeProvider : sbyte
143143
/// Provedor IISPortoVelho.
144144
/// </summary>
145145
[Description("Porto Velho")]
146-
ISSPortoVelho = 32,
146+
IISPortoVelho = 32,
147147

148148
/// <summary>
149149
/// Provedor IPM.

src/OpenAC.Net.NFSe/Providers/ProviderABRASF200.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ protected virtual void LoadTomador(NotaServico nota, XElement rpsRoot)
267267
{
268268
nota.Tomador.CpfCnpj = tomadorIdentificacao.ElementAnyNs("CpfCnpj")?.GetCPF_CNPJ();
269269
nota.Tomador.InscricaoMunicipal = tomadorIdentificacao.ElementAnyNs("InscricaoMunicipal")?.GetValue<string>() ?? string.Empty;
270-
nota.Tomador.InscricaoEstadual = tomadorIdentificacao.ElementAnyNs("InscricaoEstadual")?.GetValue<string>() ?? string.Empty;
271270
}
272271

273272
nota.Tomador.RazaoSocial = rootTomador.ElementAnyNs("RazaoSocial")?.GetValue<string>() ?? string.Empty;
@@ -555,9 +554,6 @@ protected virtual XElement WritePrestadorRps(NotaServico nota)
555554

556555
ideTomador.AddChild(AddTag(TipoCampo.Str, "", "InscricaoMunicipal", 1, 15,
557556
Ocorrencia.NaoObrigatoria, nota.Tomador.InscricaoMunicipal));
558-
559-
ideTomador.AddChild(AddTag(TipoCampo.Str, "", "InscricaoEstadual", 1, 9,
560-
Ocorrencia.NaoObrigatoria, nota.Tomador.InscricaoEstadual));
561557
}
562558

563559
tomador.AddChild(AddTag(TipoCampo.Str, "", "RazaoSocial", 1, 115, Ocorrencia.NaoObrigatoria, nota.Tomador.RazaoSocial));

src/OpenAC.Net.NFSe/Providers/ProviderManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ static ProviderManager()
8787
{NFSeProvider.Mitra, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve200, typeof(ProviderMitra)}}},
8888
{NFSeProvider.NFeCidades, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve201, typeof(ProviderNFeCidades)}}},
8989
{NFSeProvider.Pronim, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve100, typeof(ProviderPronim)},{VersaoNFSe.ve202, typeof(ProviderPronim202)}, {VersaoNFSe.ve203, typeof(ProviderPronim203)}}},
90-
{NFSeProvider.ISSPortoVelho, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve203, typeof(ProviderISSPortoVelho)}}},
90+
{NFSeProvider.IISPortoVelho, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve203, typeof(ProviderISSPortoVelho)}}},
9191
{NFSeProvider.RLZ, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve203, typeof(RLZProvider)}}},
9292
{NFSeProvider.SiapNet, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve201, typeof(ProviderSiapNet)}}},
9393
{NFSeProvider.SigISS, new Dictionary<VersaoNFSe, Type> {{VersaoNFSe.ve100, typeof(ProviderSigISS100)}, {VersaoNFSe.ve103, typeof(ProviderSigISS103)}}},

0 commit comments

Comments
 (0)