Corregir bugs y aniadir la opcion de eliminar transacciones

This commit is contained in:
2019-11-15 01:10:55 +01:00
parent 86c642dba9
commit 0d6d20001f
7 changed files with 57 additions and 31 deletions

View File

@@ -35,7 +35,7 @@ public class Menu extends JFrame{
this.cargarPestanias();
this.setLayout(new GridBagLayout());
GridBagConstraints constrain = new GridBagConstraints();
this.panel = new VistaPanelLateral(constrain);
this.panel = new VistaPanelLateral(constrain, this.meses);
this.panelCentral = new JPanel();
constrain.fill = GridBagConstraints.VERTICAL;
@@ -77,7 +77,6 @@ public class Menu extends JFrame{
this.meses.elegirMes(anio, mes);
if(this.meses.getGestionesActuales().size() == 0) {
this.iniciarMes(anio, mes);
System.out.println("entra");
}else {
this.cargarMes();
}