Mantencion de archivos, pase a borrar el .idea localmente y perdi un poco el orden de todo, a eso sedeben todos estos commits

This commit is contained in:
Daniel Cortes
2019-01-20 19:11:16 -03:00
parent 52f3f48ddc
commit e6195786b6
10 changed files with 64 additions and 64 deletions

BIN
dist/Programa Caja.jar vendored

Binary file not shown.

View File

@@ -2,10 +2,10 @@
handlers= java.util.logging.FileHandler
java.util.logging.FileHandler.level = ALL
java.util.logging.FileHandler.pattern = logs/logs-%u.xml
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
java.util.logging.FileHandler.pattern = logs/logs-%u.log
java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
#java.util.logging.ConsoleHandler.level = ALL
#java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
danielcortes.level= FINE
danielcortes.level= ALL

View File

@@ -340,5 +340,4 @@ public class ArqueoView {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
}

View File

@@ -98,6 +98,28 @@ public class CalcularFondoView {
return tableModel;
}
private void createUIComponents() {
this.createTable();
}
private void createTable() {
this.tableModel = new FondoTableModel();
this.table = new JTable(this.tableModel);
RowSorter<TableModel> sorter = new TableRowSorter<>(this.tableModel);
this.table.setRowSorter(sorter);
this.table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
}
private void fillDefaultsValues() {
this.valorField.setValue(0);
this.depositoField.setValue(0);
this.fondoField.setValue(0);
this.sumaField.setValue(0);
this.depositoField.setValue(0);
}
/**
* Method generated by IntelliJ IDEA GUI Designer
* >>> IMPORTANT!! <<<
@@ -165,25 +187,4 @@ public class CalcularFondoView {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
private void createUIComponents() {
this.createTable();
}
private void createTable() {
this.tableModel = new FondoTableModel();
this.table = new JTable(this.tableModel);
RowSorter<TableModel> sorter = new TableRowSorter<>(this.tableModel);
this.table.setRowSorter(sorter);
this.table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
}
private void fillDefaultsValues() {
this.valorField.setValue(0);
this.depositoField.setValue(0);
this.fondoField.setValue(0);
this.sumaField.setValue(0);
this.depositoField.setValue(0);
}
}

View File

@@ -128,6 +128,7 @@ public class EgresosView {
return errorTipoEgreso;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
@@ -242,5 +243,4 @@ public class EgresosView {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
}

View File

@@ -48,6 +48,7 @@ public class InformesView {
return GenerarEgresosFacturasMateriaPrimaButton;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
@@ -87,5 +88,4 @@ public class InformesView {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
}

View File

@@ -146,6 +146,7 @@ public class IngresosView {
return errorNroZInicial;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
@@ -267,5 +268,4 @@ public class IngresosView {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
}

View File

@@ -70,6 +70,7 @@ public class ManagerView {
return cardPanel;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
@@ -129,5 +130,4 @@ public class ManagerView {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
}

View File

@@ -95,6 +95,41 @@ public class MonthSelectDialog extends JDialog {
return monthDate;
}
private void createUIComponents() {
createYearSpinner();
createMonthCombo();
}
private void createYearSpinner() {
SpinnerModel model = new YearSpinnerModel();
this.yearSpinner = new JSpinner();
this.yearSpinner.setModel(model);
((JSpinner.DefaultEditor) this.yearSpinner.getEditor()).getTextField().setEditable(true);
}
private void createMonthCombo() {
months = new ArrayList<>();
months.add("Enero");
months.add("Febrero");
months.add("Marzo");
months.add("Abril");
months.add("Mayo");
months.add("Junio");
months.add("Julio");
months.add("Agosto");
months.add("Septiembre");
months.add("Octubre");
months.add("Noviembre");
months.add("Diciembre");
monthCombo = new JComboBox<>();
for (String month : months) {
monthCombo.addItem(month);
}
}
/**
* Method generated by IntelliJ IDEA GUI Designer
* >>> IMPORTANT!! <<<
@@ -142,38 +177,4 @@ public class MonthSelectDialog extends JDialog {
public JComponent $$$getRootComponent$$$() {
return contentPane;
}
private void createUIComponents() {
createYearSpinner();
createMonthCombo();
}
private void createYearSpinner() {
SpinnerModel model = new YearSpinnerModel();
this.yearSpinner = new JSpinner();
this.yearSpinner.setModel(model);
((JSpinner.DefaultEditor) this.yearSpinner.getEditor()).getTextField().setEditable(true);
}
private void createMonthCombo() {
months = new ArrayList<>();
months.add("Enero");
months.add("Febrero");
months.add("Marzo");
months.add("Abril");
months.add("Mayo");
months.add("Junio");
months.add("Julio");
months.add("Agosto");
months.add("Septiembre");
months.add("Octubre");
months.add("Noviembre");
months.add("Diciembre");
monthCombo = new JComboBox<>();
for (String month : months) {
monthCombo.addItem(month);
}
}
}

View File

@@ -136,5 +136,4 @@ public class TipoEgresoSelectDialog extends JDialog {
public JComponent $$$getRootComponent$$$() {
return contentPane;
}
}