From 2eaae9ab508c4382d8c24e984e5f8a0049e109ef Mon Sep 17 00:00:00 2001 From: alberto Date: Thu, 10 May 2018 18:54:29 +0000 Subject: [PATCH] =?UTF-8?q?[BPE]:=20Adequa=C3=A7=C3=A3o=20do=20envio=20da?= =?UTF-8?q?=20al=C3=ADquota=20ICMS=20bug#11062=20dev:trevezani=20qua:regis?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@81742 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/EmpresaImposto.java | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java index e2b146c53..c52b44c7f 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java @@ -25,8 +25,8 @@ import javax.persistence.TemporalType; @SequenceGenerator(name = "EMPRESA_IMPOSTO_SEQ", sequenceName = "EMPRESA_IMPOSTO_SEQ", allocationSize = 1) @Table(name = "EMPRESA_IMPOSTO") public class EmpresaImposto implements Serializable { - private static final long serialVersionUID = 1L; + @Id @Basic(optional = false) @GeneratedValue(strategy = GenerationType.AUTO, generator = "EMPRESA_IMPOSTO_SEQ") @@ -59,6 +59,8 @@ public class EmpresaImposto implements Serializable { private BigDecimal porCredEstadual; @Column(name = "PORCREDBASEICMS") private BigDecimal porCredBaseIcms; + @Column(name = "PORCREDBASEICMSIM") + private BigDecimal porcRedBaseIcmsIM; @Column(name = "INDJANEIRO") private Boolean indJaneiro; @@ -741,6 +743,13 @@ public class EmpresaImposto implements Serializable { public void setIsBPe(Boolean isBPe) { this.isBPe = isBPe; + } + + public BigDecimal getPorcRedBaseIcmsIM() { + return porcRedBaseIcmsIM; + } + + public void setPorcRedBaseIcmsIM(BigDecimal porcRedBaseIcmsIM) { + this.porcRedBaseIcmsIM = porcRedBaseIcmsIM; } - } \ No newline at end of file