fixes bug#21635
dev:valdir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@106173 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
030eef16d8
commit
97aa0bc9ac
|
@ -117,6 +117,9 @@ public class Pricing implements Serializable {
|
||||||
@Column(name = "INDSOMENTEASSENTOSUGERIDO")
|
@Column(name = "INDSOMENTEASSENTOSUGERIDO")
|
||||||
private Boolean indSomenteAssentoSugerido;
|
private Boolean indSomenteAssentoSugerido;
|
||||||
|
|
||||||
|
@Column(name = "INDPRICINGDIVIDIRIDAEVOLTA")
|
||||||
|
private Boolean indPricingDividirIdaEVolta;
|
||||||
|
|
||||||
public enum GerarFeriado {
|
public enum GerarFeriado {
|
||||||
// Declaração dos enum
|
// Declaração dos enum
|
||||||
GERARSEMPRE("GERAR SEMPRE", "S"),
|
GERARSEMPRE("GERAR SEMPRE", "S"),
|
||||||
|
@ -549,4 +552,12 @@ public class Pricing implements Serializable {
|
||||||
this.indSomenteAssentoSugerido = indSomenteAssentoSugerido;
|
this.indSomenteAssentoSugerido = indSomenteAssentoSugerido;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndPricingDividirIdaEVolta() {
|
||||||
|
return BooleanUtils.toBoolean(indPricingDividirIdaEVolta);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndPricingDividirIdaEVolta(Boolean indPricingDividirIdaEVolta) {
|
||||||
|
this.indPricingDividirIdaEVolta = indPricingDividirIdaEVolta;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue