Skip to content

Commit 8ec5cc1

Browse files
authored
Merge pull request #1685 from ZeusAutomacao/converter_cstis_para_string
refactor: altera CSTIS de enum para string até disponibilização da tabela oficial
2 parents 16c6a68 + 88f0064 commit 8ec5cc1

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

NFe.AppTeste/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2110,7 +2110,7 @@ protected virtual det GetDetalhe(int i, CRT crt, ModeloDocumento modelo)
21102110
pIS = 0,
21112111
vIS = 0,
21122112
cClassTribIS = "000001",
2113-
CSTIS = CSTIS.Is000,
2113+
CSTIS = "000",
21142114
vBCIS = 0,
21152115
}
21162116
: null,

NFe.Classes/Informacoes/Detalhe/Tributacao/Federal/IS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class IS
4848
/// UB02 - Código de Situação Tributária do Imposto Seletivo
4949
/// </summary>
5050
[XmlElement(Order = 1)]
51-
public CSTIS CSTIS { get; set; }
51+
public string CSTIS { get; set; }
5252

5353
/// <summary>
5454
/// UB03 - Código de Classificação Tributária do Imposto Seletivo

NFe.Classes/Informacoes/Detalhe/Tributacao/Federal/Tipos/ISTipos.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ namespace NFe.Classes.Informacoes.Detalhe.Tributacao.Federal.Tipos
3939
/// <summary>
4040
/// CST para o Imposto Seletivo (IS)
4141
/// Tabela ainda não publicada oficialmente pela SEFAZ. Fonte: NT 2025.002-RTC
42+
/// Enum sem utilização até a publicação da tabela oficial.
4243
/// </summary>
4344
public enum CSTIS
4445
{

0 commit comments

Comments
 (0)