Generacion de informes desde la interfaz :3

This commit is contained in:
Daniel Cortes
2019-01-08 17:45:22 -03:00
parent cb4ef76861
commit 5c515752e2
21 changed files with 1376 additions and 549 deletions

View File

@@ -42,6 +42,8 @@ public abstract class CajaDAO {
public abstract boolean insertCaja(Caja caja);
public abstract boolean updateCaja(Caja caja);
public abstract void createCajasForMonth(LocalDate month);
protected List<Caja> cajasFromResultSet(ResultSet rs) throws SQLException {
List<Caja> cajaList = new ArrayList<>();
while (rs.next()) {