julio 2016-08-03 19:08:40 +00:00
parent 86bfc4fb72
commit ad475a170c
1 changed files with 18 additions and 8 deletions

View File

@ -79,6 +79,8 @@ public class ConfRestricaoCanalVenta implements Serializable {
private List<ConfRestricaoPtovta> lsConfRestricaoPtovta; private List<ConfRestricaoPtovta> lsConfRestricaoPtovta;
@Column(name = "INDEXIBECONSULTAVENDAWEB") @Column(name = "INDEXIBECONSULTAVENDAWEB")
private Boolean indexibeconsultavendaweb; private Boolean indexibeconsultavendaweb;
@Column(name = "INDEXIBECORRIDABLOQ")
private Boolean indexibecorridabloq;
public ConfRestricaoCanalVenta() { public ConfRestricaoCanalVenta() {
super(); super();
@ -237,6 +239,22 @@ public class ConfRestricaoCanalVenta implements Serializable {
this.ruta = ruta; 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<ConfRestricaoExcecao> getLsConfRestricaoExcecao() { public List<ConfRestricaoExcecao> getLsConfRestricaoExcecao() {
if (this.lsConfRestricaoExcecao != null) { if (this.lsConfRestricaoExcecao != null) {
List<ConfRestricaoExcecao> lsTemp = new ArrayList<ConfRestricaoExcecao>(); List<ConfRestricaoExcecao> lsTemp = new ArrayList<ConfRestricaoExcecao>();
@ -303,12 +321,4 @@ public class ConfRestricaoCanalVenta implements Serializable {
return false; return false;
return true; return true;
} }
public Boolean getIndexibeconsultavendaweb() {
return indexibeconsultavendaweb;
}
public void setIndexibeconsultavendaweb(Boolean indexibeconsultavendaweb) {
this.indexibeconsultavendaweb = indexibeconsultavendaweb;
}
} }