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

@@ -155,7 +155,7 @@ public class CalcularFondoController {
int fondo = this.view.getFondoField().getValue();
int suma = this.calculoFondoDAO.getTotalCalculoFondo(this.caja);
this.view.getSumaField().setValue(suma);
this.view.getDiferenciaField().setValue(suma - fondo);
this.view.getDepositoField().setValue(suma - fondo);
}
private void cleanInput() {