Skip to content

Commit

Permalink
Revert "Fix: Correção dos tipos das propriedades VlTotServ, VlBcPis, …
Browse files Browse the repository at this point in the history
…VlPisImp e VlCofinsImp no registro A120"

This reverts commit 8f027e4.
  • Loading branch information
fabricio.vieira committed Aug 2, 2024
1 parent f551681 commit 1ddbf09
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/FiscalBr.EFDContribuicoes/BlocoA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,19 +236,19 @@ public RegistroA120() : base("A120")
/// Valor total do serviço, prestado por pessoa física ou jurídica domiciliada no exterior.
/// </summary>
[SpedCampos(2, "VL_TOT_SERV", "N", 0, 2, true, 2)]
public decimal VlTotServ { get; set; }
public string VlTotServ { get; set; }

/// <summary>
/// Valor da base de cálculo da Operação –PIS/PASEP –Importação
/// </summary>
[SpedCampos(3, "VL_BC_PIS", "N", 0, 2, true, 2)]
public decimal VlBcPis { get; set; }
public string VlBcPis { get; set; }

/// <summary>
/// Valor pago/recolhido de PIS/PASEP –Importação
/// </summary>
[SpedCampos(4, "VL_PIS_IMP", "N", 0, 2, false, 2)]
public decimal VlPisImp { get; set; }
[SpedCampos(4, "VL_PIS_IMP", "N", int.MaxValue, 2, false, 2)]
public string VlPisImp { get; set; }

/// <summary>
/// Data de pagamento do PIS/PASEP –Importação
Expand All @@ -266,7 +266,7 @@ public RegistroA120() : base("A120")
/// Valor pago/recolhido de COFINS –Importação
/// </summary>
[SpedCampos(7, "VL_COFINS_IMP", "N", 0, 2, false, 2)]
public decimal VlCofinsImp { get; set; }
public string VlCofinsImp { get; set; }

/// <summary>
/// Data de pagamento do COFINS –Importação
Expand Down

0 comments on commit 1ddbf09

Please sign in to comment.