Commit 76450ff6006ed17e6b62a373cb6d574691b210d5
1 parent
63cdf8c8b1
Exists in
master
Filtrar busqueda
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
src/js/controller.js
... | ... | @@ -32,6 +32,7 @@ angular.module('focaModalCheque') |
32 | 32 | $scope.seleccionarBanco = function(key) { |
33 | 33 | if(key === 13) { |
34 | 34 | var parametrosModal = { |
35 | + searchText: $scope.cheque.banco.desbco, | |
35 | 36 | query: '/banco', |
36 | 37 | columnas: [ |
37 | 38 | { |
... | ... | @@ -61,6 +62,7 @@ angular.module('focaModalCheque') |
61 | 62 | $scope.seleccionarProvincia = function(key) { |
62 | 63 | if(key === 13) { |
63 | 64 | var parametrosModal = { |
65 | + searchText: $scope.cheque.provincia.NOMBRE, | |
64 | 66 | query: '/provincia', |
65 | 67 | columnas: [ |
66 | 68 | { |
... | ... | @@ -94,6 +96,7 @@ angular.module('focaModalCheque') |
94 | 96 | } |
95 | 97 | if(key === 13) { |
96 | 98 | var parametrosModal = { |
99 | + searchText: $scope.cheque.localidad.NOMBRE, | |
97 | 100 | query: '/localidad/' + $scope.cheque.provincia.ID, |
98 | 101 | columnas: [ |
99 | 102 | { |