Se a cambiado la organizacion de las ventanas y se creo la vista de estado resultado junto con su modelo

This commit is contained in:
Daniel Cortes
2019-02-15 19:24:32 -03:00
parent 6388285108
commit ea5bccdaba
21 changed files with 2307 additions and 21 deletions

View File

@@ -34,6 +34,8 @@ import danielcortes.xyz.models.efectivo.EfectivoDAO;
import danielcortes.xyz.models.efectivo.SQLiteEfectivoDAO;
import danielcortes.xyz.models.egreso.EgresoDAO;
import danielcortes.xyz.models.egreso.SQLiteEgresoDAO;
import danielcortes.xyz.models.estado_resultado.EstadoResultadoDAO;
import danielcortes.xyz.models.estado_resultado.SQLiteEstadoResultadoDAO;
import danielcortes.xyz.models.informes.egresos.InformeEgresosContentDAO;
import danielcortes.xyz.models.informes.egresos.SQLiteInformeEgresosContentDAO;
import danielcortes.xyz.models.informes.libro_de_ventas.InformeLibroDeVentasContentDAO;
@@ -56,6 +58,7 @@ public class DAOManager {
private static final IngresoDAO ingresoDAO;
private static final TipoEgresoDAO tipoEgresoDAO;
private static final TipoIngresoDAO tipoIngresoDAO;
private static final EstadoResultadoDAO estadoResultadoDAO;
static {
cajaDAO = new SQLiteCajaDAO();
@@ -68,6 +71,7 @@ public class DAOManager {
ingresoDAO = new SQLiteIngresoDAO();
tipoEgresoDAO = new SQLiteTipoEgresoDAO();
tipoIngresoDAO = new SQLiteTipoIngresoDAO();
estadoResultadoDAO = new SQLiteEstadoResultadoDAO();
}
public static CajaDAO getCajaDAO() {
@@ -109,4 +113,8 @@ public class DAOManager {
public static TipoIngresoDAO getTipoIngresoDAO() {
return tipoIngresoDAO;
}
public static EstadoResultadoDAO getEstadoResultadoDAO() {
return estadoResultadoDAO;
}
}