-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementa mapeamento novas tags (produtos e pagamento) (#967)
* Adicionado mapeamento para tag Grupo de crédito presumido referente ao item da nota fiscal. Adicionado casos de teste * Adicionado mapeamento para as novas tags opcionais referentes ao pagamento --------- Co-authored-by: Higor Gardin <[email protected]> Co-authored-by: Diego Fincatto <[email protected]>
- Loading branch information
1 parent
078c0d8
commit 2886099
Showing
7 changed files
with
315 additions
and
132 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
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
...catto/documentofiscal/nfe400/classes/nota/NFNotaInfoItemProdutoGrupoCreditoPresumido.java
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 @@ | ||
package com.fincatto.documentofiscal.nfe400.classes.nota; | ||
|
||
import com.fincatto.documentofiscal.DFBase; | ||
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador; | ||
import com.fincatto.documentofiscal.validadores.DFStringValidador; | ||
import org.simpleframework.xml.Element; | ||
|
||
import java.math.BigDecimal; | ||
|
||
public class NFNotaInfoItemProdutoGrupoCreditoPresumido extends DFBase { | ||
|
||
private static final long serialVersionUID = 3442235647525896376L; | ||
|
||
@Element(name = "cCredPresumido") | ||
private String codigoBeneficioFiscalCreditoPresumido; | ||
|
||
@Element(name = "pCredPresumido") | ||
private String percentualCreditoPresumido; | ||
|
||
@Element(name = "vCredPresumido") | ||
private String valorCreditoPresumido; | ||
|
||
public NFNotaInfoItemProdutoGrupoCreditoPresumido() { | ||
this.codigoBeneficioFiscalCreditoPresumido = null; | ||
this.percentualCreditoPresumido = null; | ||
this.valorCreditoPresumido = null; | ||
} | ||
|
||
public String getCodigoBeneficioFiscalCreditoPresumido() { | ||
return codigoBeneficioFiscalCreditoPresumido; | ||
} | ||
|
||
public NFNotaInfoItemProdutoGrupoCreditoPresumido setCodigoBeneficioFiscalCreditoPresumido( | ||
final String codigoBeneficioFiscalCreditoPresumido) { | ||
DFStringValidador.validaIntervalo(codigoBeneficioFiscalCreditoPresumido, 8, 10, | ||
"Codigo de beneficio fiscal de credito presumido"); | ||
this.codigoBeneficioFiscalCreditoPresumido = codigoBeneficioFiscalCreditoPresumido; | ||
return this; | ||
} | ||
|
||
public String getPercentualCreditoPresumido() { | ||
return percentualCreditoPresumido; | ||
} | ||
|
||
public NFNotaInfoItemProdutoGrupoCreditoPresumido setPercentualCreditoPresumido( | ||
final BigDecimal percentualCreditoPresumido) { | ||
this.percentualCreditoPresumido = DFBigDecimalValidador.tamanho7ComAte4CasasDecimais( | ||
percentualCreditoPresumido, "Percentual de credito presumido"); | ||
return this; | ||
} | ||
|
||
public String getValorCreditoPresumido() { | ||
return valorCreditoPresumido; | ||
} | ||
|
||
public NFNotaInfoItemProdutoGrupoCreditoPresumido setValorCreditoPresumido( | ||
final BigDecimal valorCreditoPresumido) { | ||
this.valorCreditoPresumido = DFBigDecimalValidador.tamanho13Com2CasasDecimais( | ||
valorCreditoPresumido, "Valor de credito presumido"); | ||
return this; | ||
} | ||
|
||
} |
Oops, something went wrong.