From 4bc723fa694e3a21566c4871552575df11cd7c14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s?= Date: Mon, 5 Nov 2018 18:01:03 -0300 Subject: [PATCH] recepcion de terminal key --- index.html | 1 + package.json | 1 + src/js/app.js | 20 +++++++++++++------- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 65b893a..4f383b3 100644 --- a/index.html +++ b/index.html @@ -32,6 +32,7 @@ + diff --git a/package.json b/package.json index 77bc7d6..d98ee28 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "foca-abm-sectores": "git+https://debo.suite.repo/modulos-npm/foca-abm-sectores", "foca-botonera-principal": "git+https://debo.suite.repo/modulos-npm/foca-botonera-principal.git", "foca-busqueda-cliente": "git+https://debo.suite.repo/modulos-npm/foca-busqueda-cliente.git", + "foca-configuracion": "git+https://debo.suite.repo/modulos-npm/foca-configuracion.git", "foca-crear-nota-pedido": "git+https://debo.suite.repo/modulos-npm/foca-crear-nota-pedido.git", "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas.git", "foca-login": "git+https://debo.suite.repo/modulos-npm/foca-login.git", diff --git a/src/js/app.js b/src/js/app.js index df1c375..258c64f 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -1,30 +1,36 @@ angular.module('appWrapperDemo', [ + //EXTERNOS 'angular-ladda', + 'cordovaGeolocationModule', 'ngCookies', 'ngRoute', + 'ngSanitize', + 'onScreenKeyboard', 'ui.bootstrap', 'ui.swiper', + + // MODULOS FOCA 'focaAbmPlazoPago', 'focaAbmPreciosCondiciones', 'focaAbmSectores', 'focaBotoneraPrincipal', 'focaBusquedaCliente', 'focaBusquedaProductos', + 'focaConfiguracion', 'focaCrearNotaPedido', 'focaDirectivas', 'focaLogin', 'focaModal', 'focaModalCotizacion', + 'focaModalDomicilio', 'focaModalFlete', 'focaModalMoneda', 'focaModalPrecioCondicion', 'focaModalProveedor', 'focaModalVendedores', + 'focaSeguimiento', 'focaTeclado', - 'focaTurnoApertura', - 'ngSanitize', - 'onScreenKeyboard', - 'focaModalDomicilio', - 'cordovaGeolocationModule', - 'focaSeguimiento' -]); + 'focaTurnoApertura' +]).run(function($http, API_ENDPOINT) { + $http.get(API_ENDPOINT.URL + '/config/header'); +}); -- 1.9.1