Commit db9685cb010066e30a4fae68b041d91f6335bb7d
1 parent
2501d30e41
Exists in
master
ok modal cliente
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
src/js/controller.js
| ... | ... | @@ -288,13 +288,15 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
| 288 | 288 | }; |
| 289 | 289 | |
| 290 | 290 | $scope.seleccionarCliente = function() { |
| 291 | - | |
| 292 | 291 | var modalInstance = $uibModal.open( |
| 293 | 292 | { |
| 294 | 293 | ariaLabelledBy: 'Busqueda de Cliente', |
| 295 | 294 | templateUrl: 'foca-busqueda-cliente-modal.html', |
| 296 | 295 | controller: 'focaBusquedaClienteModalController', |
| 297 | - size: 'lg' | |
| 296 | + size: 'lg', | |
| 297 | + resolve: { | |
| 298 | + vendedor: function(){ return null; } | |
| 299 | + } | |
| 298 | 300 | } |
| 299 | 301 | ); |
| 300 | 302 | modalInstance.result.then( |