Compare View
Commits (70)
-
Master See merge request !57
-
Master See merge request !58
-
Master See merge request !59
-
Master See merge request !60
-
Master See merge request !61
-
Master See merge request !62
-
Master See merge request !63
-
Master(efernandez) See merge request !64
-
Master See merge request !65
-
Master(efernandez) See merge request !66
-
Master See merge request !68
-
Master See merge request !67
-
Master(efernandez) See merge request !69
-
Master See merge request !70
-
Master(efernandez) See merge request !71
-
Master(efernandez) See merge request !72
-
Master(efernandez) See merge request !73
-
Master(efernandez) See merge request !75
-
Master(efernandez) See merge request !76
-
Master(efernandez) See merge request !77
-
Master See merge request !74
-
Master See merge request !78
-
Master See merge request !79
-
Master See merge request !80
Showing
12 changed files
Show diff stats
gulpfile.js
1 | const gulp = require('gulp'); | 1 | const gulp = require('gulp'); |
2 | const sass = require('gulp-sass'); | 2 | const sass = require('gulp-sass'); |
3 | const concat = require('gulp-concat'); | 3 | const concat = require('gulp-concat'); |
4 | const rename = require('gulp-rename'); | 4 | const rename = require('gulp-rename'); |
5 | const uglify = require('gulp-uglify'); | 5 | const uglify = require('gulp-uglify'); |
6 | const pump = require('pump'); | 6 | const pump = require('pump'); |
7 | const jshint = require('gulp-jshint'); | 7 | const jshint = require('gulp-jshint'); |
8 | const replace = require('gulp-replace'); | 8 | const replace = require('gulp-replace'); |
9 | const connect = require('gulp-connect'); | 9 | const connect = require('gulp-connect'); |
10 | const watch = require('gulp-watch'); | 10 | const watch = require('gulp-watch'); |
11 | 11 | ||
12 | var paths = { | 12 | var paths = { |
13 | srcHTML : 'src/views/*.html', | 13 | srcHTML : 'src/views/*.html', |
14 | srcJS : 'src/js/*.js', | 14 | srcJS : 'src/js/*.js', |
15 | confJS : 'src/etc/develop.js', | 15 | confJS : 'src/etc/develop.js', |
16 | dist : 'dist/', | 16 | dist : 'dist/', |
17 | distHTML : 'dist/views/' | 17 | distHTML : 'dist/views/' |
18 | }; | 18 | }; |
19 | 19 | ||
20 | gulp.task('uglify', function() { | 20 | gulp.task('uglify', function() { |
21 | pump( | 21 | pump( |
22 | [ | 22 | [ |
23 | gulp.src([paths.srcJS, paths.confJS]), | 23 | gulp.src([paths.srcJS, paths.confJS]), |
24 | concat('wrapper-demo.js'), | 24 | concat('wrapper-demo.js'), |
25 | replace('/src/', '/dist/'), | 25 | replace('/src/', '/dist/'), |
26 | gulp.dest(paths.dist), | 26 | gulp.dest(paths.dist), |
27 | rename('wrapper-demo.min.js'), | 27 | rename('wrapper-demo.min.js'), |
28 | uglify(), | 28 | uglify(), |
29 | gulp.dest(paths.dist) | 29 | gulp.dest(paths.dist) |
30 | ] | 30 | ] |
31 | ); | 31 | ); |
32 | }); | 32 | }); |
33 | 33 | ||
34 | gulp.task('html', function() { | 34 | gulp.task('html', function() { |
35 | pump([ | 35 | pump([ |
36 | gulp.src('index.html'), | 36 | gulp.src('index.html'), |
37 | replace(/\<!\-\- BUILD \-\-\>.*\<!\-\- \/BUILD \-\-\>/sgm, '<script src="wrapper-demo.min.js"></script>'), | 37 | replace(/\<!\-\- BUILD \-\-\>.*\<!\-\- \/BUILD \-\-\>/sgm, '<script src="wrapper-demo.min.js"></script>'), |
38 | gulp.dest(paths.dist) | 38 | gulp.dest(paths.dist) |
39 | ]); | 39 | ]); |
40 | pump([ | 40 | pump([ |
41 | gulp.src(paths.srcHTML), | 41 | gulp.src(paths.srcHTML), |
42 | gulp.dest(paths.distHTML) | 42 | gulp.dest(paths.distHTML) |
43 | ]); | 43 | ]); |
44 | }); | 44 | }); |
45 | 45 | ||
46 | gulp.task('sass', function() { | 46 | gulp.task('sass', function() { |
47 | return gulp.src('src/sass/*.scss') | 47 | return gulp.src('src/sass/*.scss') |
48 | .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) | 48 | .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) |
49 | .pipe(gulp.dest('css')); | 49 | .pipe(gulp.dest('css')); |
50 | }); | 50 | }); |
51 | 51 | ||
52 | gulp.task('pre-install', function() { | 52 | gulp.task('pre-install', function() { |
53 | pump([ | 53 | pump([ |
54 | gulp.src('package.json'), | 54 | gulp.src('package.json'), |
55 | replace('ssh://git@debonline.dyndns.org:', 'http://git.focasoftware.com/'), | 55 | replace('ssh://git@debonline.dyndns.org:', 'http://git.focasoftware.com/'), |
56 | gulp.dest('') | 56 | gulp.dest('') |
57 | ]); | 57 | ]); |
58 | }); | 58 | }); |
59 | 59 | ||
60 | gulp.task('post-install', function() { | 60 | gulp.task('post-install', function() { |
61 | pump([ | 61 | pump([ |
62 | gulp.src('package.json'), | 62 | gulp.src('package.json'), |
63 | replace('http://git.focasoftware.com/', 'ssh://git@debonline.dyndns.org:'), | 63 | replace('http://git.focasoftware.com/', 'ssh://git@debonline.dyndns.org:'), |
64 | gulp.dest('') | 64 | gulp.dest('') |
65 | ]); | 65 | ]); |
66 | }); | 66 | }); |
67 | 67 | ||
68 | gulp.task('pre-commit', function() { | 68 | gulp.task('pre-commit', function() { |
69 | return pump( | 69 | return pump( |
70 | [ | 70 | [ |
71 | gulp.src(paths.srcJS), | 71 | gulp.src(paths.srcJS), |
72 | jshint('.jshintrc'), | 72 | jshint('.jshintrc'), |
73 | jshint.reporter('default'), | 73 | jshint.reporter('default'), |
74 | jshint.reporter('fail') | 74 | jshint.reporter('fail') |
75 | ] | 75 | ] |
76 | ); | 76 | ); |
77 | gulp.start('uglify'); | 77 | gulp.start('uglify'); |
78 | gulp.start('sass'); | 78 | gulp.start('sass'); |
79 | }); | 79 | }); |
80 | 80 | ||
81 | gulp.task('webserver', function() { | 81 | gulp.task('webserver', function() { |
82 | pump [ | 82 | pump [ |
83 | connect.server( | 83 | connect.server( |
84 | { | 84 | { |
85 | port: 8086, | 85 | port: 8086, |
86 | host: '0.0.0.0', | 86 | host: '0.0.0.0', |
87 | livereload: true | 87 | livereload: true |
88 | } | 88 | } |
89 | ) | 89 | ) |
90 | ] | 90 | ] |
91 | }); | 91 | }); |
92 | 92 | ||
93 | gulp.task('watch', function() { | 93 | gulp.task('watch', function() { |
94 | gulp.watch([paths.srcJS], ['uglify']); | 94 | gulp.watch([paths.srcJS], ['uglify']); |
95 | gulp.watch('src/sass/*.scss', ['sass']); | 95 | gulp.watch('src/sass/*.scss', ['sass']); |
96 | }); | 96 | }); |
97 | 97 | ||
98 | gulp.task('reload', function() { | 98 | gulp.task('reload', function() { |
99 | gulp.src(['src/sass/*.scss', 'index.html']) | 99 | gulp.src(['src/sass/*.scss', 'index.html']) |
100 | .pipe(connect.reload()); | 100 | .pipe(connect.reload()); |
101 | }); | ||
101 | }); | 102 | |
102 | 103 | gulp.task('livereload', function() { | |
103 | gulp.task('livereload', function() { | 104 | gulp.watch('css/*.css', ['reload']); |
104 | gulp.watch('css/*.css', ['reload']); | 105 | gulp.watch('js/dist/*.js', ['reload']); |
105 | gulp.watch('js/dist/*.js', ['reload']); | 106 | gulp.watch('vistas/**/*.html', ['reload']); |
106 | gulp.watch('vistas/**/*.html', ['reload']); | 107 | gulp.watch('index.html', ['reload']); |
107 | gulp.watch('index.html', ['reload']); | 108 | }); |
108 | }); | 109 | |
109 | 110 | gulp.task('default', ['sass', 'webserver', 'livereload', 'watch']); | |
110 | gulp.task('default', ['sass', 'webserver', 'livereload', 'watch']); | 111 |
img/marker-icon-2x-yellow.png
4.06 KB
index.html
1 | <html ng-app="appWrapperDemo"> | 1 | <html ng-app="appWrapperDemo"> |
2 | <head> | 2 | <head> |
3 | <meta charset="UTF-8"/> | 3 | <meta charset="UTF-8"/> |
4 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | 4 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
5 | <base href="./"> | 5 | <base href="./"> |
6 | 6 | ||
7 | <!--CSS--> | 7 | <!--CSS--> |
8 | <link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> | 8 | <link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> |
9 | <link href="./node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet"/> | 9 | <link href="./node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet"/> |
10 | <link href="./node_modules/angular-ui-swiper/dist/angular-ui-swiper.css" rel="stylesheet"/> | 10 | <link href="./node_modules/angular-ui-swiper/dist/angular-ui-swiper.css" rel="stylesheet"/> |
11 | <link href="./node_modules/angular-ui-grid/ui-grid.min.css" rel="stylesheet"/> | ||
11 | <link href="./node_modules/angular-ui-grid/ui-grid.min.css" rel="stylesheet"/> | 12 | <link href="./node_modules/ladda/dist/ladda-themeless.min.css" rel="stylesheet"/> |
12 | <link href="./node_modules/ladda/dist/ladda-themeless.min.css" rel="stylesheet"/> | 13 | <link href="./node_modules/leaflet/dist/leaflet.css" rel="stylesheet"/> |
13 | <link href="./node_modules/leaflet/dist/leaflet.css" rel="stylesheet"/> | 14 | <link href="./css/general.css" rel="stylesheet"/> |
14 | <link href="./css/general.css" rel="stylesheet"/> | 15 | |
15 | 16 | <!--VENDOR JS--> | |
16 | <!--VENDOR JS--> | 17 | <script src="./node_modules/jquery/dist/jquery.min.js"></script> |
17 | <script src="./node_modules/jquery/dist/jquery.min.js"></script> | 18 | <script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script> |
18 | <script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script> | 19 | <script src="./node_modules/angular/angular.min.js"></script> |
19 | <script src="./node_modules/angular/angular.min.js"></script> | 20 | <script src="./node_modules/angular-cookies/angular-cookies.min.js"></script> |
20 | <script src="./node_modules/angular-cookies/angular-cookies.min.js"></script> | 21 | <script src="./node_modules/angular-i18n/angular-locale_es-ar.js"></script> |
21 | <script src="./node_modules/angular-i18n/angular-locale_es-ar.js"></script> | 22 | <script src="./node_modules/angular-route/angular-route.min.js"></script> |
22 | <script src="./node_modules/angular-route/angular-route.min.js"></script> | 23 | <script src="./node_modules/angular-sanitize/angular-sanitize.min.js"></script> |
23 | <script src="./node_modules/angular-sanitize/angular-sanitize.min.js"></script> | 24 | <script src="./node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> |
24 | <script src="./node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> | 25 | <script src="./node_modules/angular-ui-swiper/dist/angular-ui-swiper.js"></script> |
26 | <script src="./node_modules/pdfmake/build/pdfmake.min.js"></script> | ||
27 | <script src="./node_modules/pdfmake/build/vfs_fonts.js"></script> | ||
28 | <script src="./node_modules/lodash/lodash.min.js"></script> | ||
29 | <script src="./node_modules/jszip/dist/jszip.min.js"></script> | ||
30 | <script src="./node_modules/excel-builder/dist/excel-builder.dist.min.js"></script> | ||
31 | <script src="./node_modules/angular-ui-grid/ui-grid.min.js"></script> | ||
25 | <script src="./node_modules/angular-ui-swiper/dist/angular-ui-swiper.js"></script> | 32 | <script src="./node_modules/ladda/dist/spin.min.js"></script> |
26 | <script src="./node_modules/pdfmake/build/pdfmake.min.js"></script> | 33 | <script src="./node_modules/ladda/dist/ladda.min.js"></script> |
27 | <script src="./node_modules/pdfmake/build/vfs_fonts.js"></script> | 34 | <script src="./node_modules/angular-ladda/dist/angular-ladda.min.js"></script> |
28 | <script src="./node_modules/lodash/lodash.min.js"></script> | 35 | <script src="./node_modules/leaflet/dist/leaflet.js"></script> |
29 | <script src="./node_modules/jszip/dist/jszip.min.js"></script> | 36 | <script src="./node_modules/ngstorage/ngStorage.min.js"></script> |
30 | <script src="./node_modules/excel-builder/dist/excel-builder.dist.min.js"></script> | 37 | <script src="./vendor/cordovaGeolocationModule.min.js"></script> |
31 | <script src="./node_modules/angular-ui-grid/ui-grid.min.js"></script> | 38 | <script src="./node_modules/chart.js/dist/Chart.min.js"></script> |
32 | <script src="./node_modules/ladda/dist/spin.min.js"></script> | 39 | <script src="./node_modules/angular-chart.js/dist/angular-chart.min.js"></script> |
40 | <script src="./node_modules/angular-file-saver/dist/angular-file-saver.bundle.js"></script> | ||
33 | <script src="./node_modules/ladda/dist/ladda.min.js"></script> | 41 | |
34 | <script src="./node_modules/angular-ladda/dist/angular-ladda.min.js"></script> | 42 | <script src="./node_modules/foca-abm-chofer/dist/foca-abm-chofer.min.js"></script> |
35 | <script src="./node_modules/leaflet/dist/leaflet.js"></script> | ||
36 | <script src="./node_modules/ngstorage/ngStorage.min.js"></script> | 43 | <script src="./node_modules/foca-abm-precios-condiciones/dist/foca-abm-precios-condiciones.min.js"></script> |
37 | <script src="./vendor/cordovaGeolocationModule.min.js"></script> | ||
38 | <script src="./node_modules/chart.js/dist/Chart.min.js"></script> | 44 | <script src="./node_modules/foca-abm-vehiculo/dist/foca-abm-vehiculo.min.js"></script> |
39 | <script src="./node_modules/angular-chart.js/dist/angular-chart.min.js"></script> | 45 | <script src="./node_modules/foca-abm-vendedor-cobrador/dist/foca-abm-vendedor-cobrador.min.js"></script> |
40 | 46 | <script src="./node_modules/foca-activar-hoja-ruta/dist/foca-activar-hoja-ruta.min.js"></script> | |
41 | <script src="./node_modules/foca-abm-chofer/dist/foca-abm-chofer.min.js"></script> | 47 | <script src="./node_modules/foca-admin-seguimiento/dist/foca-admin-seguimiento.min.js"></script> |
42 | <script src="./node_modules/foca-abm-precios-condiciones/dist/foca-abm-precios-condiciones.min.js"></script> | 48 | <script src="./node_modules/foca-botonera-facturador/dist/foca-botonera-facturador.min.js"></script> |
43 | <script src="./node_modules/foca-abm-vehiculo/dist/foca-abm-vehiculo.min.js"></script> | 49 | <script src="./node_modules/foca-botonera-lateral/dist/foca-botonera-lateral.min.js"></script> |
44 | <script src="./node_modules/foca-abm-vendedor-cobrador/dist/foca-abm-vendedor-cobrador.min.js"></script> | 50 | <script src="./node_modules/foca-botonera-principal/dist/foca-botonera-principal.min.js"></script> |
45 | <script src="./node_modules/foca-activar-hoja-ruta/dist/foca-activar-hoja-ruta.min.js"></script> | 51 | <script src="./node_modules/foca-busqueda-cliente/dist/foca-busqueda-cliente.min.js"></script> |
46 | <script src="./node_modules/foca-admin-seguimiento/dist/foca-admin-seguimiento.min.js"></script> | 52 | <script src="./node_modules/foca-cabecera-facturador/dist/foca-cabecera-facturador.min.js"></script> |
47 | <script src="./node_modules/foca-botonera-facturador/dist/foca-botonera-facturador.min.js"></script> | 53 | <script src="./node_modules/foca-configuracion/dist/foca-configuracion.min.js"></script> |
54 | <script src="./node_modules/foca-configurar-terminal/dist/foca-configurar-terminal.min.js"></script> | ||
48 | <script src="./node_modules/foca-botonera-lateral/dist/foca-botonera-lateral.min.js"></script> | 55 | <script src="./node_modules/foca-crear-cobranza/dist/foca-crear-cobranza.min.js"></script> |
49 | <script src="./node_modules/foca-botonera-principal/dist/foca-botonera-principal.min.js"></script> | 56 | <script src="./node_modules/foca-crear-hoja-ruta/dist/foca-crear-hoja-ruta.min.js"></script> |
50 | <script src="./node_modules/foca-busqueda-cliente/dist/foca-busqueda-cliente.min.js"></script> | 57 | <script src="./node_modules/foca-crear-nota-pedido/dist/foca-crear-nota-pedido.min.js"></script> |
51 | <script src="./node_modules/foca-cabecera-facturador/dist/foca-cabecera-facturador.min.js"></script> | 58 | <script src="./node_modules/foca-crear-login/dist/foca-crear-login.min.js"></script> |
52 | <script src="./node_modules/foca-configuracion/dist/foca-configuracion.min.js"></script> | 59 | <script src="./node_modules/foca-crear-remito/dist/foca-crear-remito.min.js"></script> |
53 | <script src="./node_modules/foca-configurar-terminal/dist/foca-configurar-terminal.min.js"></script> | 60 | <script src="./node_modules/foca-directivas/dist/foca-directivas.min.js"></script> |
54 | <script src="./node_modules/foca-crear-cobranza/dist/foca-crear-cobranza.min.js"></script> | 61 | <script src="./node_modules/foca-estado-cisternas/dist/foca-estado-cisternas.min.js"></script> |
55 | <script src="./node_modules/foca-crear-hoja-ruta/dist/foca-crear-hoja-ruta.min.js"></script> | 62 | <script src="./node_modules/foca-filtros/dist/foca-filtros.min.js"></script> |
56 | <script src="./node_modules/foca-crear-nota-pedido/dist/foca-crear-nota-pedido.min.js"></script> | 63 | <script src="./node_modules/foca-hoja-ruta/dist/foca-hoja-ruta.min.js"></script> |
64 | <script src="./node_modules/foca-informes/dist/foca-informes.min.js"></script> | ||
57 | <script src="./node_modules/foca-crear-login/dist/foca-crear-login.min.js"></script> | 65 | <script src="./node_modules/foca-login/dist/foca-login.min.js"></script> |
58 | <script src="./node_modules/foca-crear-remito/dist/foca-crear-remito.min.js"></script> | 66 | <script src="./node_modules/foca-logistica-pedido-ruta/dist/foca-logistica-pedido-ruta.min.js"></script> |
59 | <script src="./node_modules/foca-directivas/dist/foca-directivas.min.js"></script> | 67 | <script src="./node_modules/foca-modal/dist/foca-modal.min.js"></script> |
60 | <script src="./node_modules/foca-estado-cisternas/dist/foca-estado-cisternas.min.js"></script> | ||
61 | <script src="./node_modules/foca-filtros/dist/foca-filtros.min.js"></script> | 68 | <script src="./node_modules/foca-modal-busqueda-productos/dist/foca-busqueda-productos.min.js"></script> |
62 | <script src="./node_modules/foca-hoja-ruta/dist/foca-hoja-ruta.min.js"></script> | 69 | <script src="./node_modules/foca-modal-cheque/dist/foca-modal-cheque.min.js"></script> |
63 | <script src="./node_modules/foca-informes/dist/foca-informes.min.js"></script> | ||
64 | <script src="./node_modules/foca-login/dist/foca-login.min.js"></script> | ||
65 | <script src="./node_modules/foca-logistica-pedido-ruta/dist/foca-logistica-pedido-ruta.min.js"></script> | 70 | <script src="./node_modules/foca-modal-cobranza/dist/foca-modal-cobranza.min.js"></script> |
66 | <script src="./node_modules/foca-modal/dist/foca-modal.min.js"></script> | 71 | <script src="./node_modules/foca-modal-cotizacion/dist/foca-modal-cotizacion.min.js"></script> |
67 | <script src="./node_modules/foca-modal-busqueda-productos/dist/foca-busqueda-productos.min.js"></script> | 72 | <script src="./node_modules/foca-modal-detalle-cisternas/dist/foca-modal-detalle-cisternas.min.js"></script> |
68 | <script src="./node_modules/foca-modal-cheque/dist/foca-modal-cheque.min.js"></script> | 73 | <script src="./node_modules/foca-modal-detalle-hoja-ruta/dist/foca-modal-detalle-hoja-ruta.min.js"></script> |
74 | <script src="./node_modules/foca-modal-detalles/dist/foca-modal-detalles.min.js"></script> | ||
69 | <script src="./node_modules/foca-modal-cobranza/dist/foca-modal-cobranza.min.js"></script> | 75 | <script src="./node_modules/foca-modal-domicilio/dist/foca-modal-domicilios.min.js"></script> |
70 | <script src="./node_modules/foca-modal-cotizacion/dist/foca-modal-cotizacion.min.js"></script> | 76 | <script src="./node_modules/foca-modal-efectivo/dist/foca-modal-efectivo.min.js"></script> |
71 | <script src="./node_modules/foca-modal-detalle-cisternas/dist/foca-modal-detalle-cisternas.min.js"></script> | 77 | <script src="./node_modules/foca-modal-factura/dist/foca-modal-factura.min.js"></script> |
72 | <script src="./node_modules/foca-modal-detalle-hoja-ruta/dist/foca-modal-detalle-hoja-ruta.min.js"></script> | 78 | <script src="./node_modules/foca-modal-factura-detalle/dist/foca-modal-factura-detalle.min.js"></script> |
73 | <script src="./node_modules/foca-modal-detalles/dist/foca-modal-detalles.min.js"></script> | 79 | <script src="./node_modules/foca-modal-flete/dist/foca-modal-flete.min.js"></script> |
74 | <script src="./node_modules/foca-modal-domicilio/dist/foca-modal-domicilios.min.js"></script> | 80 | <script src="./node_modules/foca-modal-grafico-cisternas/dist/foca-modal-grafico-cisternas.min.js"></script> |
81 | <script src="./node_modules/foca-modal-informe/dist/foca-modal-informe.min.js"></script> | ||
75 | <script src="./node_modules/foca-modal-efectivo/dist/foca-modal-efectivo.min.js"></script> | 82 | <script src="./node_modules/foca-modal-lista-precio/dist/foca-modal-lista-precio.min.js"></script> |
76 | <script src="./node_modules/foca-modal-factura/dist/foca-modal-factura.min.js"></script> | ||
77 | <script src="./node_modules/foca-modal-factura-detalle/dist/foca-modal-factura-detalle.min.js"></script> | 83 | <script src="./node_modules/foca-modal-localizar/dist/foca-modal-localizar.min.js"></script> |
78 | <script src="./node_modules/foca-modal-flete/dist/foca-modal-flete.min.js"></script> | 84 | <script src="./node_modules/foca-modal-login/dist/foca-modal-login.min.js"></script> |
79 | <script src="./node_modules/foca-modal-grafico-cisternas/dist/foca-modal-grafico-cisternas.min.js"></script> | ||
80 | <script src="./node_modules/foca-modal-informe/dist/foca-modal-informe.min.js"></script> | 85 | <script src="./node_modules/foca-modal-nota-pedido/dist/foca-modal-nota-pedido.min.js"></script> |
81 | <script src="./node_modules/foca-modal-lista-precio/dist/foca-modal-lista-precio.min.js"></script> | 86 | <script src="./node_modules/foca-modal-precio-condiciones/dist/foca-modal-precio-condiciones.min.js"></script> |
82 | <script src="./node_modules/foca-modal-localizar/dist/foca-modal-localizar.min.js"></script> | ||
83 | <script src="./node_modules/foca-modal-login/dist/foca-modal-login.min.js"></script> | ||
84 | <script src="./node_modules/foca-modal-nota-pedido/dist/foca-modal-nota-pedido.min.js"></script> | 87 | <script src="./node_modules/foca-modal-punto-descarga/dist/foca-modal-punto-descarga.min.js"></script> |
85 | <script src="./node_modules/foca-modal-precio-condiciones/dist/foca-modal-precio-condiciones.min.js"></script> | 88 | <script src="./node_modules/foca-modal-remito/dist/foca-modal-remito.min.js"></script> |
86 | <script src="./node_modules/foca-modal-punto-descarga/dist/foca-modal-punto-descarga.min.js"></script> | 89 | <script src="./node_modules/foca-modal-tarifa-flete/dist/foca-modal-tarifa-flete.min.js"></script> |
87 | <script src="./node_modules/foca-modal-remito/dist/foca-modal-remito.min.js"></script> | ||
88 | <script src="./node_modules/foca-modal-tarifa-flete/dist/foca-modal-tarifa-flete.min.js"></script> | 90 | <script src="./node_modules/foca-modal-unidad-medida/dist/foca-modal-unidad-medida.min.js"></script> |
89 | <script src="./node_modules/foca-modal-unidad-medida/dist/foca-modal-unidad-medida.min.js"></script> | ||
90 | <script src="./node_modules/foca-nombre-empresa/dist/foca-nombre-empresa.min.js"></script> | 91 | <script src="./node_modules/foca-nombre-empresa/dist/foca-nombre-empresa.min.js"></script> |
91 | <script src="./node_modules/foca-seguimiento/dist/foca-seguimiento.min.js"></script> | 92 | <script src="./node_modules/foca-seguimiento/dist/foca-seguimiento.min.js"></script> |
92 | <script src="./node_modules/foca-teclado/dist/foca-teclado.min.js"></script> | 93 | <script src="./node_modules/foca-teclado/dist/foca-teclado.min.js"></script> |
93 | <script src="./src/js/app.js"></script> | 94 | <script src="./src/js/app.js"></script> |
94 | <script src="./src/js/controller.js"></script> | 95 | <script src="./src/js/controller.js"></script> |
95 | <script src="./src/etc/develop.js"></script> | 96 | <script src="./src/etc/develop.js"></script> |
96 | </head> | 97 | </head> |
97 | <body> | 98 | <body> |
98 | <style> | 99 | <style> |
99 | </style> | 100 | </style> |
100 | <foca-nombre-empresa></foca-nombre-empresa> | 101 | <foca-nombre-empresa></foca-nombre-empresa> |
101 | <div ng-view class="container contenedor"></div> | 102 | <div ng-view class="container contenedor"></div> |
102 | <div ng-controller="appWrapperDemoController" class="teclado-container container d-none d-md-block "> | 103 | <div ng-controller="appWrapperDemoController" class="teclado-container container d-none d-md-block "> |
103 | <foca-botonera-lateral></foca-botonera-lateral> | 104 | <foca-botonera-lateral></foca-botonera-lateral> |
package.json
1 | { | 1 | { |
2 | "name": "wrapper-demo", | 2 | "name": "wrapper-demo", |
3 | "version": "0.0.1", | 3 | "version": "0.0.1", |
4 | "description": "", | 4 | "description": "", |
5 | "main": "main.js", | 5 | "main": "main.js", |
6 | "scripts": { | 6 | "scripts": { |
7 | "test": "unit-test.html", | ||
7 | "test": "unit-test.html", | 8 | "initdev": "npm install gulp --global && npm install && npm install -g jshint", |
8 | "initdev": "npm install gulp --global && npm install && npm install -g jshint", | 9 | "gulp-pre-commit": "gulp pre-commit", |
9 | "gulp-pre-commit": "gulp pre-commit", | 10 | "compile": "gulp uglify && gulp sass", |
10 | "compile": "gulp uglify && gulp sass", | 11 | "actualizar": "git pull origin master", |
11 | "actualizar": "git pull origin master", | 12 | "install-dev": "gulp pre-install && npm install && gulp post-install" |
12 | "install-dev": "gulp pre-install && npm install && gulp post-install" | 13 | }, |
13 | }, | 14 | "pre-commit": [ |
14 | "pre-commit": [ | 15 | "gulp-pre-commit" |
15 | "gulp-pre-commit" | 16 | ], |
16 | ], | 17 | "repository": { |
17 | "repository": { | 18 | "type": "git", |
18 | "type": "git", | 19 | "url": "git@debonline.dyndns.org:npm/wrapper-demo.git" |
19 | "url": "git@debonline.dyndns.org:npm/wrapper-demo.git" | 20 | }, |
20 | }, | 21 | "author": "Foca Software", |
21 | "author": "Foca Software", | 22 | "license": "ISC", |
22 | "license": "ISC", | 23 | "dependencies": { |
23 | "dependencies": { | 24 | "angular": "^1.7.7", |
24 | "angular": "^1.7.7", | 25 | "angular-chart.js": "1.1.1", |
25 | "angular-chart.js": "1.1.1", | 26 | "angular-cookies": "^1.7.7", |
26 | "angular-cookies": "^1.7.7", | 27 | "angular-file-saver": "^1.1.3", |
28 | "angular-i18n": "^1.7.7", | ||
27 | "angular-i18n": "^1.7.7", | 29 | "angular-ladda": "^0.4.3", |
28 | "angular-ladda": "^0.4.3", | 30 | "angular-mocks": "^1.7.7", |
29 | "angular-mocks": "^1.7.7", | 31 | "angular-route": "^1.7.7", |
32 | "angular-sanitize": "^1.7.7", | ||
33 | "angular-ui-grid": "4.6.6", | ||
30 | "angular-route": "^1.7.7", | 34 | "angular-ui-swiper": "^2.3.8", |
31 | "angular-sanitize": "^1.7.7", | 35 | "bootstrap": "^4.2.1", |
32 | "angular-ui-grid": "4.6.6", | 36 | "chart.js": "2.7.3", |
37 | "excel-builder": "2.0.3", | ||
33 | "angular-ui-swiper": "^2.3.8", | 38 | "foca-abm-chofer": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-chofer.git", |
34 | "bootstrap": "^4.2.1", | 39 | "foca-abm-plazo-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-plazo-pago.git", |
35 | "chart.js": "2.7.3", | 40 | "foca-abm-precios-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-precios-condiciones.git", |
36 | "excel-builder": "2.0.3", | ||
37 | "foca-abm-chofer": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-chofer.git", | 41 | "foca-abm-vehiculo": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vehiculo.git", |
38 | "foca-abm-plazo-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-plazo-pago.git", | 42 | "foca-abm-vendedor-cobrador": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vendedor-cobrador.git", |
39 | "foca-abm-precios-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-precios-condiciones.git", | 43 | "foca-activar-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-activar-hoja-ruta.git", |
40 | "foca-abm-vehiculo": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vehiculo.git", | 44 | "foca-admin-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-admin-seguimiento.git", |
41 | "foca-abm-vendedor-cobrador": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vendedor-cobrador.git", | 45 | "foca-botonera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git", |
42 | "foca-activar-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-activar-hoja-ruta.git", | 46 | "foca-botonera-lateral": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-lateral.git", |
43 | "foca-admin-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-admin-seguimiento.git", | 47 | "foca-botonera-principal": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-principal.git", |
44 | "foca-botonera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git", | 48 | "foca-busqueda-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-busqueda-cliente.git", |
45 | "foca-botonera-lateral": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-lateral.git", | 49 | "foca-cabecera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-cabecera-facturador.git", |
46 | "foca-botonera-principal": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-principal.git", | 50 | "foca-configuracion": "git+ssh://git@debonline.dyndns.org:npm/foca-configuracion.git", |
51 | "foca-configurar-terminal": "git+ssh://git@debonline.dyndns.org:npm/foca-configurar-terminal.git", | ||
47 | "foca-busqueda-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-busqueda-cliente.git", | 52 | "foca-crear-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-cobranza.git", |
48 | "foca-cabecera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-cabecera-facturador.git", | 53 | "foca-crear-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-hoja-ruta.git", |
49 | "foca-configuracion": "git+ssh://git@debonline.dyndns.org:npm/foca-configuracion.git", | 54 | "foca-crear-login": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-login.git", |
50 | "foca-configurar-terminal": "git+ssh://git@debonline.dyndns.org:npm/foca-configurar-terminal.git", | 55 | "foca-crear-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-nota-pedido.git", |
51 | "foca-crear-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-cobranza.git", | 56 | "foca-crear-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-remito.git", |
52 | "foca-crear-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-hoja-ruta.git", | 57 | "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git", |
53 | "foca-crear-login": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-login.git", | 58 | "foca-estado-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-estado-cisternas.git", |
54 | "foca-crear-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-nota-pedido.git", | 59 | "foca-filtros": "git+ssh://git@debonline.dyndns.org:npm/foca-filtros.git", |
55 | "foca-crear-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-remito.git", | 60 | "foca-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-hoja-ruta.git", |
61 | "foca-informes": "git+ssh://git@debonline.dyndns.org:npm/foca-informes.git", | ||
56 | "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git", | 62 | "foca-login": "git+ssh://git@debonline.dyndns.org:npm/foca-login.git", |
57 | "foca-estado-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-estado-cisternas.git", | 63 | "foca-logistica-pedido-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-logistica-pedido-ruta.git", |
58 | "foca-filtros": "git+ssh://git@debonline.dyndns.org:npm/foca-filtros.git", | 64 | "foca-modal": "git+ssh://git@debonline.dyndns.org:npm/foca-modal.git", |
59 | "foca-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-hoja-ruta.git", | ||
60 | "foca-informes": "git+ssh://git@debonline.dyndns.org:npm/foca-informes.git", | 65 | "foca-modal-busqueda-productos": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-busqueda-productos.git", |
61 | "foca-login": "git+ssh://git@debonline.dyndns.org:npm/foca-login.git", | 66 | "foca-modal-cheque": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cheque.git", |
62 | "foca-logistica-pedido-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-logistica-pedido-ruta.git", | ||
63 | "foca-modal": "git+ssh://git@debonline.dyndns.org:npm/foca-modal.git", | ||
64 | "foca-modal-busqueda-productos": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-busqueda-productos.git", | 67 | "foca-modal-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cobranza.git", |
65 | "foca-modal-cheque": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cheque.git", | 68 | "foca-modal-cotizacion": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cotizacion.git", |
66 | "foca-modal-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cobranza.git", | 69 | "foca-modal-detalle-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-cisternas.git", |
67 | "foca-modal-cotizacion": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cotizacion.git", | 70 | "foca-modal-detalle-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-hoja-ruta.git", |
71 | "foca-modal-detalles": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalles.git", | ||
68 | "foca-modal-detalle-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-cisternas.git", | 72 | "foca-modal-domicilio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-domicilio.git", |
69 | "foca-modal-detalle-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-hoja-ruta.git", | 73 | "foca-modal-efectivo": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-efectivo.git", |
70 | "foca-modal-detalles": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalles.git", | 74 | "foca-modal-factura": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura.git", |
71 | "foca-modal-domicilio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-domicilio.git", | 75 | "foca-modal-factura-detalle": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura-detalle.git", |
72 | "foca-modal-efectivo": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-efectivo.git", | 76 | "foca-modal-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-flete.git", |
73 | "foca-modal-factura": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura.git", | 77 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git", |
78 | "foca-modal-informe": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe.git", | ||
74 | "foca-modal-factura-detalle": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura-detalle.git", | 79 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git", |
75 | "foca-modal-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-flete.git", | ||
76 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git", | 80 | "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git", |
77 | "foca-modal-informe": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe.git", | 81 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git", |
78 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git", | ||
79 | "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git", | 82 | "foca-modal-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-nota-pedido.git", |
80 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git", | 83 | "foca-modal-precio-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-precio-condiciones.git", |
81 | "foca-modal-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-nota-pedido.git", | ||
82 | "foca-modal-precio-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-precio-condiciones.git", | ||
83 | "foca-modal-punto-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-punto-descarga.git", | 84 | "foca-modal-punto-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-punto-descarga.git", |
84 | "foca-modal-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-remito.git", | 85 | "foca-modal-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-remito.git", |
85 | "foca-modal-tarifa-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-tarifa-flete.git", | 86 | "foca-modal-tarifa-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-tarifa-flete.git", |
86 | "foca-modal-unidad-medida": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-unidad-medida.git", | ||
87 | "foca-nombre-empresa": "git+ssh://git@debonline.dyndns.org:npm/foca-nombre-empresa.git", | 87 | "foca-modal-unidad-medida": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-unidad-medida.git", |
88 | "foca-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-seguimiento.git", | ||
89 | "foca-teclado": "git+ssh://git@debonline.dyndns.org:npm/foca-teclado.git", | ||
90 | "font-awesome": "^4.7.0", | 88 | "foca-nombre-empresa": "git+ssh://git@debonline.dyndns.org:npm/foca-nombre-empresa.git", |
91 | "gulp-angular-templatecache": "^2.2.6", | 89 | "foca-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-seguimiento.git", |
92 | "gulp-htmlmin": "^5.0.1", | 90 | "foca-teclado": "git+ssh://git@debonline.dyndns.org:npm/foca-teclado.git", |
93 | "gulp-uglify": "^3.0.1", | 91 | "font-awesome": "^4.7.0", |
94 | "gulp-uglify-es": "^1.0.4", | 92 | "gulp-angular-templatecache": "^2.2.6", |
95 | "jquery": "^3.3.1", | 93 | "gulp-htmlmin": "^5.0.1", |
96 | "jszip": "2.6.1", | 94 | "gulp-uglify": "^3.0.1", |
97 | "ladda": "1.0.6", | 95 | "gulp-uglify-es": "^1.0.4", |
98 | "leaflet": "1.3.4", | 96 | "jquery": "^3.3.1", |
97 | "jszip": "2.6.1", | ||
99 | "lodash": "4.17.11", | 98 | "ladda": "1.0.6", |
100 | "moment": "2.23.0", | 99 | "leaflet": "1.3.4", |
100 | "lodash": "4.17.11", | ||
101 | "ngstorage": "^0.3.11", | 101 | "moment": "2.23.0", |
102 | "node-sass": "^4.11.0", | 102 | "ngstorage": "^0.3.11", |
103 | "pdfmake": "0.1.41", | 103 | "node-sass": "^4.11.0", |
104 | "pdfmake": "0.1.41", | ||
104 | "uglify": "^0.1.5", | 105 | "uglify": "^0.1.5", |
105 | "ui-bootstrap4": "^3.0.6" | 106 | "ui-bootstrap4": "^3.0.6" |
106 | }, | 107 | }, |
107 | "devDependencies": { | 108 | "devDependencies": { |
108 | "gulp": "3.9.1", | ||
109 | "gulp-clean": "^0.4.0", | 109 | "gulp": "3.9.1", |
110 | "gulp-concat": "^2.6.1", | 110 | "gulp-clean": "^0.4.0", |
111 | "gulp-connect": "^5.7.0", | 111 | "gulp-concat": "^2.6.1", |
112 | "gulp-jshint": "^2.1.0", | 112 | "gulp-connect": "^5.7.0", |
113 | "gulp-rename": "^1.4.0", | 113 | "gulp-jshint": "^2.1.0", |
src/js/app.js
1 | angular.module('appWrapperDemo', [ | 1 | angular.module('appWrapperDemo', [ |
2 | //EXTERNOS | 2 | //EXTERNOS |
3 | 'angular-ladda', | 3 | 'angular-ladda', |
4 | 'cordovaGeolocationModule', | 4 | 'cordovaGeolocationModule', |
5 | 'ngCookies', | 5 | 'ngCookies', |
6 | 'ngRoute', | 6 | 'ngRoute', |
7 | 'ngSanitize', | 7 | 'ngSanitize', |
8 | 'ngStorage', | 8 | 'ngStorage', |
9 | 'onScreenKeyboard', | 9 | 'onScreenKeyboard', |
10 | 'ui.bootstrap', | 10 | 'ui.bootstrap', |
11 | 'ui.swiper', | 11 | 'ui.swiper', |
12 | 'ui.grid', | ||
13 | 'ui.grid.exporter', | ||
14 | 'ngFileSaver', | ||
12 | 'ui.grid', | 15 | |
13 | 'ui.grid.exporter', | 16 | // MODULOS FOCA |
14 | |||
15 | // MODULOS FOCA | 17 | 'focaAbmPreciosCondiciones', |
16 | 'focaAbmPreciosCondiciones', | ||
17 | 'focaAbmVehiculo', | 18 | 'focaAbmVehiculo', |
18 | 'focaAbmChofer', | 19 | 'focaAbmChofer', |
19 | 'focaAbmVendedorCobrador', | 20 | 'focaAbmVendedorCobrador', |
20 | 'focaActivarHojaRuta', | 21 | 'focaActivarHojaRuta', |
21 | 'focaAdminSeguimiento', | 22 | 'focaAdminSeguimiento', |
22 | 'focaBotoneraFacturador', | 23 | 'focaBotoneraFacturador', |
23 | 'focaBotoneraLateral', | 24 | 'focaBotoneraLateral', |
24 | 'focaBotoneraPrincipal', | 25 | 'focaBotoneraPrincipal', |
25 | 'focaBusquedaCliente', | 26 | 'focaBusquedaCliente', |
26 | 'focaBusquedaProductos', | 27 | 'focaBusquedaProductos', |
27 | 'focaCabeceraFacturador', | 28 | 'focaCabeceraFacturador', |
28 | 'focaConfiguracion', | 29 | 'focaConfiguracion', |
30 | 'focaConfigurarTerminal', | ||
29 | 'focaConfigurarTerminal', | 31 | 'focaCrearCobranza', |
30 | 'focaCrearCobranza', | 32 | 'focaCrearHojaRuta', |
31 | 'focaCrearHojaRuta', | 33 | 'focaCrearLogin', |
32 | 'focaCrearLogin', | 34 | 'focaCrearNotaPedido', |
33 | 'focaCrearNotaPedido', | 35 | 'focaCrearRemito', |
34 | 'focaCrearRemito', | 36 | 'focaDirectivas', |
35 | 'focaDirectivas', | 37 | 'focaEstadoCisternas', |
36 | 'focaEstadoCisternas', | 38 | 'focaFiltros', |
37 | 'focaFiltros', | 39 | 'focaHojaRuta', |
40 | 'focaInformes', | ||
38 | 'focaHojaRuta', | 41 | 'focaLogin', |
39 | 'focaInformes', | 42 | 'focaModal', |
40 | 'focaLogin', | ||
41 | 'focaModal', | 43 | 'focaModalCheque', |
42 | 'focaModalCheque', | ||
43 | 'focaModalCobranza', | ||
44 | 'focaModalCotizacion', | 44 | 'focaModalCobranza', |
45 | 'focaModalDetalleCisternas', | 45 | 'focaModalCotizacion', |
46 | 'focaModalDetalleHojaRuta', | 46 | 'focaModalDetalleCisternas', |
47 | 'focaModalDetalles', | 47 | 'focaModalDetalleHojaRuta', |
48 | 'focaModalDetalles', | ||
48 | 'focaModalDomicilio', | 49 | 'focaModalDomicilio', |
49 | 'focaModalEfectivo', | 50 | 'focaModalEfectivo', |
50 | 'focaModalFactura', | 51 | 'focaModalFactura', |
51 | 'focaModalFacturaDetalle', | 52 | 'focaModalFacturaDetalle', |
52 | 'focaModalFlete', | 53 | 'focaModalFlete', |
53 | 'focaModalGraficoCisternas', | 54 | 'focaModalGraficoCisternas', |
55 | 'focaModalInforme', | ||
54 | 'focaModalInforme', | 56 | 'focaModalListaPrecio', |
55 | 'focaModalListaPrecio', | ||
56 | 'focaModalLocalizar', | 57 | 'focaModalLocalizar', |
57 | 'focaModalLogin', | 58 | 'focaModalLogin', |
58 | 'focaModalNotaPedido', | ||
59 | 'focaModalPrecioCondicion', | 59 | 'focaModalNotaPedido', |
60 | 'focaModalPuntoDescarga', | 60 | 'focaModalPrecioCondicion', |
61 | 'focaModalRemito', | ||
62 | 'focaModalTarifaFlete', | ||
63 | 'focaModalUnidadMedida', | 61 | 'focaModalPuntoDescarga', |
src/js/controller.js
1 | angular.module('appWrapperDemo') | 1 | angular.module('appWrapperDemo') |
2 | .controller('appWrapperDemoController', [ | 2 | .controller('appWrapperDemoController', [ |
3 | '$scope', | 3 | '$scope', |
4 | '$rootScope', | 4 | '$rootScope', |
5 | '$timeout', | 5 | '$timeout', |
6 | function($scope, $rootScope, $timeout) { | 6 | function($scope, $rootScope, $timeout) { |
7 | $scope.usarTeclado = false; | 7 | $scope.usarTeclado = false; |
8 | $rootScope.$broadcast('usarTeclado', false); | 8 | $rootScope.$broadcast('usarTeclado', false); |
9 | $scope.mostrarTeclado = false; | 9 | $scope.mostrarTeclado = false; |
10 | //Envía broadcast para avisar que el teclado está en funcionamiento o no | 10 | //Envía broadcast para avisar que el teclado está en funcionamiento o no |
11 | //para su uso cambiar ng-click del boton por esta función | 11 | //para su uso cambiar ng-click del boton por esta función |
12 | $scope.cambioUsoTeclado = function() { | 12 | $scope.cambioUsoTeclado = function() { |
13 | if($scope.usarTeclado) { | 13 | if($scope.usarTeclado) { |
14 | $scope.usarTeclado = false; | 14 | $scope.usarTeclado = false; |
15 | $rootScope.$broadcast('usarTeclado', false); | 15 | $rootScope.$broadcast('usarTeclado', false); |
16 | return; | 16 | return; |
17 | } | 17 | } |
18 | $scope.usarTeclado = true; | 18 | $scope.usarTeclado = true; |
19 | $rootScope.$broadcast('usarTeclado', true); | 19 | $rootScope.$broadcast('usarTeclado', true); |
20 | }; | 20 | }; |
21 | 21 | ||
22 | $rootScope.$on('focus', function() { | 22 | $rootScope.$on('focus', function() { |
23 | if(!$scope.usarTeclado) { | 23 | if(!$scope.usarTeclado) { |
24 | return; | 24 | return; |
25 | } | 25 | } |
26 | $scope.mostrarTeclado = true; | 26 | $scope.mostrarTeclado = true; |
27 | $timeout.cancel($scope.timeout); | 27 | $timeout.cancel($scope.timeout); |
28 | if(!$scope.$$phase) { | 28 | if(!$scope.$$phase) { |
29 | $scope.$apply(); | 29 | $scope.$apply(); |
30 | } | 30 | } |
31 | }); | 31 | }); |
32 | $rootScope.$on('blur', function() { | 32 | $rootScope.$on('blur', function() { |
33 | $scope.timeout = $timeout(function() { | 33 | $scope.timeout = $timeout(function() { |
34 | $scope.mostrarTeclado = false; | 34 | $scope.mostrarTeclado = false; |
35 | if(!$scope.$$phase) { | 35 | if(!$scope.$$phase) { |
36 | $scope.$apply(); | 36 | $scope.$apply(); |
37 | } | 37 | } |
38 | }, 150); | 38 | }, 150); |
39 | }); | 39 | }); |
40 | } | 40 | } |
41 | ]); | 41 | ]); |
42 | 42 |
src/sass/_botonera-secundaria.scss
1 | .botonera-secundaria { | 1 | .botonera-secundaria { |
2 | .row { | 2 | .row { |
3 | border-radius: 5px; | 3 | border-radius: 5px; |
4 | overflow: hidden; | 4 | overflow: hidden; |
5 | } | 5 | } |
6 | .btn-xs { | 6 | .btn-xs { |
7 | display: grid; | 7 | display: grid; |
8 | border-width: 3px !important; | 8 | border-width: 3px !important; |
9 | border-radius: .7rem !important; | 9 | border-radius: .7rem !important; |
10 | margin-right: 1px; | 10 | margin-right: 1px; |
11 | width: calc(100% - 1px); | 11 | width: calc(100% - 1px); |
12 | margin-bottom: 1px; | 12 | margin-bottom: 1px; |
13 | 13 | ||
14 | &:hover{ | 14 | &:hover{ |
15 | background-color: #d8b07d; | 15 | background-color: #d8b07d; |
16 | border-color: #e09125 !important; | 16 | border-color: #e09125 !important; |
17 | } | 17 | } |
18 | &:focus{ | 18 | &:focus{ |
19 | box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); | 19 | box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); |
20 | } | 20 | } |
21 | img{ | 21 | img{ |
22 | width: 50%; | 22 | width: 50%; |
23 | margin: auto | 23 | margin: auto |
24 | } | 24 | } |
25 | span{ | 25 | span{ |
26 | font-size: 11px; | 26 | font-size: 11px; |
27 | margin-left: -.25rem; | 27 | margin-left: -.25rem; |
28 | margin-right: -.25rem; | 28 | margin-right: -.25rem; |
29 | } | 29 | } |
30 | } | 30 | } |
31 | @media(max-width: 992px){ | 31 | @media(max-width: 992px){ |
32 | .btn-xs{ | 32 | .btn-xs{ |
33 | font-weight: 700; | 33 | font-weight: 700; |
34 | } | 34 | } |
35 | } | 35 | } |
36 | @media(min-width: 1200px){ | 36 | @media(min-width: 1200px){ |
37 | .btn-xs{ | 37 | .btn-xs{ |
38 | height: 85px !important; | 38 | height: 85px !important; |
39 | } | 39 | } |
40 | .foca-facturador-px{ | 40 | .foca-facturador-px{ |
41 | padding-left: 3rem; | 41 | padding-left: 3rem; |
42 | padding-right: 3rem; | 42 | padding-right: 3rem; |
43 | } | 43 | } |
44 | } | 44 | } |
45 | 45 | ||
46 | @media(min-width: 992px) and (max-width: 1200px){ | 46 | @media(min-width: 992px) and (max-width: 1200px){ |
47 | .btn-xs{ | 47 | .btn-xs{ |
48 | height: 73px !important; | 48 | height: 73px !important; |
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||
52 | @media(min-width: 768px) and (max-width: 992px){ | 52 | @media(min-width: 768px) and (max-width: 992px){ |
53 | .btn-xs{ | 53 | .btn-xs{ |
54 | height: 62px !important; | 54 | height: 62px !important; |
55 | } | ||
56 | } | ||
57 | |||
58 | @media(min-width: 576px) and (max-width: 768px){ | ||
59 | .btn-xs{ | ||
60 | max-height: 51px; | ||
61 | } | ||
62 | } | ||
63 | |||
64 | @media(max-width: 576px) { | ||
65 | .btn-xs{ | ||
66 | max-height: 13vw; | ||
55 | } | 67 | } |
56 | } | 68 | } |
57 | 69 | ||
58 | @media(min-width: 576px) and (max-width: 768px){ | 70 | } |
59 | .btn-xs{ | 71 |
src/sass/_grid.scss
File was created | 1 | .gridInforme { | |
2 | width: 100%; | ||
3 | height: 350px; | ||
4 | } | ||
5 | .ui-grid-header-cell-wrapper{ | ||
6 | height: 40px !important; | ||
7 | } | ||
8 | |||
9 | |||
10 | .yellow { | ||
11 | max-width: unset !important; | ||
12 | >div { | ||
13 | background: yellow !important; | ||
14 | font-weight: bold; | ||
15 | } | ||
16 | } | ||
17 | |||
18 | .red { | ||
19 | max-width: unset !important; | ||
20 | >div { | ||
21 | color: red; | ||
22 | font-weight: bold; | ||
23 | } | ||
24 | } | ||
25 | |||
26 | .green { | ||
27 | max-width: unset !important; | ||
28 | >div { | ||
29 | color: green; | ||
30 | font-weight: bold; | ||
31 | } | ||
32 | } | ||
1 | .gridInforme { | 33 |
src/sass/_logistica-pedido-ruta.scss
1 | .arrastrando { | 1 | .arrastrando { |
2 | opacity: 0.5; | 2 | opacity: 0.5; |
3 | } | 3 | } |
4 | .vertical { | 4 | .vertical { |
5 | display: inline-block; | 5 | display: inline-block; |
6 | width: 20%; | 6 | width: 20%; |
7 | height: 40px; | 7 | height: 40px; |
8 | -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */ | 8 | -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */ |
9 | transform: rotate(-90deg); | 9 | transform: rotate(-90deg); |
10 | } | 10 | } |
11 | .progress-circle{ | 11 | .progress-circle{ |
12 | width: 150px; | 12 | width: 150px; |
13 | height: 150px; | 13 | height: 150px; |
14 | line-height: 150px; | 14 | line-height: 150px; |
15 | background: none; | 15 | background: none; |
16 | margin: 0 auto; | 16 | margin: 0 auto; |
17 | box-shadow: none; | 17 | box-shadow: none; |
18 | position: relative; | 18 | position: relative; |
19 | } | 19 | } |
20 | .progress-circle:after{ | 20 | .progress-circle:after{ |
21 | content: ""; | 21 | content: ""; |
22 | width: 100%; | 22 | width: 100%; |
23 | height: 100%; | 23 | height: 100%; |
24 | border-radius: 50%; | 24 | border-radius: 50%; |
25 | border: 12px solid #fff; | 25 | border: 12px solid #fff; |
26 | position: absolute; | 26 | position: absolute; |
27 | top: 0; | 27 | top: 0; |
28 | left: 0; | 28 | left: 0; |
29 | } | 29 | } |
30 | .progress-circle > span{ | 30 | .progress-circle > span{ |
31 | width: 50%; | 31 | width: 50%; |
32 | height: 100%; | 32 | height: 100%; |
33 | overflow: hidden; | 33 | overflow: hidden; |
34 | position: absolute; | 34 | position: absolute; |
35 | top: 0; | 35 | top: 0; |
36 | z-index: 1; | 36 | z-index: 1; |
37 | } | 37 | } |
38 | .progress-circle .progress-left{ | 38 | .progress-circle .progress-left{ |
39 | left: 0; | 39 | left: 0; |
40 | } | 40 | } |
41 | .progress-circle .progress-bar{ | 41 | .progress-circle .progress-bar{ |
42 | width: 100%; | 42 | width: 100%; |
43 | height: 100%; | 43 | height: 100%; |
44 | background: none; | 44 | background: none; |
45 | border-width: 12px; | 45 | border-width: 12px; |
46 | border-style: solid; | 46 | border-style: solid; |
47 | position: absolute; | 47 | position: absolute; |
48 | top: 0; | 48 | top: 0; |
49 | } | 49 | } |
50 | .progress-circle .progress-left .progress-bar{ | 50 | .progress-circle .progress-left .progress-bar{ |
51 | left: 100%; | 51 | left: 100%; |
52 | border-top-right-radius: 80px; | 52 | border-top-right-radius: 80px; |
53 | border-bottom-right-radius: 80px; | 53 | border-bottom-right-radius: 80px; |
54 | border-left: 0; | 54 | border-left: 0; |
55 | -webkit-transform-origin: center left; | 55 | -webkit-transform-origin: center left; |
56 | transform-origin: center left; | 56 | transform-origin: center left; |
57 | } | 57 | } |
58 | .progress-circle .progress-right{ | 58 | .progress-circle .progress-right{ |
59 | right: 0; | 59 | right: 0; |
60 | } | 60 | } |
61 | .progress-circle .progress-right .progress-bar{ | 61 | .progress-circle .progress-right .progress-bar{ |
62 | left: -100%; | 62 | left: -100%; |
63 | border-top-left-radius: 80px; | 63 | border-top-left-radius: 80px; |
64 | border-bottom-left-radius: 80px; | 64 | border-bottom-left-radius: 80px; |
65 | border-right: 0; | 65 | border-right: 0; |
66 | -webkit-transform-origin: center right; | 66 | -webkit-transform-origin: center right; |
67 | transform-origin: center right; | 67 | transform-origin: center right; |
68 | animation: loading-1 1.8s linear forwards; | 68 | animation: loading-1 1.8s linear forwards; |
69 | } | 69 | } |
70 | .progress-circle .progress-value{ | 70 | .progress-circle .progress-value{ |
71 | width: 90%; | 71 | width: 90%; |
72 | height: 90%; | 72 | height: 90%; |
73 | border-radius: 50%; | 73 | border-radius: 50%; |
74 | background: #44484b; | 74 | background: #44484b; |
75 | font-size: 24px; | 75 | font-size: 24px; |
76 | color: #fff; | 76 | color: #fff; |
77 | line-height: 20px; | 77 | line-height: 20px; |
78 | text-align: center; | 78 | text-align: center; |
79 | position: absolute; | 79 | position: absolute; |
80 | top: 5%; | 80 | top: 5%; |
81 | left: 5%; | 81 | left: 5%; |
82 | } | 82 | } |
83 | .progress-circle.blue .progress-bar{ | 83 | .progress-circle.blue .progress-bar{ |
84 | border-color: #049dff; | 84 | border-color: #049dff; |
85 | } | 85 | } |
86 | .progress-circle.blue .progress-left .progress-bar{ | 86 | .progress-circle.blue .progress-left .progress-bar{ |
87 | animation: loading-2 1.5s linear forwards 1.8s; | 87 | animation: loading-2 1.5s linear forwards 1.8s; |
88 | } | 88 | } |
89 | @keyframes loading-1{ | 89 | @keyframes loading-1{ |
90 | 0%{ | 90 | 0%{ |
91 | -webkit-transform: rotate(0deg); | 91 | -webkit-transform: rotate(0deg); |
92 | transform: rotate(0deg); | 92 | transform: rotate(0deg); |
93 | } | 93 | } |
94 | 100%{ | 94 | 100%{ |
95 | -webkit-transform: rotate(180deg); | 95 | -webkit-transform: rotate(180deg); |
96 | transform: rotate(180deg); | 96 | transform: rotate(180deg); |
97 | } | 97 | } |
98 | } | 98 | } |
99 | @keyframes loading-2{ | 99 | @keyframes loading-2{ |
100 | 0%{ | 100 | 0%{ |
101 | -webkit-transform: rotate(0deg); | 101 | -webkit-transform: rotate(0deg); |
102 | transform: rotate(0deg); | 102 | transform: rotate(0deg); |
103 | } | 103 | } |
104 | 100%{ | 104 | 100%{ |
105 | -webkit-transform: rotate(180deg); | 105 | -webkit-transform: rotate(180deg); |
106 | transform: rotate(180deg); | 106 | transform: rotate(180deg); |
107 | } | 107 | } |
108 | } | 108 | } |
109 | @keyframes loading-3{ | 109 | @keyframes loading-3{ |
110 | 0%{ | 110 | 0%{ |
111 | -webkit-transform: rotate(0deg); | 111 | -webkit-transform: rotate(0deg); |
112 | transform: rotate(0deg); | 112 | transform: rotate(0deg); |
113 | } | 113 | } |
114 | 100%{ | 114 | 100%{ |
115 | -webkit-transform: rotate(90deg); | 115 | -webkit-transform: rotate(90deg); |
116 | transform: rotate(90deg); | 116 | transform: rotate(90deg); |
117 | } | 117 | } |
118 | } | 118 | } |
119 | @keyframes loading-4{ | 119 | @keyframes loading-4{ |
120 | 0%{ | 120 | 0%{ |
121 | -webkit-transform: rotate(0deg); | 121 | -webkit-transform: rotate(0deg); |
122 | transform: rotate(0deg); | 122 | transform: rotate(0deg); |
123 | } | 123 | } |
124 | 100%{ | 124 | 100%{ |
125 | -webkit-transform: rotate(36deg); | 125 | -webkit-transform: rotate(36deg); |
126 | transform: rotate(36deg); | 126 | transform: rotate(36deg); |
127 | } | 127 | } |
128 | } | 128 | } |
129 | @keyframes loading-5{ | 129 | @keyframes loading-5{ |
130 | 0%{ | 130 | 0%{ |
131 | -webkit-transform: rotate(0deg); | 131 | -webkit-transform: rotate(0deg); |
132 | transform: rotate(0deg); | 132 | transform: rotate(0deg); |
133 | } | 133 | } |
134 | 100%{ | 134 | 100%{ |
135 | -webkit-transform: rotate(126deg); | 135 | -webkit-transform: rotate(126deg); |
136 | transform: rotate(126deg); | 136 | transform: rotate(126deg); |
137 | } | 137 | } |
138 | } | 138 | } |
139 | @media only screen and (max-width: 990px){ | 139 | @media only screen and (max-width: 990px){ |
140 | .progress{ margin-bottom: 20px; } | 140 | .progress{ margin-bottom: 20px; } |
141 | } | 141 | } |
142 | .foca-alto-progress{ | 142 | .foca-alto-progress{ |
143 | height: 2rem; | 143 | height: 2rem; |
144 | } | 144 | } |
145 | 145 |
src/sass/_paginador-abm.scss
File was created | 1 | .paginador-abm { | |
2 | margin-top: 1rem; | ||
3 | li { | ||
4 | &.active{ | ||
5 | > a { | ||
6 | background: $primary-color !important; | ||
7 | color: #FFF !important; | ||
8 | } | ||
9 | } | ||
10 | |||
11 | > a { | ||
12 | background-color: transparent !important; | ||
13 | border-color: #67615e !important; | ||
14 | color: #000 !important; | ||
15 | |||
16 | } | ||
17 | } | ||
18 | } | ||
1 | .paginador-abm { | 19 |
src/sass/general.scss
1 | $primary-color: #e09125; | 1 | $primary-color: #e09125; |
2 | @import 'admin-seguimiento'; | 2 | @import 'admin-seguimiento'; |
3 | @import 'bootstrap'; | 3 | @import 'bootstrap'; |
4 | @import 'botonera'; | 4 | @import 'botonera'; |
5 | @import 'botonera-lateral'; | 5 | @import 'botonera-lateral'; |
6 | @import 'botonera-principal'; | 6 | @import 'botonera-principal'; |
7 | @import 'botonera-secundaria'; | 7 | @import 'botonera-secundaria'; |
8 | @import 'contenedor'; | 8 | @import 'contenedor'; |
9 | @import 'lista'; | 9 | @import 'lista'; |
10 | @import 'login'; | 10 | @import 'login'; |
11 | @import 'panel-informativo'; | 11 | @import 'panel-informativo'; |
12 | @import 'tabla'; | 12 | @import 'tabla'; |
13 | @import 'teclado'; | 13 | @import 'teclado'; |
14 | @import 'tabla-articulos'; | 14 | @import 'tabla-articulos'; |
15 | @import 'acciones-mobile'; | 15 | @import 'acciones-mobile'; |
16 | @import 'swiper'; | 16 | @import 'swiper'; |
17 | @import 'foca-crear'; | 17 | @import 'foca-crear'; |
18 | @import 'logistica-pedido-ruta'; | 18 | @import 'logistica-pedido-ruta'; |
19 | @import 'tabs'; | 19 | @import 'tabs'; |
20 | @import 'grid'; | ||
21 | @import 'paginador-abm'; | ||
20 | @import 'grid'; | 22 | |
21 | @import 'paginador-abm'; | 23 | |
22 | 24 | //OCULTA FLECHAS INPUT NUMBER | |
23 | 25 | input[type='number'] { | |
24 | //OCULTA FLECHAS INPUT NUMBER | 26 | -moz-appearance:textfield; |
25 | input[type='number'] { | 27 | } |
26 | -moz-appearance:textfield; | 28 | input::-webkit-outer-spin-button, |
27 | } | 29 | input::-webkit-inner-spin-button { |
28 | input::-webkit-outer-spin-button, | 30 | -webkit-appearance: none; |
29 | input::-webkit-inner-spin-button { | 31 | } |
30 | -webkit-appearance: none; | 32 | |
31 | } | 33 | .d-md-grid{ |
32 | 34 | @media (min-width: 768px) { | |
33 | .d-md-grid{ | 35 | display: grid !important; |
34 | @media (min-width: 768px) { | 36 | } |
35 | display: grid !important; | 37 | } |
36 | } | 38 | |
37 | } | 39 | .btn-outline-debo{ |
38 | 40 | background-color: transparent; | |
39 | .btn-outline-debo{ | 41 | color: $primary-color; |
40 | background-color: transparent; | 42 | border-color: $primary-color; |
41 | color: $primary-color; | 43 | &:hover{ |
42 | border-color: $primary-color; | 44 | color: #FFF; |
43 | &:hover{ | 45 | border-color: transparent; |
44 | color: #FFF; | 46 | background-color: $primary-color; |
45 | border-color: transparent; | 47 | } |
46 | background-color: $primary-color; | 48 | } |
47 | } | 49 | |
48 | } | 50 | .front-index{ |
49 | 51 | z-index: 9999; | |
50 | .front-index{ | 52 | } |
51 | z-index: 9999; | 53 | |
52 | } | 54 | .uib-daypicker{ |
53 | 55 | outline: 0 | |
54 | .uib-daypicker{ | ||
55 | outline: 0 | 56 | } |
57 | |||
58 | .right-0{ | ||
59 | right: 0; | ||
60 | } | ||
61 | |||
62 | .tabla-factura{ | ||
63 | word-wrap: break-word; | ||
64 | table-layout: fixed; | ||
65 | } | ||
66 | |||
67 | .ladda-w-100 .ladda-label{ | ||
68 | width: 100% | ||
69 | } | ||
70 | |||
71 | .btn-delete-image{ | ||
72 | height: 25px; | ||
73 | width: 25px; | ||
74 | top: -10px; | ||
75 | right: 0; | ||
76 | } |
unit-test.html
File was created | 1 | <html> | |
2 | <head> | ||
3 | <link rel="stylesheet" type="text/css" href="node_modules/jasmine-core/lib/jasmine-core/jasmine.css"> | ||
4 | <meta charset="UTF-8" /> | ||
5 | </head> | ||
6 | <body> | ||
7 | <script src="node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script> | ||
8 | <script src="node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script> | ||
9 | <script src="node_modules/jasmine-core/lib/jasmine-core/boot.js"></script> | ||
10 | <script src="node_modules/angular/angular.min.js"></script> | ||
11 | <script src="node_modules/angular-mocks/angular-mocks.js"></script> | ||
12 | <script src="node_modules/angular-route/angular-route.min.js"></script> | ||
13 | |||
14 | <!-- foca-abm-vehiculo --> | ||
15 | <script src="node_modules/foca-abm-vehiculo/dist/foca-abm-vehiculo.min.js"></script> | ||
16 | <script src="node_modules/foca-abm-vehiculo/dist/foca-abm-vehiculo.spec.js"></script> | ||
17 | |||
18 | <!-- foca-abm-chofer --> | ||
19 | <script src="node_modules/foca-abm-chofer/dist/foca-abm-chofer.min.js"></script> | ||
20 | <script src="node_modules/foca-abm-chofer/dist/foca-abm-chofer.spec.js"></script> | ||
21 | |||
22 | <!-- foca-abm-precios-condiciones --> | ||
23 | <script src="node_modules/foca-abm-precios-condiciones/dist/foca-abm-precios-condiciones.min.js"></script> | ||
24 | <script src="node_modules/foca-abm-precios-condiciones/dist/foca-abm-precios-condiciones.spec.js"></script> | ||
25 | |||
26 | <!-- foca-abm-vendedor-cobrador --> | ||
27 | <script src="node_modules/foca-abm-vendedor-cobrador/dist/foca-abm-vendedor-cobrador.min.js"></script> | ||
28 | <script src="node_modules/foca-abm-vendedor-cobrador/dist/foca-abm-vendedor-cobrador.spec.js"></script> | ||
29 | </body> | ||
30 | </html> | ||
1 | <html> | 31 |