leonardo 2017-07-04 19:12:13 +00:00
parent 28b8cd636b
commit 52391d76cc
1 changed files with 24 additions and 0 deletions

View File

@ -182,15 +182,39 @@ public class CategoriaDescuento implements Serializable {
}
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) {
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) {
this.categoriadescuentoId = categoriadescuentoId;
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() {