fixes bug #9320
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@70988 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
28b8cd636b
commit
52391d76cc
|
@ -182,15 +182,39 @@ public class CategoriaDescuento implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public CategoriaDescuento() {
|
public CategoriaDescuento() {
|
||||||
|
this.indSegunda = true;
|
||||||
|
this.indTerca = true;
|
||||||
|
this.indQuarta = true;
|
||||||
|
this.indQuinta = true;
|
||||||
|
this.indSexta = true;
|
||||||
|
this.indSabado = true;
|
||||||
|
this.indDomingo = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public CategoriaDescuento(Integer categoriadescuentoId) {
|
public CategoriaDescuento(Integer categoriadescuentoId) {
|
||||||
this.categoriadescuentoId = categoriadescuentoId;
|
this.categoriadescuentoId = categoriadescuentoId;
|
||||||
|
|
||||||
|
this.indSegunda = true;
|
||||||
|
this.indTerca = true;
|
||||||
|
this.indQuarta = true;
|
||||||
|
this.indQuinta = true;
|
||||||
|
this.indSexta = true;
|
||||||
|
this.indSabado = true;
|
||||||
|
this.indDomingo = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public CategoriaDescuento(Integer categoriadescuentoId, Date fecmodif) {
|
public CategoriaDescuento(Integer categoriadescuentoId, Date fecmodif) {
|
||||||
this.categoriadescuentoId = categoriadescuentoId;
|
this.categoriadescuentoId = categoriadescuentoId;
|
||||||
this.fecmodif = fecmodif;
|
this.fecmodif = fecmodif;
|
||||||
|
|
||||||
|
this.indSegunda = true;
|
||||||
|
this.indTerca = true;
|
||||||
|
this.indQuarta = true;
|
||||||
|
this.indQuinta = true;
|
||||||
|
this.indSexta = true;
|
||||||
|
this.indSabado = true;
|
||||||
|
this.indDomingo = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getCategoriadescuentoId() {
|
public Integer getCategoriadescuentoId() {
|
||||||
|
|
Loading…
Reference in New Issue