From e6dbb247eec51f799d8a6ad2bceeee043002e57f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s?= Date: Fri, 9 Nov 2018 13:24:14 -0300 Subject: [PATCH] resolve transportista para modal proveedores --- src/js/controller.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/js/controller.js b/src/js/controller.js index 237ce0f..3af8631 100644 --- a/src/js/controller.js +++ b/src/js/controller.js @@ -284,7 +284,12 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', ariaLabelledBy: 'Busqueda de Proveedor', templateUrl: 'modal-proveedor.html', controller: 'focaModalProveedorCtrl', - size: 'lg' + size: 'lg', + resolve: { + transportista: function() { + return false; + } + } } ); modalInstance.result.then( @@ -578,7 +583,8 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', return; } $scope.mostrarTeclado = false; - }) + }); + $scope.selectFocus = function($event) { // Si el teclado esta en uso no selecciona el valor if($scope.mostrarTeclado) { -- 1.9.1