diff --git a/index.html b/index.html index 05458a4..c835eae 100644 --- a/index.html +++ b/index.html @@ -28,6 +28,7 @@ + @@ -58,6 +59,7 @@ + @@ -66,6 +68,7 @@ + diff --git a/package.json b/package.json index 1f9775e..9e10543 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "angular-cookies": "^1.7.8", "angular-i18n": "^1.7.8", "angular-ladda": "^0.4.3", + "angular-md5": "^0.1.10", "angular-route": "^1.7.8", "angular-sanitize": "^1.7.8", "angular-ui-swiper": "^2.3.8", @@ -47,7 +48,7 @@ "foca-crear-cobranza": "git+http://git.focasoftware.com/npm/foca-crear-cobranza.git", "foca-crear-hoja-ruta": "git+http://git.focasoftware.com/npm/foca-crear-hoja-ruta.git", "foca-crear-login": "git+http://git.focasoftware.com/npm/foca-crear-login.git", - "foca-crear-nota-pedido": "git+http://git.focasoftware.com/npm/foca-crear-nota-pedido.git", + "foca-crear-nota-pedido": "git+http://git.focasoftware.com/npm/foca-crear-nota-pedido.git#develop", "foca-crear-remito": "git+http://git.focasoftware.com/npm/foca-crear-remito.git", "foca-directivas": "git+http://git.focasoftware.com/npm/foca-directivas.git", "foca-estado-cisternas": "git+http://git.focasoftware.com/npm/foca-estado-cisternas.git", @@ -73,6 +74,7 @@ "foca-modal-precio-condiciones": "git+http://git.focasoftware.com/npm/foca-modal-precio-condiciones.git", "foca-modal-punto-descarga": "git+http://git.focasoftware.com/npm/foca-modal-punto-descarga.git", "foca-modal-remito": "git+http://git.focasoftware.com/npm/foca-modal-remito.git", + "foca-modal-resumen-cuenta": "git+http://git.focasoftware.com/npm/foca-modal-resumen-cuenta.git", "foca-modal-tarifa-flete": "git+http://git.focasoftware.com/npm/foca-modal-tarifa-flete.git", "foca-modal-unidad-medida": "git+http://git.focasoftware.com/npm/foca-modal-unidad-medida.git", "foca-nombre-empresa": "git+http://git.focasoftware.com/npm/foca-nombre-empresa.git", diff --git a/src/etc/develop.ejemplo.js b/src/etc/develop.ejemplo.js index fe06682..a4f1b14 100644 --- a/src/etc/develop.ejemplo.js +++ b/src/etc/develop.ejemplo.js @@ -1,3 +1,3 @@ angular.module('appWrapperDemo') -.constant('APP', '') -.constant('ENDPOINT_BASE', 'http://10.231.45.127:3000'); + .constant('APP', '') + .constant('ENDPOINT_BASE', 'http://10.231.45.127:3000'); diff --git a/src/js/app.js b/src/js/app.js index 6d526e9..6c3e141 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -7,6 +7,7 @@ angular.module('appWrapperDemo', [ 'ngStorage', 'ui.bootstrap', 'ui.swiper', + 'angular-md5', // MODULOS FOCA 'focaBotoneraFacturador', @@ -38,6 +39,7 @@ angular.module('appWrapperDemo', [ 'focaModalNotaPedido', 'focaModalPrecioCondicion', 'focaModalPuntoDescarga', + 'focaModalResumenCuenta', 'focaModalTarifaFlete', 'focaNombreEmpresa', 'focaSeguimiento', diff --git a/src/js/service.js b/src/js/service.js index 54332de..f775356 100644 --- a/src/js/service.js +++ b/src/js/service.js @@ -5,7 +5,7 @@ angular.module('appWrapperDemo') 'ENDPOINT_BASE', function($http, $localStorage, ENDPOINT_BASE) { return { - URL: $localStorage.urlEndPoint, + URL: 'http://localhost:9900', ENDPOINT_BASE: ENDPOINT_BASE, setUrl: function(url) { this.URL = url;