Commit aed57b90d83e17b85b06cee737f48a83fc09d94c

Authored by Jose Pinto
1 parent 7d983cb5e6
Exists in master and in 1 other branch develop

envia parametro 'esNuevo' a modal domicilio

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
src/js/controller.js
... ... @@ -444,7 +444,10 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl',
444 444 ariaLabelledBy: 'Busqueda de Domicilios',
445 445 templateUrl: 'modal-domicilio.html',
446 446 controller: 'focaModalDomicilioController',
447   - resolve: { idCliente: function() { return cliente.cod; }},
  447 + resolve: {
  448 + idCliente: function() { return cliente.cod; },
  449 + esNuevo: function() { return cliente.esNuevo; }
  450 + },
448 451 size: 'lg',
449 452 }
450 453 );