fixes bug#16003
dev:Wilian qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@100029 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
2e264ea587
commit
5c908d09d1
|
@ -157,6 +157,7 @@ public class CategoriaDescuento implements Serializable {
|
||||||
|
|
||||||
@Column(name = "INDNAOAPLICATARIFAMINIMA")
|
@Column(name = "INDNAOAPLICATARIFAMINIMA")
|
||||||
private Boolean indnaoaplicatarifaminima;
|
private Boolean indnaoaplicatarifaminima;
|
||||||
|
|
||||||
@Column(name = "INDTIPOOCUPACAO")
|
@Column(name = "INDTIPOOCUPACAO")
|
||||||
private boolean indtipoocupacao;
|
private boolean indtipoocupacao;
|
||||||
|
|
||||||
|
@ -166,6 +167,19 @@ public class CategoriaDescuento implements Serializable {
|
||||||
@Column(name = "QTDE_VIAS_CUPOM_EMBARQUE")
|
@Column(name = "QTDE_VIAS_CUPOM_EMBARQUE")
|
||||||
private Integer qtdeViasCupomEmbarque;
|
private Integer qtdeViasCupomEmbarque;
|
||||||
|
|
||||||
|
@Column(name = "INDVENDAANTECIPADAPORKM")
|
||||||
|
private Boolean indVendaAntecipadaPorKM;
|
||||||
|
|
||||||
|
@Column(name = "KMVENDAANTECIPADA")
|
||||||
|
private Integer kmVendaAntecipada;
|
||||||
|
|
||||||
|
@Column(name = "TEMPOLIBERACAOATEKM")
|
||||||
|
private Date tempoLiberacaoAteKM;
|
||||||
|
|
||||||
|
@Column(name = "TEMPOLIBERACAODEPOISKM")
|
||||||
|
private Date tempoLiberacaoDepoisKM;
|
||||||
|
|
||||||
|
|
||||||
public enum DisponibilidadeFeriado {
|
public enum DisponibilidadeFeriado {
|
||||||
// Declaração dos enum
|
// Declaração dos enum
|
||||||
GERARSEMPRE("SEMPRE", "S"),
|
GERARSEMPRE("SEMPRE", "S"),
|
||||||
|
@ -741,4 +755,40 @@ public class CategoriaDescuento implements Serializable {
|
||||||
this.qtdeViasCupomEmbarque = qtdeViasCupomEmbarque;
|
this.qtdeViasCupomEmbarque = qtdeViasCupomEmbarque;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean isIndVendaAntecipadaPorKM() {
|
||||||
|
return indVendaAntecipadaPorKM;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndVendaAntecipadaPorKM(Boolean indVendaAntecipadaPorKM) {
|
||||||
|
this.indVendaAntecipadaPorKM = indVendaAntecipadaPorKM;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getKmVendaAntecipada() {
|
||||||
|
return kmVendaAntecipada;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKmVendaAntecipada(Integer kmVendaAntecipada) {
|
||||||
|
this.kmVendaAntecipada = kmVendaAntecipada;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getTempoLiberacaoAteKM() {
|
||||||
|
return tempoLiberacaoAteKM;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTempoLiberacaoAteKM(Date tempoLiberacaoAteKM) {
|
||||||
|
this.tempoLiberacaoAteKM = tempoLiberacaoAteKM;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getTempoLiberacaoDepoisKM() {
|
||||||
|
return tempoLiberacaoDepoisKM;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTempoLiberacaoDepoisKM(Date tempoLiberacaoDepoisKM) {
|
||||||
|
this.tempoLiberacaoDepoisKM = tempoLiberacaoDepoisKM;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getIndVendaAntecipadaPorKM() {
|
||||||
|
return BooleanUtils.toBoolean(indVendaAntecipadaPorKM);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue