Cambio de nombre de diferencia a deposito en el calculo del fondo.

This commit is contained in:
Daniel Cortes
2019-01-19 17:02:43 -03:00
parent 0d41e533c0
commit 9ed451ab4f
5 changed files with 13 additions and 14 deletions

View File

@@ -25,7 +25,6 @@
package danielcortes.xyz.views.components;
import danielcortes.xyz.models.calculo_fondo.CalculoFondo;
import danielcortes.xyz.models.egreso.Egreso;
import javax.swing.table.AbstractTableModel;
import java.text.NumberFormat;
@@ -89,7 +88,7 @@ public class FondoTableModel extends AbstractTableModel {
public Object getValueAt(int row, int col) {
switch (col){
case 0:
return rows.get(row).getValor();
return nf.format(rows.get(row).getValor());
case 1:
return rows.get(row).getDescripcion();
}