Commit c12488499e5c5ab18ad9371ba285499580299ba4

Authored by Marcelo Puebla
1 parent aed93935da
Exists in develop

Agregado valor para input de importe.

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
src/js/controller.js
... ... @@ -16,7 +16,10 @@ angular.module('focaModalFormaPago')
16 16 }
17 17  
18 18 $scope.seleccionarEfectivo = function () {
19   - var modalInstance = focaModalService.prompt({ titulo: 'Ingrese monto' });
  19 + var modalInstance = focaModalService.prompt({
  20 + titulo: 'Ingrese monto',
  21 + value: parametros.importe
  22 + });
20 23 modalInstance
21 24 .then(function (data) {
22 25 $uibModalInstance.close({ data: data, tipo: 'efectivo' });