From ad475a170cfb253ad457165742ec71d54ad1630b Mon Sep 17 00:00:00 2001 From: julio Date: Wed, 3 Aug 2016 19:08:40 +0000 Subject: [PATCH] fixes bug #7456 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@58690 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../entidad/ConfRestricaoCanalVenta.java | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/ConfRestricaoCanalVenta.java b/src/com/rjconsultores/ventaboletos/entidad/ConfRestricaoCanalVenta.java index 7905b9619..ef9ab17de 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/ConfRestricaoCanalVenta.java +++ b/src/com/rjconsultores/ventaboletos/entidad/ConfRestricaoCanalVenta.java @@ -79,6 +79,8 @@ public class ConfRestricaoCanalVenta implements Serializable { private List lsConfRestricaoPtovta; @Column(name = "INDEXIBECONSULTAVENDAWEB") private Boolean indexibeconsultavendaweb; + @Column(name = "INDEXIBECORRIDABLOQ") + private Boolean indexibecorridabloq; public ConfRestricaoCanalVenta() { super(); @@ -237,6 +239,22 @@ public class ConfRestricaoCanalVenta implements Serializable { this.ruta = ruta; } + public Boolean getIndexibeconsultavendaweb() { + return indexibeconsultavendaweb; + } + + public void setIndexibeconsultavendaweb(Boolean indexibeconsultavendaweb) { + this.indexibeconsultavendaweb = indexibeconsultavendaweb; + } + + public Boolean getIndexibecorridabloq() { + return indexibecorridabloq; + } + + public void setIndexibecorridabloq(Boolean indexibecorridabloq) { + this.indexibecorridabloq = indexibecorridabloq; + } + public List getLsConfRestricaoExcecao() { if (this.lsConfRestricaoExcecao != null) { List lsTemp = new ArrayList(); @@ -303,12 +321,4 @@ public class ConfRestricaoCanalVenta implements Serializable { return false; return true; } - - public Boolean getIndexibeconsultavendaweb() { - return indexibeconsultavendaweb; - } - - public void setIndexibeconsultavendaweb(Boolean indexibeconsultavendaweb) { - this.indexibeconsultavendaweb = indexibeconsultavendaweb; - } }