BPE - Customizar ativação do bpe por estação

bug#12622
dev:trevezani
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@87355 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2018-11-26 15:27:32 +00:00
parent d725042934
commit 7ef0a9c677
1 changed files with 10 additions and 0 deletions

View File

@ -90,6 +90,8 @@ public class Estacion implements Serializable {
private String nomeImpressoraBPe; private String nomeImpressoraBPe;
@Column(name = "INDSTOCKCENTRAL") @Column(name = "INDSTOCKCENTRAL")
private Boolean indStockCentral; private Boolean indStockCentral;
@Column(name = "INDVOUCHER")
private Boolean indVoucher;
@OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL, fetch = FetchType.EAGER) @OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL, fetch = FetchType.EAGER)
@Where(clause="activo=1") @Where(clause="activo=1")
@ -404,4 +406,12 @@ public class Estacion implements Serializable {
this.nomeImpressoraBPe = nomeImpressoraBPe; this.nomeImpressoraBPe = nomeImpressoraBPe;
} }
public Boolean getIndVoucher() {
return indVoucher;
}
public void setIndVoucher(Boolean indVoucher) {
this.indVoucher = indVoucher;
}
} }