Skip to content

Commit

Permalink
Correção no D200 da EFD Contribuições (alterei de string para decimal)
Browse files Browse the repository at this point in the history
  • Loading branch information
orochasamuel committed Jan 27, 2024
1 parent f8ac625 commit 5280865
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/FiscalBr.EFDContribuicoes/BlocoD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public RegistroD200() : base("D200")
/// Código do modelo do documento fiscal, conforme a Tabela 4.1.1
/// </summary>
[SpedCampos(2, "COD_MOD", "C", 2, 0, true, 2)]
public string CodMod { get; set; }
public IndCodMod CodMod { get; set; }

/// <summary>
/// Código da situação do documento fiscal, conforme a Tabela 4.1.2
Expand Down Expand Up @@ -475,14 +475,14 @@ public RegistroD200() : base("D200")
/// <summary>
/// Valor total dos documentos fiscais
/// </summary>
[SpedCampos(10, "VL_DOC", "N", 0, 2, true, 2)]
public string VlDoc { get; set; }
[SpedCampos(10, "VL_DOC", "N", 19, 2, true, 2)]
public decimal VlDoc { get; set; }

/// <summary>
/// Valor total dos descontos
/// </summary>
[SpedCampos(11, "VL_DESC", "N", 0, 2, false, 2)]
public string VlDesc { get; set; }
[SpedCampos(11, "VL_DESC", "N", 19, 2, false, 2)]
public decimal VlDesc { get; set; }

public List<RegistroD201> RegD201s { get; set; }
public List<RegistroD205> RegD205s { get; set; }
Expand Down

0 comments on commit 5280865

Please sign in to comment.