From a189882fb28f0039d5c1430dbc2aa13c853c5583 Mon Sep 17 00:00:00 2001 From: thiago Date: Wed, 16 Sep 2015 14:58:47 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#6618=20-=20Incluida=20valida?= =?UTF-8?q?=C3=A7=C3=A3o=20que=20verifica=20permiss=C3=A3o=20de=20venda=20?= =?UTF-8?q?para=20Estados=20diferentes=20do=20ponto=20de=20venda.?= 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@47935 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/EmpresaImposto.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java index 5d7353500..5401fb1b7 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java @@ -87,6 +87,9 @@ public class EmpresaImposto implements Serializable { @Column(name = "INDOUTROSISENTO") private Boolean indOutrosIsento; + + @Column(name = "INDOUTRASUFBLOQUEADAS") + private Boolean indOutrasUFBloqueadas; @Column(name = "ACTIVO") private Boolean activo; @@ -616,4 +619,18 @@ public class EmpresaImposto implements Serializable { this.porctributo = porctributo; } + /** + * @return the indOutrasUFBloqueadas + */ + public Boolean getIndOutrasUFBloqueadas() { + return indOutrasUFBloqueadas; + } + + /** + * @param indOutrasUFBloqueadas the indOutrasUFBloqueadas to set + */ + public void setIndOutrasUFBloqueadas(Boolean indOutrasUFBloqueadas) { + this.indOutrasUFBloqueadas = indOutrasUFBloqueadas; + } + } \ No newline at end of file