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:
@@ -340,5 +340,4 @@ public class ArqueoView {
|
||||
public JComponent $$$getRootComponent$$$() {
|
||||
return contentPanel;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -136,5 +136,4 @@ public class TipoEgresoSelectDialog extends JDialog {
|
||||
public JComponent $$$getRootComponent$$$() {
|
||||
return contentPane;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user