-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from esistemsistemas/master_fork_icms_efetivo
Cálculo ICMS Efetivo
- Loading branch information
Showing
12 changed files
with
293 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
src/MotorTributarioNet/Impostos/CalulosDeBC/CalculaBaseCalculoIcmsEfetivo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// Projeto: Motor Tributario | ||
// Biblioteca C# para Cálculos Tributários Do Brasil | ||
// NF-e, NFC-e, CT-e, SAT-Fiscal | ||
// | ||
// Esta biblioteca é software livre; você pode redistribuí-la e/ou modificá-la | ||
// sob os termos da Licença Pública Geral Menor do GNU conforme publicada pela | ||
// Free Software Foundation; tanto a versão 2.1 da Licença, ou (a seu critério) | ||
// qualquer versão posterior. | ||
// | ||
// Esta biblioteca é distribuída na expectativa de que seja útil, porém, SEM | ||
// NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU | ||
// ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral Menor | ||
// do GNU para mais detalhes. (Arquivo LICENÇA.TXT ou LICENSE.TXT) | ||
// | ||
// Você deve ter recebido uma cópia da Licença Pública Geral Menor do GNU junto | ||
// com esta biblioteca; se não, escreva para a Free Software Foundation, Inc., | ||
// no endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | ||
// Você também pode obter uma copia da licença em: | ||
// https://github.com/AutomacaoNet/MotorTributarioNet/blob/master/LICENSE | ||
|
||
using MotorTributarioNet.Flags; | ||
using MotorTributarioNet.Impostos.CalulosDeBC.Base; | ||
|
||
namespace MotorTributarioNet.Impostos.CalulosDeBC | ||
{ | ||
public class CalculaBaseCalculoIcmsEfetivo : CalculaBaseCalculoBase | ||
{ | ||
private readonly ITributavel _tributavel; | ||
private readonly TipoDesconto _tipoDesconto; | ||
|
||
public CalculaBaseCalculoIcmsEfetivo(ITributavel tributavel, TipoDesconto tipoDesconto) : base(tributavel) | ||
{ | ||
_tributavel = tributavel; | ||
_tipoDesconto = tipoDesconto; | ||
} | ||
|
||
public decimal CalculaBaseCalculo() | ||
{ | ||
var baseCalculo = _tributavel.PercentualIcmsEfetivo > 0m ? CalculaBaseDeCalculo() + _tributavel.ValorIpi : 0m; | ||
|
||
return _tipoDesconto == TipoDesconto.Condincional ? CalculaIcmsComDescontoCondicional(baseCalculo) : CalculaIcmsComDescontoIncondicional(baseCalculo); | ||
} | ||
|
||
private decimal CalculaIcmsComDescontoIncondicional(decimal baseCalculoInicial) | ||
{ | ||
var baseCalculo = baseCalculoInicial - _tributavel.Desconto; | ||
|
||
baseCalculo = baseCalculo - baseCalculo * _tributavel.PercentualReducaoIcmsEfetivo / 100; | ||
|
||
return baseCalculo; | ||
} | ||
|
||
private decimal CalculaIcmsComDescontoCondicional(decimal baseCalculoInicial) | ||
{ | ||
var baseCalulo = baseCalculoInicial + _tributavel.Desconto; | ||
|
||
baseCalulo = baseCalulo - baseCalulo * _tributavel.PercentualReducaoIcmsEfetivo / 100; | ||
|
||
return baseCalulo; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/MotorTributarioNet/Impostos/IResultadoCalculoIcmsEfetivo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Projeto: Motor Tributario | ||
// Biblioteca C# para Cálculos Tributários Do Brasil | ||
// NF-e, NFC-e, CT-e, SAT-Fiscal | ||
// | ||
// Esta biblioteca é software livre; você pode redistribuí-la e/ou modificá-la | ||
// sob os termos da Licença Pública Geral Menor do GNU conforme publicada pela | ||
// Free Software Foundation; tanto a versão 2.1 da Licença, ou (a seu critério) | ||
// qualquer versão posterior. | ||
// | ||
// Esta biblioteca é distribuída na expectativa de que seja útil, porém, SEM | ||
// NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU | ||
// ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral Menor | ||
// do GNU para mais detalhes. (Arquivo LICENÇA.TXT ou LICENSE.TXT) | ||
// | ||
// Você deve ter recebido uma cópia da Licença Pública Geral Menor do GNU junto | ||
// com esta biblioteca; se não, escreva para a Free Software Foundation, Inc., | ||
// no endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | ||
// Você também pode obter uma copia da licença em: | ||
// https://github.com/AutomacaoNet/MotorTributarioNet/blob/master/LICENSE | ||
|
||
namespace MotorTributarioNet.Impostos | ||
{ | ||
public interface IResultadoCalculoIcmsEfetivo | ||
{ | ||
decimal BaseCalculo { get; } | ||
decimal Valor { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
src/MotorTributarioNet/Impostos/Implementacoes/ResultadoCalculoIcmsEfetivo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Projeto: Motor Tributario | ||
// Biblioteca C# para Cálculos Tributários Do Brasil | ||
// NF-e, NFC-e, CT-e, SAT-Fiscal | ||
// | ||
// Esta biblioteca é software livre; você pode redistribuí-la e/ou modificá-la | ||
// sob os termos da Licença Pública Geral Menor do GNU conforme publicada pela | ||
// Free Software Foundation; tanto a versão 2.1 da Licença, ou (a seu critério) | ||
// qualquer versão posterior. | ||
// | ||
// Esta biblioteca é distribuída na expectativa de que seja útil, porém, SEM | ||
// NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU | ||
// ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral Menor | ||
// do GNU para mais detalhes. (Arquivo LICENÇA.TXT ou LICENSE.TXT) | ||
// | ||
// Você deve ter recebido uma cópia da Licença Pública Geral Menor do GNU junto | ||
// com esta biblioteca; se não, escreva para a Free Software Foundation, Inc., | ||
// no endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | ||
// Você também pode obter uma copia da licença em: | ||
// https://github.com/AutomacaoNet/MotorTributarioNet/blob/master/LICENSE | ||
|
||
namespace MotorTributarioNet.Impostos.Implementacoes | ||
{ | ||
public class ResultadoCalculoIcmsEfetivo : IResultadoCalculoIcmsEfetivo | ||
{ | ||
public ResultadoCalculoIcmsEfetivo(decimal baseCalculo, decimal valor) | ||
{ | ||
BaseCalculo = baseCalculo; | ||
Valor = valor; | ||
} | ||
|
||
public decimal BaseCalculo { get; } | ||
public decimal Valor { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/MotorTributarioNet/Impostos/Tributacoes/TributacaoIcmsEfetivo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Projeto: Motor Tributario | ||
// Biblioteca C# para Cálculos Tributários Do Brasil | ||
// NF-e, NFC-e, CT-e, SAT-Fiscal | ||
// | ||
// Esta biblioteca é software livre; você pode redistribuí-la e/ou modificá-la | ||
// sob os termos da Licença Pública Geral Menor do GNU conforme publicada pela | ||
// Free Software Foundation; tanto a versão 2.1 da Licença, ou (a seu critério) | ||
// qualquer versão posterior. | ||
// | ||
// Esta biblioteca é distribuída na expectativa de que seja útil, porém, SEM | ||
// NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU | ||
// ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral Menor | ||
// do GNU para mais detalhes. (Arquivo LICENÇA.TXT ou LICENSE.TXT) | ||
// | ||
// Você deve ter recebido uma cópia da Licença Pública Geral Menor do GNU junto | ||
// com esta biblioteca; se não, escreva para a Free Software Foundation, Inc., | ||
// no endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | ||
// Você também pode obter uma copia da licença em: | ||
// https://github.com/AutomacaoNet/MotorTributarioNet/blob/master/LICENSE | ||
|
||
using System; | ||
using MotorTributarioNet.Flags; | ||
using MotorTributarioNet.Impostos.CalulosDeBC; | ||
using MotorTributarioNet.Impostos.Implementacoes; | ||
|
||
namespace MotorTributarioNet.Impostos.Tributacoes | ||
{ | ||
public class TributacaoIcmsEfetivo | ||
{ | ||
private readonly ITributavel _tributavel; | ||
private readonly CalculaBaseCalculoIcmsEfetivo _calculaBaseCalculoIcms; | ||
|
||
public TributacaoIcmsEfetivo(ITributavel tributavel, TipoDesconto tipoDesconto) | ||
{ | ||
_tributavel = tributavel ?? throw new ArgumentNullException(nameof(tributavel)); | ||
_calculaBaseCalculoIcms = new CalculaBaseCalculoIcmsEfetivo(_tributavel, tipoDesconto); | ||
} | ||
|
||
public IResultadoCalculoIcmsEfetivo Calcula() | ||
{ | ||
return CalculaIcms(); | ||
} | ||
|
||
private IResultadoCalculoIcmsEfetivo CalculaIcms() | ||
{ | ||
var baseCalculo = _calculaBaseCalculoIcms.CalculaBaseCalculo(); | ||
|
||
var valorIcms = CalculaIcms(baseCalculo); | ||
|
||
return new ResultadoCalculoIcmsEfetivo(baseCalculo, valorIcms); | ||
} | ||
|
||
private decimal CalculaIcms(decimal baseCalculo) | ||
{ | ||
if (_tributavel.PercentualIcmsEfetivo > 0m) | ||
{ | ||
decimal percentualCalculoIcmsEfetivo = _tributavel.PercentualIcmsEfetivo; | ||
return baseCalculo * percentualCalculoIcmsEfetivo / 100; | ||
} | ||
return 0m; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using MotorTributarioNet.Impostos.Csosns; | ||
using TestCalculosTributarios.Entidade; | ||
using Xunit; | ||
|
||
namespace TestCalculosTributarios.Csosn | ||
{ | ||
public class Csosn500Test | ||
{ | ||
|
||
[Fact] | ||
public void TestaCalculoICMSEfetivo() | ||
{ | ||
var produto = new Produto | ||
{ | ||
QuantidadeProduto = 1.000m, | ||
ValorProduto = 1000.00m, | ||
PercentualIcmsEfetivo = 20.00m, | ||
PercentualReducaoIcmsEfetivo = 20.00m | ||
}; | ||
|
||
var csosn500 = new Csosn500(); | ||
|
||
csosn500.Calcula(produto); | ||
|
||
Assert.Equal(800.00m, csosn500.ValorBcIcmsEfetivo); | ||
Assert.Equal(160.00m, csosn500.ValorIcmsEfetivo); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.