16970: Parametrizar Venda embarcada não Bpe
fixes bug#16970 dev: valdevir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@98645 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
b563583791
commit
46a8392067
|
@ -70,6 +70,9 @@ public class DispositivoEmbarcada {
|
|||
@OneToMany(mappedBy="dispositivoEmbarcada", cascade = CascadeType.ALL, fetch = FetchType.EAGER)
|
||||
private List<CtrlSerieEmbarcada> series = new ArrayList<CtrlSerieEmbarcada>();
|
||||
|
||||
@Column(name = "IND_VENDE_BPE")
|
||||
private Boolean indVendeNaoBpe;
|
||||
|
||||
public Long getDispositivoEmbarcadaId() {
|
||||
return dispositivoEmbarcadaId;
|
||||
}
|
||||
|
@ -175,6 +178,12 @@ public class DispositivoEmbarcada {
|
|||
this.series = series;
|
||||
}
|
||||
|
||||
public Boolean getIndVendeNaoBpe() {
|
||||
return indVendeNaoBpe;
|
||||
}
|
||||
public void setIndVendeNaoBpe(Boolean indVendeNaoBpe) {
|
||||
this.indVendeNaoBpe = indVendeNaoBpe;
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return this.getDescricao();
|
||||
|
|
|
@ -22,6 +22,7 @@ public class DispositivoEmbarcadaVO {
|
|||
private String msg;
|
||||
private Integer estacionId;
|
||||
private List<EmpresaVO> empresasVenda = new ArrayList<EmpresaVO>();
|
||||
private Boolean indVendeNaoBpe;
|
||||
|
||||
public void add(EstadoDispositivoEmbarcadaVO estado){
|
||||
estados.add(estado);
|
||||
|
@ -154,4 +155,12 @@ public class DispositivoEmbarcadaVO {
|
|||
this.numagencia = numagencia;
|
||||
}
|
||||
|
||||
public Boolean getIndVendeNaoBpe() {
|
||||
return indVendeNaoBpe;
|
||||
}
|
||||
|
||||
public void setIndVendeNaoBpe(Boolean indVendeNaoBpe) {
|
||||
this.indVendeNaoBpe = indVendeNaoBpe;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue