Skip to content

Commit

Permalink
fix: Correção do tipo do campot VlAjBc do M215 e M615 da EFD Contribu…
Browse files Browse the repository at this point in the history
…ições (#137)
  • Loading branch information
orochasamuel committed Dec 12, 2024
1 parent 8c3be02 commit 299cecb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/FiscalBr.EFDContribuicoes/BlocoM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,8 @@ public RegistroM215() : base("M215")
/// <summary>
/// Valor do ajuste de base de cálculo
/// </summary>
[SpedCampos(3, "VL_AJ_BC", "N", 0, 2, true, 2)]
public string VlAjBc { get; set; }
[SpedCampos(3, "VL_AJ_BC", "N", 18, 2, true, 2)]
public decimal VlAjBc { get; set; }

/// <summary>
/// Código do ajuste, conforme a Tabela indicada no item 4.3.18
Expand Down Expand Up @@ -1452,8 +1452,8 @@ public RegistroM615() : base("M615")
/// <summary>
/// Valor do ajuste de base de cálculo
/// </summary>
[SpedCampos(3, "VL_AJ_BC", "N", 0, 2, true, 2)]
public string VlAjBc { get; set; }
[SpedCampos(3, "VL_AJ_BC", "N", 18, 2, true, 2)]
public decimal VlAjBc { get; set; }

/// <summary>
/// Código do ajuste, conforme a Tabela indicada no item 4.3.18
Expand Down

0 comments on commit 299cecb

Please sign in to comment.