Commit 8c0920d722faa83752add8f7e9f70e99b366b4aa

Authored by Nicolás Guarnieri
Exists in master

Merge remote-tracking branch 'upstream/master'

1 const templateCache = require('gulp-angular-templatecache'); 1 const templateCache = require('gulp-angular-templatecache');
2 const clean = require('gulp-clean'); 2 const clean = require('gulp-clean');
3 const concat = require('gulp-concat'); 3 const concat = require('gulp-concat');
4 const htmlmin = require('gulp-htmlmin'); 4 const htmlmin = require('gulp-htmlmin');
5 const rename = require('gulp-rename'); 5 const rename = require('gulp-rename');
6 const uglify = require('gulp-uglify'); 6 const uglify = require('gulp-uglify');
7 const gulp = require('gulp'); 7 const gulp = require('gulp');
8 const pump = require('pump'); 8 const pump = require('pump');
9 const jshint = require('gulp-jshint'); 9 const jshint = require('gulp-jshint');
10 const replace = require('gulp-replace'); 10 const replace = require('gulp-replace');
11 const connect = require('gulp-connect'); 11 const connect = require('gulp-connect');
12 12
13 var paths = { 13 var paths = {
14 srcJS: 'src/js/*.js', 14 srcJS: 'src/js/*.js',
15 srcViews: 'src/views/*.html', 15 srcViews: 'src/views/*.html',
16 tmp: 'tmp', 16 tmp: 'tmp',
17 dist: 'dist/' 17 dist: 'dist/'
18 }; 18 };
19 19
20 gulp.task('templates', ['clean'], function() { 20 gulp.task('templates', ['clean'], function() {
21 return pump( 21 return pump(
22 [ 22 [
23 gulp.src(paths.srcViews), 23 gulp.src(paths.srcViews),
24 htmlmin(), 24 htmlmin(),
25 templateCache('views.js', { 25 templateCache('views.js', {
26 module: 'focaCrearNotaPedido', 26 module: 'focaCrearNotaPedido',
27 root: '' 27 root: ''
28 }), 28 }),
29 gulp.dest(paths.tmp) 29 gulp.dest(paths.tmp)
30 ] 30 ]
31 ); 31 );
32 }); 32 });
33 33
34 gulp.task('uglify', ['templates'], function() { 34 gulp.task('uglify', ['templates'], function() {
35 return pump( 35 return pump(
36 [ 36 [
37 gulp.src([ 37 gulp.src([
38 paths.srcJS, 38 paths.srcJS,
39 'tmp/views.js' 39 'tmp/views.js'
40 ]), 40 ]),
41 concat('foca-crear-nota-pedido.js'), 41 concat('foca-crear-nota-pedido.js'),
42 replace('src/views/', ''), 42 replace('src/views/', ''),
43 gulp.dest(paths.tmp), 43 gulp.dest(paths.tmp),
44 rename('foca-crear-nota-pedido.min.js'), 44 rename('foca-crear-nota-pedido.min.js'),
45 uglify(), 45 uglify(),
46 replace('"ngRoute","ui.bootstrap","focaModalVendedores","focaBusquedaProductos",'+ 46 replace('"ngRoute","ui.bootstrap","focaModalVendedores","focaBusquedaProductos",'+
47 '"focaModalProveedor","focaBusquedaCliente","focaModalPrecioCondicion",'+ 47 '"focaModalProveedor","focaBusquedaCliente","focaModalPrecioCondicion",'+
48 '"focaModalFlete","focaDirectivas","focaModal","focaModalDomicilio",'+ 48 '"focaModalFlete","focaDirectivas","focaModal","focaModalDomicilio",'+
49 '"angular-ladda"', ''), 49 '"focaModalMoneda","focaModalCotizacion","focaSeguimiento","angular-ladda",'+
50 '"cordovaGeolocationModule"', ''),
50 gulp.dest(paths.dist) 51 gulp.dest(paths.dist)
51 ] 52 ]
52 ); 53 );
53 }); 54 });
54 55
55 gulp.task('clean', function(){ 56 gulp.task('clean', function(){
56 return gulp.src(['tmp', 'dist'], {read: false}) 57 return gulp.src(['tmp', 'dist'], {read: false})
57 .pipe(clean()); 58 .pipe(clean());
58 }); 59 });
59 60
60 gulp.task('pre-commit', function() { 61 gulp.task('pre-commit', function() {
61 return pump( 62 return pump(
62 [ 63 [
63 gulp.src(paths.srcJS), 64 gulp.src(paths.srcJS),
64 jshint('.jshintrc'), 65 jshint('.jshintrc'),
65 jshint.reporter('default'), 66 jshint.reporter('default'),
66 jshint.reporter('fail') 67 jshint.reporter('fail')
67 ] 68 ]
68 ); 69 );
69 70
70 gulp.start('uglify'); 71 gulp.start('uglify');
71 }); 72 });
72 73
73 gulp.task('webserver', function() { 74 gulp.task('webserver', function() {
74 pump [ 75 pump [
75 connect.server({port: 3300, host: '0.0.0.0'}) 76 connect.server({port: 3300, host: '0.0.0.0'})
76 ] 77 ]
77 }); 78 });
78 79
79 gulp.task('clean-post-install', function() { 80 gulp.task('clean-post-install', function() {
80 return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', 81 return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js',
81 'index.html'], {read: false}) 82 'index.html'], {read: false})
82 .pipe(clean()); 83 .pipe(clean());
83 }); 84 });
84 85
85 gulp.task('default', ['webserver']); 86 gulp.task('default', ['webserver']);
86 87
87 gulp.task('watch', function() { 88 gulp.task('watch', function() {
88 gulp.watch([paths.srcJS, paths.srcViews], ['uglify']); 89 gulp.watch([paths.srcJS, paths.srcViews], ['uglify']);
89 }); 90 });
90 91
1 <html ng-app="focaCrearNotaPedido"> 1 <html ng-app="focaCrearNotaPedido">
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 5
6 <!--CSS--> 6 <!--CSS-->
7 <link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> 7 <link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
8 <link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet"/> 8 <link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet"/>
9 <link href="node_modules/ladda/dist/ladda-themeless.min.css" rel="stylesheet"> 9 <link href="node_modules/ladda/dist/ladda-themeless.min.css" rel="stylesheet">
10 10
11 <!--VENDOR JS--> 11 <!--VENDOR JS-->
12 <script src="node_modules/jquery/dist/jquery.min.js"></script> 12 <script src="node_modules/jquery/dist/jquery.min.js"></script>
13 <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script> 13 <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
14 <script src="node_modules/angular/angular.min.js"></script> 14 <script src="node_modules/angular/angular.min.js"></script>
15 <script src="node_modules/angular-route/angular-route.min.js"></script> 15 <script src="node_modules/angular-route/angular-route.min.js"></script>
16 <script src="node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> 16 <script src="node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script>
17 <script src="node_modules/ladda/dist/spin.min.js"></script> 17 <script src="node_modules/ladda/dist/spin.min.js"></script>
18 <script src="node_modules/ladda/dist/ladda.min.js"></script> 18 <script src="node_modules/ladda/dist/ladda.min.js"></script>
19 <script src="node_modules/angular-ladda/dist/angular-ladda.min.js"></script> 19 <script src="node_modules/angular-ladda/dist/angular-ladda.min.js"></script>
20 <script src="vendor/cordovaGeolocationModule.min.js"></script>
20 21
21 <script src="node_modules/foca-directivas/dist/foca-directivas.min.js"></script> 22 <script src="node_modules/foca-directivas/dist/foca-directivas.min.js"></script>
22 <script src="node_modules/foca-modal-vendedores/dist/foca-modal-vendedores.min.js"></script> 23 <script src="node_modules/foca-modal-vendedores/dist/foca-modal-vendedores.min.js"></script>
23 <script src="node_modules/foca-modal-busqueda-productos/dist/foca-busqueda-productos.min.js"></script> 24 <script src="node_modules/foca-modal-busqueda-productos/dist/foca-busqueda-productos.min.js"></script>
24 <script src="node_modules/foca-modal-proveedor/dist/foca-modal-proveedor.min.js"></script> 25 <script src="node_modules/foca-modal-proveedor/dist/foca-modal-proveedor.min.js"></script>
25 <script src="node_modules/foca-busqueda-cliente/dist/foca-busqueda-cliente.min.js"></script> 26 <script src="node_modules/foca-busqueda-cliente/dist/foca-busqueda-cliente.min.js"></script>
26 <script src="node_modules/foca-modal-precio-condiciones/dist/foca-modal-precio-condiciones.min.js"></script> 27 <script src="node_modules/foca-modal-precio-condiciones/dist/foca-modal-precio-condiciones.min.js"></script>
27 <script src="node_modules/foca-modal-flete/dist/foca-modal-flete.min.js"></script> 28 <script src="node_modules/foca-modal-flete/dist/foca-modal-flete.min.js"></script>
28 <script src="node_modules/foca-modal/dist/foca-modal.min.js"></script> 29 <script src="node_modules/foca-modal/dist/foca-modal.min.js"></script>
29 <script src="node_modules/foca-modal-domicilio/dist/foca-modal-domicilios.min.js"></script> 30 <script src="node_modules/foca-modal-domicilio/dist/foca-modal-domicilios.min.js"></script>
30 <script src="node_modules/foca-modal-moneda/dist/foca-modal-moneda.min.js"></script> 31 <script src="node_modules/foca-modal-moneda/dist/foca-modal-moneda.min.js"></script>
31 <script src="node_modules/foca-modal-cotizacion/dist/foca-modal-cotizacion.min.js"></script> 32 <script src="node_modules/foca-modal-cotizacion/dist/foca-modal-cotizacion.min.js"></script>
33 <script src="node_modules/foca-seguimiento/dist/foca-seguimiento.min.js"></script>
32 34
33 <script src="src/js/app.js"></script> 35 <script src="src/js/app.js"></script>
34 <script src="src/js/controller.js"></script> 36 <script src="src/js/controller.js"></script>
35 <script src="src/js/service.js"></script> 37 <script src="src/js/service.js"></script>
38 <script src="src/js/businessService.js"></script>
36 <script src="src/js/route.js"></script> 39 <script src="src/js/route.js"></script>
37 40
38 <script src="src/etc/develop.js"></script> 41 <script src="src/etc/develop.js"></script>
39 </head> 42 </head>
40 <body> 43 <body>
41 <div ng-view class="container-fluid"></div> 44 <div ng-view class="container-fluid"></div>
42 </body> 45 </body>
43 </html> 46 </html>
44 47
1 { 1 {
2 "name": "foca-crear-nota-pedido", 2 "name": "foca-crear-nota-pedido",
3 "version": "0.0.1", 3 "version": "0.0.1",
4 "description": "Listado y ABM nota de pedidos", 4 "description": "Listado y ABM nota de pedidos",
5 "main": "index.js", 5 "main": "index.js",
6 "scripts": { 6 "scripts": {
7 "test": "echo \"Error: no test specified\" && exit 1", 7 "test": "echo \"Error: no test specified\" && exit 1",
8 "compile": "gulp uglify", 8 "compile": "gulp uglify",
9 "gulp-pre-commit": "gulp pre-commit", 9 "gulp-pre-commit": "gulp pre-commit",
10 "postinstall": "npm run compile && gulp clean-post-install", 10 "postinstall": "npm run compile && gulp clean-post-install",
11 "install-dev": "npm install -D jasmine-core pre-commit angular angular-ladda ladda@1.0.6 angular-route bootstrap ui-bootstrap4 font-awesome gulp gulp-angular-templatecache gulp-connect gulp-clean gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-sequence gulp-uglify-es gulp-uglify jquery jshint pump git+https://debo.suite.repo/modulos-npm/foca-directivas.git git+https://debo.suite.repo/modulos-npm/foca-modal-vendedores.git git+https://debo.suite.repo/modulos-npm/foca-modal-proveedor.git git+https://debo.suite.repo/modulos-npm/foca-modal-busqueda-productos git+https://debo.suite.repo/modulos-npm/foca-busqueda-cliente.git git+https://debo.suite.repo/modulos-npm/foca-modal-precio-condiciones.git git+https://debo.suite.repo/modulos-npm/foca-modal-flete git+https://debo.suite.repo/modulos-npm/foca-modal.git git+https://debo.suite.repo/modulos-npm/foca-modal-domicilio.git git+https://debo.suite.repo/modulos-npm/foca-modal-moneda.git git+https://debo.suite.repo/modulos-npm/foca-modal-cotizacion.git" 11 "install-dev": "npm install -D jasmine-core pre-commit angular angular-ladda ladda@1.0.6 angular-route bootstrap ui-bootstrap4 font-awesome gulp gulp-angular-templatecache gulp-connect gulp-clean gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-sequence gulp-uglify-es gulp-uglify jquery jshint pump git+https://debo.suite.repo/modulos-npm/foca-directivas.git git+https://debo.suite.repo/modulos-npm/foca-modal-vendedores.git git+https://debo.suite.repo/modulos-npm/foca-modal-proveedor.git git+https://debo.suite.repo/modulos-npm/foca-modal-busqueda-productos git+https://debo.suite.repo/modulos-npm/foca-busqueda-cliente.git git+https://debo.suite.repo/modulos-npm/foca-modal-precio-condiciones.git git+https://debo.suite.repo/modulos-npm/foca-modal-flete git+https://debo.suite.repo/modulos-npm/foca-modal.git git+https://debo.suite.repo/modulos-npm/foca-modal-domicilio.git git+https://debo.suite.repo/modulos-npm/foca-seguimiento.git git+https://debo.suite.repo/modulos-npm/foca-modal-moneda.git git+https://debo.suite.repo/modulos-npm/foca-modal-cotizacion.git"
12 }, 12 },
13 "pre-commit": [ 13 "pre-commit": [
14 "gulp-pre-commit" 14 "gulp-pre-commit"
15 ], 15 ],
16 "repository": { 16 "repository": {
17 "type": "git", 17 "type": "git",
18 "url": "https://debo.suite.repo/modulos-npm/foca-crear-nota-pedido.git" 18 "url": "https://debo.suite.repo/modulos-npm/foca-crear-nota-pedido.git"
19 }, 19 },
20 "author": "Foca Software", 20 "author": "Foca Software",
21 "license": "ISC", 21 "license": "ISC",
22 "peerDependencies": { 22 "peerDependencies": {
23 "foca-busqueda-cliente": "git+https://debo.suite.repo/modulos-npm/foca-busqueda-cliente.git", 23 "foca-busqueda-cliente": "git+https://debo.suite.repo/modulos-npm/foca-busqueda-cliente.git",
24 "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas.git", 24 "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas.git",
25 "foca-modal-busqueda-productos": "git+https://debo.suite.repo/modulos-npm/foca-modal-busqueda-productos", 25 "foca-modal-busqueda-productos": "git+https://debo.suite.repo/modulos-npm/foca-modal-busqueda-productos",
26 "foca-modal-proveedor": "git+https://debo.suite.repo/modulos-npm/foca-modal-proveedor.git", 26 "foca-modal-proveedor": "git+https://debo.suite.repo/modulos-npm/foca-modal-proveedor.git",
27 "foca-modal-vendedores": "git+https://debo.suite.repo/modulos-npm/foca-modal-vendedores.git" 27 "foca-modal-vendedores": "git+https://debo.suite.repo/modulos-npm/foca-modal-vendedores.git",
28 "foca-seguimiento": "git+https://debo.suite.repo/modulos-npm/foca-seguimiento.git"
28 }, 29 },
29 "devDependencies": { 30 "devDependencies": {
30 "angular": "^1.7.5", 31 "angular": "^1.7.5",
31 "angular-ladda": "^0.4.3", 32 "angular-ladda": "^0.4.3",
32 "angular-route": "^1.7.5", 33 "angular-route": "^1.7.5",
33 "bootstrap": "^4.1.3", 34 "bootstrap": "^4.1.3",
34 "foca-busqueda-cliente": "git+https://debo.suite.repo/modulos-npm/foca-busqueda-cliente.git", 35 "foca-busqueda-cliente": "git+https://debo.suite.repo/modulos-npm/foca-busqueda-cliente.git",
35 "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas.git", 36 "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas.git",
36 "foca-modal": "git+https://debo.suite.repo/modulos-npm/foca-modal.git", 37 "foca-modal": "git+https://debo.suite.repo/modulos-npm/foca-modal.git",
37 "foca-modal-busqueda-productos": "git+https://debo.suite.repo/modulos-npm/foca-modal-busqueda-productos", 38 "foca-modal-busqueda-productos": "git+https://debo.suite.repo/modulos-npm/foca-modal-busqueda-productos",
38 "foca-modal-cotizacion": "git+https://debo.suite.repo/modulos-npm/foca-modal-cotizacion.git", 39 "foca-modal-cotizacion": "git+https://debo.suite.repo/modulos-npm/foca-modal-cotizacion.git",
39 "foca-modal-domicilio": "git+https://debo.suite.repo/modulos-npm/foca-modal-domicilio.git", 40 "foca-modal-domicilio": "git+https://debo.suite.repo/modulos-npm/foca-modal-domicilio.git",
40 "foca-modal-flete": "git+https://debo.suite.repo/modulos-npm/foca-modal-flete", 41 "foca-modal-flete": "git+https://debo.suite.repo/modulos-npm/foca-modal-flete",
41 "foca-modal-moneda": "git+https://debo.suite.repo/modulos-npm/foca-modal-moneda.git", 42 "foca-modal-moneda": "git+https://debo.suite.repo/modulos-npm/foca-modal-moneda.git",
42 "foca-modal-precio-condiciones": "git+https://debo.suite.repo/modulos-npm/foca-modal-precio-condiciones.git", 43 "foca-modal-precio-condiciones": "git+https://debo.suite.repo/modulos-npm/foca-modal-precio-condiciones.git",
43 "foca-modal-proveedor": "git+https://debo.suite.repo/modulos-npm/foca-modal-proveedor.git", 44 "foca-modal-proveedor": "git+https://debo.suite.repo/modulos-npm/foca-modal-proveedor.git",
44 "foca-modal-vendedores": "git+https://debo.suite.repo/modulos-npm/foca-modal-vendedores.git", 45 "foca-modal-vendedores": "git+https://debo.suite.repo/modulos-npm/foca-modal-vendedores.git",
46 "foca-seguimiento": "git+https://debo.suite.repo/modulos-npm/foca-seguimiento.git",
45 "font-awesome": "^4.7.0", 47 "font-awesome": "^4.7.0",
46 "gulp": "^3.9.1", 48 "gulp": "^3.9.1",
47 "gulp-angular-templatecache": "^2.2.2", 49 "gulp-angular-templatecache": "^2.2.2",
48 "gulp-clean": "^0.4.0", 50 "gulp-clean": "^0.4.0",
49 "gulp-concat": "^2.6.1", 51 "gulp-concat": "^2.6.1",
50 "gulp-connect": "^5.6.1", 52 "gulp-connect": "^5.6.1",
51 "gulp-htmlmin": "^5.0.1", 53 "gulp-htmlmin": "^5.0.1",
52 "gulp-jshint": "^2.1.0", 54 "gulp-jshint": "^2.1.0",
53 "gulp-rename": "^1.4.0", 55 "gulp-rename": "^1.4.0",
54 "gulp-replace": "^1.0.0", 56 "gulp-replace": "^1.0.0",
55 "gulp-sequence": "^1.0.0", 57 "gulp-sequence": "^1.0.0",
56 "gulp-uglify": "^3.0.1", 58 "gulp-uglify": "^3.0.1",
57 "gulp-uglify-es": "^1.0.4", 59 "gulp-uglify-es": "^1.0.4",
58 "jasmine-core": "^3.3.0", 60 "jasmine-core": "^3.3.0",
59 "jquery": "^3.3.1", 61 "jquery": "^3.3.1",
60 "jshint": "^2.9.6", 62 "jshint": "^2.9.6",
61 "ladda": "1.0.6", 63 "ladda": "1.0.6",
62 "pre-commit": "^1.2.2", 64 "pre-commit": "^1.2.2",
63 "pump": "^3.0.0", 65 "pump": "^3.0.0",
64 "ui-bootstrap4": "^3.0.5" 66 "ui-bootstrap4": "^3.0.5"
65 } 67 }
66 } 68 }
67 69
1 angular.module('focaCrearNotaPedido', [ 1 angular.module('focaCrearNotaPedido', [
2 'ngRoute', 2 'ngRoute',
3 'ui.bootstrap', 3 'ui.bootstrap',
4 'focaModalVendedores', 4 'focaModalVendedores',
5 'focaBusquedaProductos', 5 'focaBusquedaProductos',
6 'focaModalProveedor', 6 'focaModalProveedor',
7 'focaBusquedaCliente', 7 'focaBusquedaCliente',
8 'focaModalPrecioCondicion', 8 'focaModalPrecioCondicion',
9 'focaModalFlete', 9 'focaModalFlete',
10 'focaDirectivas', 10 'focaDirectivas',
11 'focaModal', 11 'focaModal',
12 'focaModalDomicilio', 12 'focaModalDomicilio',
13 'angular-ladda',
14 'focaModalMoneda', 13 'focaModalMoneda',
15 'focaModalCotizacion' 14 'focaModalCotizacion',
15 'focaSeguimiento',
16 'angular-ladda',
17 'cordovaGeolocationModule'
16 ]); 18 ]);
src/js/businessService.js
File was created 1 angular.module('focaCrearNotaPedido')
2 .factory('notaPedidoBusinessService', [
3 'crearNotaPedidoService',
4 function(crearNotaPedidoService) {
5 return {
6 addArticulos: function(articulosNotaPedido, idNotaPedido, cotizacion) {
7 for(var i = 0; i < articulosNotaPedido.length; i++) {
8 delete articulosNotaPedido[i].editCantidad;
9 delete articulosNotaPedido[i].editPrecio;
10 articulosNotaPedido[i].idNotaPedido = idNotaPedido;
11 articulosNotaPedido[i].precio = articulosNotaPedido[i].precio * cotizacion;
12 crearNotaPedidoService.crearArticulosParaNotaPedido(articulosNotaPedido[i]);
13 }
14 },
15 addEstado: function(idNotaPedido, idVendedor) {
16 var date = new Date();
17 var estado = {
18 idNotaPedido: idNotaPedido,
19 fecha: new Date(date.getTime() - (date.getTimezoneOffset() * 60000))
20 .toISOString().slice(0, 19).replace('T', ' '),
21 estado: 0,
22 idVendedor: idVendedor
23 };
24 crearNotaPedidoService.crearEstadoParaNotaPedido(estado);
25 }
26 };
27 }]);
28
src/js/controller.js
1 angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', 1 angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl',
2 [ 2 [
3 '$scope', '$uibModal', '$location', '$filter', 'crearNotaPedidoService', 3 '$scope', '$uibModal', '$location', '$filter', 'crearNotaPedidoService',
4 'focaModalService', 4 'focaModalService', 'focaSeguimientoService', 'notaPedidoBusinessService',
5 function( 5 function(
6 $scope, $uibModal, $location, $filter, crearNotaPedidoService, focaModalService 6 $scope, $uibModal, $location, $filter, crearNotaPedidoService, focaModalService,
7 focaSeguimientoService, notaPedidoBusinessService
7 ) { 8 ) {
8 $scope.botonera = [ 9 $scope.botonera = [
9 {texto: 'Vendedor', accion: function() {$scope.seleccionarVendedor();}}, 10 {texto: 'Vendedor', accion: function() {$scope.seleccionarVendedor();}},
10 {texto: 'Cliente', accion: function() {$scope.seleccionarCliente();}}, 11 {texto: 'Cliente', accion: function() {$scope.seleccionarCliente();}},
11 {texto: 'Proveedor', accion: function() {$scope.seleccionarProveedor();}}, 12 {texto: 'Proveedor', accion: function() {$scope.seleccionarProveedor();}},
12 {texto: 'Moneda', accion: function() {$scope.abrirModalMoneda();}}, 13 {texto: 'Moneda', accion: function() {$scope.abrirModalMoneda();}},
13 { 14 {
14 texto: 'Precios y condiciones', 15 texto: 'Precios y condiciones',
15 accion: function() {$scope.abrirModalListaPrecio();}}, 16 accion: function() {$scope.abrirModalListaPrecio();}},
16 {texto: 'Flete', accion: function() {$scope.abrirModalFlete();}}, 17 {texto: 'Flete', accion: function() {$scope.abrirModalFlete();}},
17 {texto: '', accion: function() {}}, 18 {texto: '', accion: function() {}},
18 {texto: '', accion: function() {}} 19 {texto: '', accion: function() {}}
19 ]; 20 ];
20 $scope.datepickerAbierto = false; 21 $scope.datepickerAbierto = false;
21 22
22 $scope.show = false; 23 $scope.show = false;
23 $scope.cargando = true; 24 $scope.cargando = true;
24 $scope.dateOptions = { 25 $scope.dateOptions = {
25 maxDate: new Date(), 26 maxDate: new Date(),
26 minDate: new Date(2010, 0, 1) 27 minDate: new Date(2010, 0, 1)
27 }; 28 };
28 $scope.crearObjetoNotaPedido = function() {
29 $scope.notaPedido = {
30 vendedor: {},
31 cliente: {},
32 proveedor: {},
33 domicilio: {dom: ''},
34 moneda: {},
35 cotizacion: {}
36 };
37 };
38 29
39 //Trabajo con la cotización más reciente, por eso uso siempre la primera '[0]' 30 $scope.notaPedido = {
40 $scope.obtenerMonedaPorDefecto = function() { 31 vendedor: {},
41 crearNotaPedidoService.getCotizacionByIdMoneda(1).then(function(res) { 32 cliente: {},
42 monedaPorDefecto = { 33 proveedor: {},
43 id: res.data[0].ID, 34 domicilio: {dom: ''},
44 detalle: res.data[0].DETALLE, 35 moneda: {},
45 simbolo: res.data[0].SIMBOLO, 36 cotizacion: {}
46 cotizaciones: res.data[0].cotizaciones
47 };
48 addCabecera('Moneda:', monedaPorDefecto.detalle);
49 addCabecera('Fecha cotizacion:',
50 new Date(monedaPorDefecto.cotizaciones[0].FECHA).toLocaleDateString());
51 addCabecera('Cotizacion:', monedaPorDefecto.cotizaciones[0].COTIZACION);
52 $scope.notaPedido.moneda = monedaPorDefecto;
53 $scope.notaPedido.cotizacion.id = monedaPorDefecto.cotizaciones[0].ID;
54 });
55 }; 37 };
56
57 var monedaPorDefecto; 38 var monedaPorDefecto;
58 $scope.crearObjetoNotaPedido(); 39 //Trabajo con la cotización más reciente, por eso uso siempre la primera '[0]'
59 $scope.obtenerMonedaPorDefecto(); 40 crearNotaPedidoService.getCotizacionByIdMoneda(1).then(function(res) {
41 monedaPorDefecto = {
42 id: res.data[0].ID,
43 detalle: res.data[0].DETALLE,
44 simbolo: res.data[0].SIMBOLO,
45 cotizaciones: res.data[0].cotizaciones
46 };
47 addCabecera('Moneda:', monedaPorDefecto.detalle);
48 addCabecera('Fecha cotizacion:',
49 new Date(monedaPorDefecto.cotizaciones[0].FECHA).toLocaleDateString());
50 addCabecera('Cotizacion:', monedaPorDefecto.cotizaciones[0].COTIZACION);
51 $scope.notaPedido.moneda = monedaPorDefecto;
52 $scope.notaPedido.cotizacion = monedaPorDefecto.cotizaciones[0];
53 });
54
60 $scope.cabecera = []; 55 $scope.cabecera = [];
61 $scope.showCabecera = true; 56 $scope.showCabecera = true;
62 57
63 $scope.now = new Date(); 58 $scope.now = new Date();
64 $scope.puntoVenta = Math.round(Math.random() * 10000); 59 $scope.puntoVenta = Math.round(Math.random() * 10000);
65 $scope.comprobante = Math.round(Math.random() * 1000000); 60 $scope.comprobante = Math.round(Math.random() * 1000000);
66 61
67 $scope.articulosTabla = []; 62 $scope.articulosTabla = [];
68 $scope.idLista = undefined; 63 $scope.idLista = undefined;
69 //La pantalla solo se usa para cargar pedidos 64 //La pantalla solo se usa para cargar pedidos
70 //var notaPedidoTemp = crearNotaPedidoService.getNotaPedido(); 65 //var notaPedidoTemp = crearNotaPedidoService.getNotaPedido();
71 66
72 crearNotaPedidoService.getPrecioCondicion().then( 67 crearNotaPedidoService.getPrecioCondicion().then(
73 function(res) { 68 function(res) {
74 $scope.precioCondiciones = res.data; 69 $scope.precioCondiciones = res.data;
75 } 70 }
76 ); 71 );
77 //La pantalla solo se usa para cargar pedidos 72 //La pantalla solo se usa para cargar pedidos
78 // if (notaPedidoTemp !== undefined) { 73 // if (notaPedidoTemp !== undefined) {
79 // notaPedidoTemp.fechaCarga = new Date(notaPedidoTemp.fechaCarga); 74 // notaPedidoTemp.fechaCarga = new Date(notaPedidoTemp.fechaCarga);
80 // $scope.notaPedido = notaPedidoTemp; 75 // $scope.notaPedido = notaPedidoTemp;
81 // $scope.notaPedido.flete = ($scope.notaPedido.flete).toString(); 76 // $scope.notaPedido.flete = ($scope.notaPedido.flete).toString();
82 // $scope.notaPedido.bomba = ($scope.notaPedido.bomba).toString(); 77 // $scope.notaPedido.bomba = ($scope.notaPedido.bomba).toString();
83 // $scope.idLista = $scope.notaPedido.precioCondicion; 78 // $scope.idLista = $scope.notaPedido.precioCondicion;
84 // crearNotaPedidoService 79 // crearNotaPedidoService
85 // .getArticulosByIdNotaPedido($scope.notaPedido.id).then( 80 // .getArticulosByIdNotaPedido($scope.notaPedido.id).then(
86 // function(res) { 81 // function(res) {
87 // $scope.articulosTabla = res.data; 82 // $scope.articulosTabla = res.data;
88 // } 83 // }
89 // ); 84 // );
90 //TODO DOMICILIOS QUE SE CARGAN AL EDITAR NOTA DE PEDIDO 85 //TODO DOMICILIOS QUE SE CARGAN AL EDITAR NOTA DE PEDIDO
91 //(NO REQUERIDO EN ESTA VERSION) 86 //(NO REQUERIDO EN ESTA VERSION)
92 // crearNotaPedidoService.getDomiciliosByIdNotaPedido($scope.notaPedido.id).then( 87 // crearNotaPedidoService.getDomiciliosByIdNotaPedido($scope.notaPedido.id).then(
93 // function(res) { 88 // function(res) {
94 // $scope.notaPedido.domicilio = res.data; 89 // $scope.notaPedido.domicilio = res.data;
95 // } 90 // }
96 // ); 91 // );
97 // } else { 92 // } else {
98 // $scope.notaPedido.fechaCarga = new Date(); 93 // $scope.notaPedido.fechaCarga = new Date();
99 // $scope.notaPedido.bomba = '0'; 94 // $scope.notaPedido.bomba = '0';
100 // $scope.notaPedido.flete = '0'; 95 // $scope.notaPedido.flete = '0';
101 // $scope.idLista = undefined; 96 // $scope.idLista = undefined;
102 // } 97 // }
103 //TO DO - FUNCIONES PARA MULTIPLES DOMICILIOS NO IMPLEMENTADAS EN ESTA DEMO 98 //TO DO - FUNCIONES PARA MULTIPLES DOMICILIOS NO IMPLEMENTADAS EN ESTA DEMO
104 // $scope.addNewDom = function() { 99 // $scope.addNewDom = function() {
105 // $scope.notaPedido.domicilio.push({ 'id': 0 }); 100 // $scope.notaPedido.domicilio.push({ 'id': 0 });
106 // }; 101 // };
107 // $scope.removeNewChoice = function(choice) { 102 // $scope.removeNewChoice = function(choice) {
108 // if ($scope.notaPedido.domicilio.length > 1) { 103 // if ($scope.notaPedido.domicilio.length > 1) {
109 // $scope.notaPedido.domicilio.splice($scope.notaPedido.domicilio.findIndex( 104 // $scope.notaPedido.domicilio.splice($scope.notaPedido.domicilio.findIndex(
110 // function(c) { 105 // function(c) {
111 // return c.$$hashKey === choice.$$hashKey; 106 // return c.$$hashKey === choice.$$hashKey;
112 // } 107 // }
113 // ), 1); 108 // ), 1);
114 // } 109 // }
115 // }; 110 // };
116 111
117 $scope.crearNotaPedido = function() { 112 $scope.crearNotaPedido = function() {
118 if(!$scope.notaPedido.vendedor.codigo) { 113 if(!$scope.notaPedido.vendedor.codigo) {
119 focaModalService.alert('Ingrese Vendedor'); 114 focaModalService.alert('Ingrese Vendedor');
120 return; 115 return;
121 } else if(!$scope.notaPedido.cliente.id) { 116 } else if(!$scope.notaPedido.cliente.cod) {
122 focaModalService.alert('Ingrese Cliente'); 117 focaModalService.alert('Ingrese Cliente');
123 return; 118 return;
124 } else if(!$scope.notaPedido.proveedor.codigo) { 119 } else if(!$scope.notaPedido.proveedor.codigo) {
125 focaModalService.alert('Ingrese Proveedor'); 120 focaModalService.alert('Ingrese Proveedor');
126 return; 121 return;
127 } else if(!$scope.notaPedido.moneda.id) { 122 } else if(!$scope.notaPedido.moneda.id) {
128 focaModalService.alert('Ingrese Moneda'); 123 focaModalService.alert('Ingrese Moneda');
129 return; 124 return;
130 } else if(!$scope.notaPedido.cotizacion.id) { 125 } else if(!$scope.notaPedido.cotizacion.ID) {
131 focaModalService.alert('Ingrese Cotización'); 126 focaModalService.alert('Ingrese Cotización');
132 return; 127 return;
133 } else if(!$scope.plazosPagos) { 128 } else if(!$scope.plazosPagos) {
134 focaModalService.alert('Ingrese Precios y Condiciones'); 129 focaModalService.alert('Ingrese Precios y Condiciones');
135 return; 130 return;
136 } else if(!$scope.notaPedido.flete) { 131 } else if(
132 $scope.notaPedido.flete === undefined || $scope.notaPedido.flete === null)
133 {
137 focaModalService.alert('Ingrese Flete'); 134 focaModalService.alert('Ingrese Flete');
138 return; 135 return;
139 } else if(!$scope.notaPedido.domicilio.id) { 136 } else if(!$scope.notaPedido.domicilio.id) {
140 focaModalService.aler('Ingrese Domicilio'); 137 focaModalService.aler('Ingrese Domicilio');
141 return; 138 return;
142 } else if($scope.articulosTabla.length === 0) { 139 } else if($scope.articulosTabla.length === 0) {
143 focaModalService.alert('Debe cargar almenos un articulo'); 140 focaModalService.alert('Debe cargar al menos un articulo');
144 return; 141 return;
145 } 142 }
146 var date = new Date(); 143 var date = new Date();
147 var notaPedido = { 144 var notaPedido = {
148 id: 0, 145 id: 0,
149 fechaCarga: new Date(date.getTime() - (date.getTimezoneOffset() * 60000)) 146 fechaCarga: new Date(date.getTime() - (date.getTimezoneOffset() * 60000))
150 .toISOString().slice(0, 19).replace('T', ' '), 147 .toISOString().slice(0, 19).replace('T', ' '),
151 idVendedor: $scope.notaPedido.vendedor.codigo, 148 idVendedor: $scope.notaPedido.vendedor.codigo,
152 idCliente: $scope.notaPedido.cliente.id, 149 idCliente: $scope.notaPedido.cliente.cod,
150 nombreCliente: $scope.notaPedido.cliente.nom,
151 cuitCliente: $scope.notaPedido.cliente.cuit,
153 idProveedor: $scope.notaPedido.proveedor.codigo, 152 idProveedor: $scope.notaPedido.proveedor.codigo,
154 idDomicilio: $scope.notaPedido.domicilio.id, 153 idDomicilio: $scope.notaPedido.domicilio.id,
155 idCotizacion: $scope.notaPedido.cotizacion.id, 154 idCotizacion: $scope.notaPedido.cotizacion.ID,
156 flete: parseInt($scope.notaPedido.flete), 155 cotizacion: $scope.notaPedido.cotizacion.COTIZACION,
157 fob: parseInt($scope.notaPedido.fob), 156 flete: $scope.notaPedido.flete,
158 bomba: parseInt($scope.notaPedido.bomba), 157 fob: $scope.notaPedido.fob,
158 bomba: $scope.notaPedido.bomba,
159 kilometros: $scope.notaPedido.kilometros, 159 kilometros: $scope.notaPedido.kilometros,
160 estado: 0,
160 total: $scope.getTotal() 161 total: $scope.getTotal()
161 }; 162 };
162 crearNotaPedidoService.crearNotaPedido(notaPedido).then( 163 crearNotaPedidoService.crearNotaPedido(notaPedido).then(
163 function(data) { 164 function(data) {
164 165 notaPedidoBusinessService.addArticulos($scope.articulosTabla,
165 var articulosNotaPedido = $scope.articulosTabla; 166 data.data.id, $scope.notaPedido.cotizacion.COTIZACION);
166 for(var i = 0; i < articulosNotaPedido.length; i++) { 167 focaSeguimientoService.guardarPosicion('crear nota pedido', '');
167 delete articulosNotaPedido[i].editCantidad;
168 delete articulosNotaPedido[i].editPrecio;
169 articulosNotaPedido[i].idNotaPedido = data.data.id;
170 crearNotaPedidoService
171 .crearArticulosParaNotaPedido(articulosNotaPedido[i]);
172 }
173 var plazos = $scope.plazosPagos; 168 var plazos = $scope.plazosPagos;
174 for(var j = 0; j < plazos.length; j++) { 169 for(var j = 0; j < plazos.length; j++) {
175 var json = { 170 var json = {
176 idPedido: data.data.id, 171 idPedido: data.data.id,
177 dias: plazos[j].dias 172 dias: plazos[j].dias
178 }; 173 };
179 crearNotaPedidoService.crearPlazosParaNotaPedido(json); 174 crearNotaPedidoService.crearPlazosParaNotaPedido(json);
180 } 175 }
176 notaPedidoBusinessService.addEstado(data.data.id,
177 $scope.notaPedido.vendedor.codigo);
178
181 focaModalService.alert('Nota pedido creada'); 179 focaModalService.alert('Nota pedido creada');
182 $scope.obtenerMonedaPorDefecto();
183 $scope.crearObjetoNotaPedido();
184 $scope.cabecera = []; 180 $scope.cabecera = [];
181 addCabecera('Moneda:', $scope.notaPedido.moneda.detalle);
182 addCabecera(
183 'Fecha cotizacion:',
184 $filter('date')($scope.notaPedido.cotizacion.FECHA, 'dd/MM/yyyy')
185 );
186 addCabecera('Cotizacion:', $scope.notaPedido.cotizacion.COTIZACION);
187 $scope.notaPedido.vendedor = {};
188 $scope.notaPedido.cliente = {};
189 $scope.notaPedido.proveedor = {};
190 $scope.notaPedido.domicilio = {};
191 $scope.notaPedido.flete = null;
192 $scope.notaPedido.fob = null;
193 $scope.notaPedido.bomba = null;
194 $scope.notaPedido.kilometros = null;
185 $scope.articulosTabla = []; 195 $scope.articulosTabla = [];
186 } 196 }
187 ); 197 );
188 }; 198 };
189 199
190 $scope.seleccionarArticulo = function() { 200 $scope.seleccionarArticulo = function() {
191 if ($scope.idLista === undefined) { 201 if ($scope.idLista === undefined) {
192 focaModalService.alert( 202 focaModalService.alert(
193 'Primero seleccione una lista de precio y condicion'); 203 'Primero seleccione una lista de precio y condicion');
194 return; 204 return;
195 } 205 }
196 var modalInstance = $uibModal.open( 206 var modalInstance = $uibModal.open(
197 { 207 {
198 ariaLabelledBy: 'Busqueda de Productos', 208 ariaLabelledBy: 'Busqueda de Productos',
199 templateUrl: 'modal-busqueda-productos.html', 209 templateUrl: 'modal-busqueda-productos.html',
200 controller: 'modalBusquedaProductosCtrl', 210 controller: 'modalBusquedaProductosCtrl',
201 resolve: { idLista: function() { return $scope.idLista; } }, 211 resolve: {
212 parametroProducto: {
213 idLista: $scope.idLista,
214 cotizacion: $scope.notaPedido.cotizacion.COTIZACION,
215 simbolo: $scope.notaPedido.moneda.simbolo
216 }
217 },
202 size: 'lg' 218 size: 'lg'
203 } 219 }
204 ); 220 );
205 modalInstance.result.then( 221 modalInstance.result.then(
206 function(producto) { 222 function(producto) {
207 var newArt = 223 var newArt =
208 { 224 {
209 id: 0, 225 id: 0,
210 codigo: producto.codigo, 226 codigo: producto.codigo,
211 sector: producto.sector, 227 sector: producto.sector,
212 sectorCodigo: producto.sector + '-' + producto.codigo, 228 sectorCodigo: producto.sector + '-' + producto.codigo,
213 descripcion: producto.descripcion, 229 descripcion: producto.descripcion,
214 item: $scope.articulosTabla.length + 1, 230 item: $scope.articulosTabla.length + 1,
215 nombre: producto.descripcion, 231 nombre: producto.descripcion,
216 precio: parseFloat(producto.precio.toFixed(2)), 232 precio: parseFloat(producto.precio.toFixed(4)),
217 costoUnitario: producto.costo, 233 costoUnitario: producto.costo,
218 editCantidad: false, 234 editCantidad: false,
219 editPrecio: false 235 editPrecio: false
220 }; 236 };
221 $scope.articuloACargar = newArt; 237 $scope.articuloACargar = newArt;
222 $scope.cargando = false; 238 $scope.cargando = false;
223 }, function() { 239 }, function() {
224 // funcion ejecutada cuando se cancela el modal 240 // funcion ejecutada cuando se cancela el modal
225 } 241 }
226 ); 242 );
227 }; 243 };
228 244
229 $scope.seleccionarVendedor = function() { 245 $scope.seleccionarVendedor = function() {
230 var modalInstance = $uibModal.open( 246 var modalInstance = $uibModal.open(
231 { 247 {
232 ariaLabelledBy: 'Busqueda de Vendedores', 248 ariaLabelledBy: 'Busqueda de Vendedores',
233 templateUrl: 'modal-vendedores.html', 249 templateUrl: 'modal-vendedores.html',
234 controller: 'modalVendedoresCtrl', 250 controller: 'modalVendedoresCtrl',
235 size: 'lg' 251 size: 'lg'
236 } 252 }
237 ); 253 );
238 modalInstance.result.then( 254 modalInstance.result.then(
239 function(vendedor) { 255 function(vendedor) {
240 addCabecera('Vendedor:', vendedor.NomVen); 256 addCabecera('Vendedor:', vendedor.NomVen);
241 $scope.notaPedido.vendedor.codigo = vendedor.CodVen; 257 $scope.notaPedido.vendedor.codigo = vendedor.CodVen;
242 }, function() { 258 }, function() {
243 259
244 } 260 }
245 ); 261 );
246 }; 262 };
247 263
248 $scope.seleccionarProveedor = function() { 264 $scope.seleccionarProveedor = function() {
249 var modalInstance = $uibModal.open( 265 var modalInstance = $uibModal.open(
250 { 266 {
251 ariaLabelledBy: 'Busqueda de Proveedor', 267 ariaLabelledBy: 'Busqueda de Proveedor',
252 templateUrl: 'modal-proveedor.html', 268 templateUrl: 'modal-proveedor.html',
253 controller: 'focaModalProveedorCtrl', 269 controller: 'focaModalProveedorCtrl',
254 size: 'lg' 270 size: 'lg'
255 } 271 }
256 ); 272 );
257 modalInstance.result.then( 273 modalInstance.result.then(
258 function(proveedor) { 274 function(proveedor) {
259 $scope.notaPedido.proveedor.codigo = proveedor.COD; 275 $scope.notaPedido.proveedor.codigo = proveedor.COD;
260 addCabecera('Proveedor:', proveedor.NOM); 276 addCabecera('Proveedor:', proveedor.NOM);
261 }, function() { 277 }, function() {
262 278
263 } 279 }
264 ); 280 );
265 }; 281 };
266 282
267 $scope.seleccionarCliente = function() { 283 $scope.seleccionarCliente = function() {
268 284
269 var modalInstance = $uibModal.open( 285 var modalInstance = $uibModal.open(
270 { 286 {
271 ariaLabelledBy: 'Busqueda de Cliente', 287 ariaLabelledBy: 'Busqueda de Cliente',
272 templateUrl: 'foca-busqueda-cliente-modal.html', 288 templateUrl: 'foca-busqueda-cliente-modal.html',
273 controller: 'focaBusquedaClienteModalController', 289 controller: 'focaBusquedaClienteModalController',
274 size: 'lg' 290 size: 'lg'
275 } 291 }
276 ); 292 );
277 modalInstance.result.then( 293 modalInstance.result.then(
278 function(cliente) { 294 function(cliente) {
279 crearNotaPedidoService.getDomiciliosByIdCliente(cliente.cod).then( 295 $scope.abrirModalDomicilios(cliente);
280 function(data) {
281 if(data.data.length === 0){
282 focaModalService
283 .alert('El cliente no tienen domicilios de entrega')
284 .then(
285 function() {
286 $scope.seleccionarCliente();
287 }
288 );
289 return;
290 }
291 $scope.abrirModalDomicilios(cliente);
292 }
293 );
294 }, function() { 296 }, function() {
295 297
296 } 298 }
297 ); 299 );
298 }; 300 };
299 301
300 $scope.abrirModalDomicilios = function(cliente) { 302 $scope.abrirModalDomicilios = function(cliente) {
301 var modalInstanceDomicilio = $uibModal.open( 303 var modalInstanceDomicilio = $uibModal.open(
302 { 304 {
303 ariaLabelledBy: 'Busqueda de Domicilios', 305 ariaLabelledBy: 'Busqueda de Domicilios',
304 templateUrl: 'modal-domicilio.html', 306 templateUrl: 'modal-domicilio.html',
305 controller: 'focaModalDomicilioController', 307 controller: 'focaModalDomicilioController',
306 resolve: { idCliente: function() { return cliente.cod; }}, 308 resolve: { idCliente: function() { return cliente.cod; }},
307 size: 'lg', 309 size: 'lg',
308 } 310 }
309 ); 311 );
310 modalInstanceDomicilio.result.then( 312 modalInstanceDomicilio.result.then(
311 function(domicilio) { 313 function(domicilio) {
312 $scope.notaPedido.domicilio.id = domicilio.id; 314 $scope.notaPedido.domicilio.id = domicilio.id;
313 $scope.notaPedido.cliente.id = cliente.cod; 315 $scope.notaPedido.cliente = cliente;
316
314 addCabecera('Cliente:', cliente.nom); 317 addCabecera('Cliente:', cliente.nom);
315 addCabecera('Domicilio:', domicilio.dom); 318 addCabecera('Domicilio:', domicilio.dom);
316 }, function() { 319 }, function() {
317 $scope.seleccionarCliente(); 320 $scope.seleccionarCliente();
318 return; 321 return;
319 } 322 }
320 ); 323 );
321 }; 324 };
322 325
323 $scope.mostrarFichaCliente = function() { 326 $scope.mostrarFichaCliente = function() {
324 $uibModal.open( 327 $uibModal.open(
325 { 328 {
326 ariaLabelledBy: 'Datos del Cliente', 329 ariaLabelledBy: 'Datos del Cliente',
327 templateUrl: 'foca-crear-nota-pedido-ficha-cliente.html', 330 templateUrl: 'foca-crear-nota-pedido-ficha-cliente.html',
328 controller: 'focaCrearNotaPedidoFichaClienteController', 331 controller: 'focaCrearNotaPedidoFichaClienteController',
329 size: 'lg' 332 size: 'lg'
330 } 333 }
331 ); 334 );
332 }; 335 };
333 336
334 $scope.getTotal = function() { 337 $scope.getTotal = function() {
335 var total = 0; 338 var total = 0;
336 var arrayTempArticulos = $scope.articulosTabla; 339 var arrayTempArticulos = $scope.articulosTabla;
337 for (var i = 0; i < arrayTempArticulos.length; i++) { 340 for (var i = 0; i < arrayTempArticulos.length; i++) {
338 total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad; 341 total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad;
339 } 342 }
340 return parseFloat(total.toFixed(2)); 343 return parseFloat(total.toFixed(2));
341 }; 344 };
342 345
343 $scope.getSubTotal = function() { 346 $scope.getSubTotal = function() {
344 if($scope.articuloACargar) { 347 if($scope.articuloACargar) {
345 return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad; 348 return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad;
346 } 349 }
347 }; 350 };
348 351
349 $scope.abrirModalListaPrecio = function() { 352 $scope.abrirModalListaPrecio = function() {
350 var modalInstance = $uibModal.open( 353 var modalInstance = $uibModal.open(
351 { 354 {
352 ariaLabelledBy: 'Busqueda de Precio Condición', 355 ariaLabelledBy: 'Busqueda de Precio Condición',
353 templateUrl: 'modal-precio-condicion.html', 356 templateUrl: 'modal-precio-condicion.html',
354 controller: 'focaModalPrecioCondicionController', 357 controller: 'focaModalPrecioCondicionController',
355 size: 'lg' 358 size: 'lg'
356 } 359 }
357 ); 360 );
358 modalInstance.result.then( 361 modalInstance.result.then(
359 function(precioCondicion) { 362 function(precioCondicion) {
360 var cabecera = ''; 363 var cabecera = '';
361 var plazosConcat = ''; 364 var plazosConcat = '';
362 if(!Array.isArray(precioCondicion)) { 365 if(!Array.isArray(precioCondicion)) {
363 $scope.plazosPagos = precioCondicion.plazoPago; 366 $scope.plazosPagos = precioCondicion.plazoPago;
364 $scope.idLista = precioCondicion.idListaPrecio; 367 $scope.idLista = precioCondicion.idListaPrecio;
365 for(var i = 0; i < precioCondicion.plazoPago.length; i++) { 368 for(var i = 0; i < precioCondicion.plazoPago.length; i++) {
366 plazosConcat += precioCondicion.plazoPago[i].dias + ' '; 369 plazosConcat += precioCondicion.plazoPago[i].dias + ' ';
367 } 370 }
368 cabecera = precioCondicion.nombre + ' ' + plazosConcat.trim(); 371 cabecera = precioCondicion.nombre + ' ' + plazosConcat.trim();
369 } else { //Cuando se ingresan los plazos manualmente 372 } else { //Cuando se ingresan los plazos manualmente
370 $scope.idLista = -1; //-1, el modal productos busca todos los productos 373 $scope.idLista = -1; //-1, el modal productos busca todos los productos
371 $scope.plazosPagos = precioCondicion; 374 $scope.plazosPagos = precioCondicion;
372 for(var j = 0; j < precioCondicion.length; j++) { 375 for(var j = 0; j < precioCondicion.length; j++) {
373 plazosConcat += precioCondicion[j].dias + ' '; 376 plazosConcat += precioCondicion[j].dias + ' ';
374 } 377 }
375 cabecera = 'Ingreso manual ' + plazosConcat.trim(); 378 cabecera = 'Ingreso manual ' + plazosConcat.trim();
376 } 379 }
377 $scope.articulosTabla = []; 380 $scope.articulosTabla = [];
378 addCabecera('Precios y condiciones:', cabecera); 381 addCabecera('Precios y condiciones:', cabecera);
379 }, function() { 382 }, function() {
380 383
381 } 384 }
382 ); 385 );
383 }; 386 };
384 387
385 $scope.abrirModalFlete = function() { 388 $scope.abrirModalFlete = function() {
386 var modalInstance = $uibModal.open( 389 var modalInstance = $uibModal.open(
387 { 390 {
388 ariaLabelledBy: 'Busqueda de Flete', 391 ariaLabelledBy: 'Busqueda de Flete',
389 templateUrl: 'modal-flete.html', 392 templateUrl: 'modal-flete.html',
390 controller: 'focaModalFleteController', 393 controller: 'focaModalFleteController',
391 size: 'lg', 394 size: 'lg',
392 resolve: { 395 resolve: {
393 parametrosFlete: 396 parametrosFlete:
394 function() { 397 function() {
395 return { 398 return {
396 flete: $scope.notaPedido.flete, 399 flete: $scope.notaPedido.flete ? '1' :
397 bomba: $scope.notaPedido.bomba, 400 ($scope.notaPedido.fob ? 'FOB' :
401 ($scope.notaPedido.flete === undefined ? null : '0')),
402 bomba: $scope.notaPedido.bomba ? '1' :
403 ($scope.notaPedido.bomba === undefined ? null : '0'),
398 kilometros: $scope.notaPedido.kilometros 404 kilometros: $scope.notaPedido.kilometros
399 }; 405 };
400 } 406 }
401 } 407 }
402 } 408 }
403 ); 409 );
404 modalInstance.result.then( 410 modalInstance.result.then(
405 function(datos) { 411 function(datos) {
406 $scope.notaPedido.flete = datos.flete; 412 $scope.notaPedido.flete = datos.flete;
407 $scope.notaPedido.fob = datos.FOB; 413 $scope.notaPedido.fob = datos.FOB;
408 $scope.notaPedido.bomba = datos.bomba; 414 $scope.notaPedido.bomba = datos.bomba;
409 $scope.notaPedido.kilometros = datos.kilometros; 415 $scope.notaPedido.kilometros = datos.kilometros;
410 416
411 addCabecera('Flete:', datos.flete); 417 addCabecera('Flete:', datos.flete ? 'Si' :
412 if(datos.flete === '1') { 418 ($scope.notaPedido.fob ? 'FOB' : 'No'));
413 addCabecera('Bomba:', datos.bomba); 419 if(datos.flete) {
420 addCabecera('Bomba:', datos.bomba ? 'Si' : 'No');
414 addCabecera('Kilometros:', datos.kilometros); 421 addCabecera('Kilometros:', datos.kilometros);
415 } else { 422 } else {
416 removeCabecera('Bomba:'); 423 removeCabecera('Bomba:');
417 removeCabecera('Kilometros:'); 424 removeCabecera('Kilometros:');
425 $scope.notaPedido.fob = false;
426 $scope.notaPedido.bomba = false;
427 $scope.notaPedido.kilometros = null;
418 } 428 }
419 }, function() { 429 }, function() {
420 430
421 } 431 }
422 ); 432 );
423 }; 433 };
424 434
425 $scope.abrirModalMoneda = function() { 435 $scope.abrirModalMoneda = function() {
426 var modalInstance = $uibModal.open( 436 var modalInstance = $uibModal.open(
427 { 437 {
428 ariaLabelledBy: 'Busqueda de Moneda', 438 ariaLabelledBy: 'Busqueda de Moneda',
429 templateUrl: 'modal-moneda.html', 439 templateUrl: 'modal-moneda.html',
430 controller: 'focaModalMonedaController', 440 controller: 'focaModalMonedaController',
431 size: 'lg' 441 size: 'lg'
432 } 442 }
433 ); 443 );
434 modalInstance.result.then( 444 modalInstance.result.then(
435 function(moneda) { 445 function(moneda) {
436
437 $scope.abrirModalCotizacion(moneda); 446 $scope.abrirModalCotizacion(moneda);
438 }, function() { 447 }, function() {
439 448
440 } 449 }
441 ); 450 );
442 }; 451 };
443 452
444 $scope.abrirModalCotizacion = function(moneda) { 453 $scope.abrirModalCotizacion = function(moneda) {
445 var modalInstance = $uibModal.open( 454 var modalInstance = $uibModal.open(
446 { 455 {
447 ariaLabelledBy: 'Busqueda de Cotización', 456 ariaLabelledBy: 'Busqueda de Cotización',
448 templateUrl: 'modal-cotizacion.html', 457 templateUrl: 'modal-cotizacion.html',
449 controller: 'focaModalCotizacionController', 458 controller: 'focaModalCotizacionController',
450 size: 'lg', 459 size: 'lg',
451 resolve: {idMoneda: function() {return moneda.ID;}} 460 resolve: {idMoneda: function() {return moneda.ID;}}
452 } 461 }
453 ); 462 );
454 modalInstance.result.then( 463 modalInstance.result.then(
455 function(cotizacion) { 464 function(cotizacion) {
465 var articulosTablaTemp = $scope.articulosTabla;
466 for(var i = 0; i < articulosTablaTemp.length; i++) {
467 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio *
468 $scope.notaPedido.cotizacion.COTIZACION;
469 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio /
470 cotizacion.COTIZACION;
471 }
472 $scope.articulosTabla = articulosTablaTemp;
456 $scope.notaPedido.moneda = { 473 $scope.notaPedido.moneda = {
457 id: moneda.ID, 474 id: moneda.ID,
458 detalle: moneda.DETALLE, 475 detalle: moneda.DETALLE,
459 simbolo: moneda.SIMBOLO 476 simbolo: moneda.SIMBOLO
460 }; 477 };
461 $scope.notaPedido.cotizacion = { 478 $scope.notaPedido.cotizacion = {
462 id: cotizacion.ID, 479 ID: cotizacion.ID,
463 cotizacion: cotizacion.COTIZACION 480 COTIZACION: cotizacion.COTIZACION,
481 FECHA: cotizacion.FECHA
464 }; 482 };
465 addCabecera('Moneda:', moneda.DETALLE); 483 addCabecera('Moneda:', moneda.DETALLE);
466 addCabecera( 484 addCabecera(
467 'Fecha cotizacion:', 485 'Fecha cotizacion:',
468 $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy') 486 $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy')
469 ); 487 );
470 addCabecera('Cotizacion:', cotizacion.COTIZACION); 488 addCabecera('Cotizacion:', cotizacion.COTIZACION);
471 }, function() { 489 }, function() {
472 490
473 } 491 }
474 ); 492 );
475 }; 493 };
476 494
477 $scope.agregarATabla = function(key) { 495 $scope.agregarATabla = function(key) {
478 if(key === 13) { 496 if(key === 13) {
479 if($scope.articuloACargar.cantidad === undefined || 497 if($scope.articuloACargar.cantidad === undefined ||
480 $scope.articuloACargar.cantidad === 0 || 498 $scope.articuloACargar.cantidad === 0 ||
481 $scope.articuloACargar.cantidad === null ){ 499 $scope.articuloACargar.cantidad === null ){
482 focaModalService.alert('El valor debe ser al menos 1'); 500 focaModalService.alert('El valor debe ser al menos 1');
483 return; 501 return;
484 } 502 }
485 delete $scope.articuloACargar.sectorCodigo; 503 delete $scope.articuloACargar.sectorCodigo;
486 $scope.articulosTabla.push($scope.articuloACargar); 504 $scope.articulosTabla.push($scope.articuloACargar);
487 $scope.cargando = true; 505 $scope.cargando = true;
488 } 506 }
489 }; 507 };
490 508
491 $scope.quitarArticulo = function(key) { 509 $scope.quitarArticulo = function(key) {
492 $scope.articulosTabla.splice(key, 1); 510 $scope.articulosTabla.splice(key, 1);
493 }; 511 };
494 512
495 $scope.editarArticulo = function(key, articulo) { 513 $scope.editarArticulo = function(key, articulo) {
496 if(key === 13) { 514 if(key === 13) {
497 if(articulo.cantidad === null || articulo.cantidad === 0 || 515 if(articulo.cantidad === null || articulo.cantidad === 0 ||
498 articulo.cantidad === undefined){ 516 articulo.cantidad === undefined){
499 focaModalService.alert('El valor debe ser al menos 1'); 517 focaModalService.alert('El valor debe ser al menos 1');
500 return; 518 return;
501 } 519 }
502 articulo.editCantidad = false; 520 articulo.editCantidad = false;
503 articulo.editPrecio = false; 521 articulo.editPrecio = false;
504 } 522 }
505 }; 523 };
506 524
507 $scope.cambioEdit = function(articulo, propiedad) { 525 $scope.cambioEdit = function(articulo, propiedad) {
508 if(propiedad === 'cantidad') { 526 if(propiedad === 'cantidad') {
509 articulo.editCantidad = true; 527 articulo.editCantidad = true;
510 } else if(propiedad === 'precio') { 528 } else if(propiedad === 'precio') {
511 articulo.editPrecio = true; 529 articulo.editPrecio = true;
512 } 530 }
513 }; 531 };
514 532
515 $scope.limpiarFlete = function() { 533 $scope.limpiarFlete = function() {
516 $scope.notaPedido.fleteNombre = ''; 534 $scope.notaPedido.fleteNombre = '';
517 $scope.notaPedido.chofer = ''; 535 $scope.notaPedido.chofer = '';
518 $scope.notaPedido.vehiculo = ''; 536 $scope.notaPedido.vehiculo = '';
519 $scope.notaPedido.kilometros = ''; 537 $scope.notaPedido.kilometros = '';
520 $scope.notaPedido.costoUnitarioKmFlete = ''; 538 $scope.notaPedido.costoUnitarioKmFlete = '';
521 $scope.choferes = ''; 539 $scope.choferes = '';
522 $scope.vehiculos = ''; 540 $scope.vehiculos = '';
523 }; 541 };
524 542
525 $scope.limpiarPantalla = function() { 543 $scope.limpiarPantalla = function() {
526 $scope.limpiarFlete(); 544 $scope.limpiarFlete();
527 $scope.notaPedido.flete = '0'; 545 $scope.notaPedido.flete = '0';
528 $scope.notaPedido.bomba = '0'; 546 $scope.notaPedido.bomba = '0';
529 $scope.notaPedido.precioCondicion = ''; 547 $scope.notaPedido.precioCondicion = '';
530 $scope.articulosTabla = []; 548 $scope.articulosTabla = [];
531 $scope.notaPedido.vendedor.nombre = ''; 549 $scope.notaPedido.vendedor.nombre = '';
532 $scope.notaPedido.cliente = {nombre: ''}; 550 $scope.notaPedido.cliente = {nombre: ''};
533 $scope.notaPedido.domicilio = {dom: ''}; 551 $scope.notaPedido.domicilio = {dom: ''};
534 $scope.domiciliosCliente = []; 552 $scope.domiciliosCliente = [];
535 }; 553 };
536 554
537 $scope.resetFilter = function() { 555 $scope.resetFilter = function() {
538 $scope.articuloACargar = {}; 556 $scope.articuloACargar = {};
539 $scope.cargando = true; 557 $scope.cargando = true;
540 }; 558 };
541 559
542 $scope.selectFocus = function($event) { 560 $scope.selectFocus = function($event) {
543 $event.target.select(); 561 $event.target.select();
544 }; 562 };
545 563
546 $scope.salir = function() { 564 $scope.salir = function() {
547 $location.path('/'); 565 $location.path('/');
548 }; 566 };
549 567
550 function addCabecera(label, valor) { 568 function addCabecera(label, valor) {
551 var propiedad = $filter('filter')($scope.cabecera, {label: label}, true); 569 var propiedad = $filter('filter')($scope.cabecera, {label: label}, true);
552 if(propiedad.length === 1) { 570 if(propiedad.length === 1) {
553 propiedad[0].valor = valor; 571 propiedad[0].valor = valor;
554 } else { 572 } else {
555 $scope.cabecera.push({label: label, valor: valor}); 573 $scope.cabecera.push({label: label, valor: valor});
556 } 574 }
557 } 575 }
558 576
559 function removeCabecera(label) { 577 function removeCabecera(label) {
560 var propiedad = $filter('filter')($scope.cabecera, {label: label}, true); 578 var propiedad = $filter('filter')($scope.cabecera, {label: label}, true);
561 if(propiedad.length === 1){ 579 if(propiedad.length === 1){
1 angular.module('focaCrearNotaPedido') 1 angular.module('focaCrearNotaPedido')
2 .service('crearNotaPedidoService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) { 2 .service('crearNotaPedidoService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) {
3 var route = API_ENDPOINT.URL; 3 var route = API_ENDPOINT.URL;
4 return { 4 return {
5 crearNotaPedido: function(notaPedido) { 5 crearNotaPedido: function(notaPedido) {
6 return $http.post(route + '/nota-pedido', {notaPedido: notaPedido}); 6 return $http.post(route + '/nota-pedido', {notaPedido: notaPedido});
7 }, 7 },
8 obtenerNotaPedido: function() { 8 obtenerNotaPedido: function() {
9 return $http.get(route +'/nota-pedido'); 9 return $http.get(route +'/nota-pedido');
10 }, 10 },
11 setNotaPedido: function(notaPedido) { 11 setNotaPedido: function(notaPedido) {
12 this.notaPedido = notaPedido; 12 this.notaPedido = notaPedido;
13 }, 13 },
14 clearNotaPedido: function() { 14 clearNotaPedido: function() {
15 this.notaPedido = undefined; 15 this.notaPedido = undefined;
16 }, 16 },
17 getNotaPedido: function() { 17 getNotaPedido: function() {
18 return this.notaPedido; 18 return this.notaPedido;
19 }, 19 },
20 getArticulosByIdNotaPedido: function(id) { 20 getArticulosByIdNotaPedido: function(id) {
21 return $http.get(route+'/articulos/nota-pedido/'+id); 21 return $http.get(route+'/articulos/nota-pedido/'+id);
22 }, 22 },
23 crearArticulosParaNotaPedido: function(articuloNotaPedido) { 23 crearArticulosParaNotaPedido: function(articuloNotaPedido) {
24 return $http.post(route + '/articulos/nota-pedido', 24 return $http.post(route + '/articulos/nota-pedido',
25 {articuloNotaPedido: articuloNotaPedido}); 25 {articuloNotaPedido: articuloNotaPedido});
26 }, 26 },
27 getDomiciliosByIdNotaPedido: function(id) { 27 getDomiciliosByIdNotaPedido: function(id) {
28 return $http.get(route +'/nota-pedido/'+id+'/domicilios'); 28 return $http.get(route +'/nota-pedido/'+id+'/domicilios');
29 }, 29 },
30 getDomiciliosByIdCliente: function(id) { 30 getDomiciliosByIdCliente: function(id) {
31 var idTipoEntrega = 2;//Solo traigo los domicilios que tienen tipo 2 (tipo entrega) 31 var idTipoEntrega = 2;//Solo traigo los domicilios que tienen tipo 2 (tipo entrega)
32 return $http.get(route + '/domicilio/tipo/' + idTipoEntrega + '/cliente/' + id ); 32 return $http.get(route + '/domicilio/tipo/' + idTipoEntrega + '/cliente/' + id );
33 }, 33 },
34 getPrecioCondicion: function() { 34 getPrecioCondicion: function() {
35 return $http.get(route + '/precio-condicion'); 35 return $http.get(route + '/precio-condicion');
36 }, 36 },
37 getPrecioCondicionById: function(id) { 37 getPrecioCondicionById: function(id) {
38 return $http.get(route + '/precio-condicion/' + id); 38 return $http.get(route + '/precio-condicion/' + id);
39 }, 39 },
40 getPlazoPagoByPrecioCondicion: function(id) { 40 getPlazoPagoByPrecioCondicion: function(id) {
41 return $http.get(route + '/plazo-pago/precio-condicion/'+ id); 41 return $http.get(route + '/plazo-pago/precio-condicion/'+ id);
42 }, 42 },
43 crearFlete: function(flete) { 43 crearFlete: function(flete) {
44 return $http.post(route + '/flete', {flete : flete}); 44 return $http.post(route + '/flete', {flete : flete});
45 }, 45 },
46 crearPlazosParaNotaPedido: function(plazos) { 46 crearPlazosParaNotaPedido: function(plazos) {
47 return $http.post(route + '/plazo-pago/nota-pedido', plazos); 47 return $http.post(route + '/plazo-pago/nota-pedido', plazos);
48 }, 48 },
49 getCotizacionByIdMoneda: function(id) { 49 getCotizacionByIdMoneda: function(id) {
50 return $http.get(route + '/moneda/' + id); 50 return $http.get(route + '/moneda/' + id);
51 },
52 crearEstadoParaNotaPedido: function(estado) {
53 return $http.post(route + '/estado', {estado: estado});
51 } 54 }
52 }; 55 };
53 }]); 56 }]);
54 57
src/views/nota-pedido.html
1 <div class="crear-nota-pedido"> 1 <div class="crear-nota-pedido">
2 <form name="formCrearNota" ng-submit="crearNotaPedido()" class="mb-0"> 2 <form name="formCrearNota" ng-submit="crearNotaPedido()" class="mb-0">
3 <div class="row"> 3 <div class="row">
4 <div class="col-md-10 offset-md-1 col-lg-8 offset-lg-2"> 4 <div class="col-md-10 offset-md-1 col-lg-8 offset-lg-2">
5 <div class="row p-1 panel-informativo"> 5 <div class="row p-1 panel-informativo">
6 <div class="col-12"> 6 <div class="col-12">
7 <div class="row"> 7 <div class="row">
8 <div class="col-12 col-sm-4 nota-pedido"> 8 <div class="col-12 col-sm-4 nota-pedido">
9 <h5>NOTA DE PEDIDO</h5> 9 <h5>NOTA DE PEDIDO</h5>
10 </div> 10 </div>
11 <div class="col-5 col-sm-4 numero-pedido" 11 <div class="col-5 col-sm-4 numero-pedido"
12 >Nº {{puntoVenta}}-{{comprobante}} 12 >Nº {{puntoVenta}}-{{comprobante}}
13 </div> 13 </div>
14 <div class="col-7 col-sm-4 text-right"> 14 <div class="col-7 col-sm-4 text-right">
15 Fecha: 15 Fecha:
16 <span 16 <span
17 ng-show="!datepickerAbierto" 17 ng-show="!datepickerAbierto"
18 ng-bind="now | date:'dd/MM/yyyy HH:mm'" 18 ng-bind="now | date:'dd/MM/yyyy HH:mm'"
19 ng-click="datepickerAbierto = true" 19 ng-click="datepickerAbierto = true"
20 > 20 >
21 </span> 21 </span>
22 <input 22 <input
23 ng-show="datepickerAbierto" 23 ng-show="datepickerAbierto"
24 type="date" 24 type="date"
25 ng-model="now" 25 ng-model="now"
26 ng-change="datepickerAbierto = false" 26 ng-change="datepickerAbierto = false"
27 ng-blur="datepickerAbierto = false" 27 ng-blur="datepickerAbierto = false"
28 class="form-control form-control-sm col-8 float-right" 28 class="form-control form-control-sm col-8 float-right"
29 foca-focus="datepickerAbierto" 29 foca-focus="datepickerAbierto"
30 hasta-hoy 30 hasta-hoy
31 /> 31 />
32 </div> 32 </div>
33 </div> 33 </div>
34 <div class="row"> 34 <div class="row">
35 <div class="col-auto" ng-repeat="cab in cabecera" ng-show="showCabecera"> 35 <div class="col-auto" ng-repeat="cab in cabecera" ng-show="showCabecera">
36 <span class="label" ng-bind="cab.label"></span> 36 <span class="label" ng-bind="cab.label"></span>
37 <span class="valor" ng-bind="cab.valor"></span> 37 <span class="valor" ng-bind="cab.valor"></span>
38 </div> 38 </div>
39 <a 39 <a
40 class="btn col-12 btn-secondary d-sm-none" 40 class="btn col-12 btn-secondary d-sm-none"
41 ng-show="cabecera.length > 0" 41 ng-show="cabecera.length > 0"
42 ng-click="showCabecera = !showCabecera" 42 ng-click="showCabecera = !showCabecera"
43 > 43 >
44 <i 44 <i
45 class="fa fa-chevron-down" 45 class="fa fa-chevron-down"
46 ng-hide="showCabecera" 46 ng-hide="showCabecera"
47 aria-hidden="true" 47 aria-hidden="true"
48 > 48 >
49 </i> 49 </i>
50 <i 50 <i
51 class="fa fa-chevron-up" 51 class="fa fa-chevron-up"
52 ng-show="showCabecera" 52 ng-show="showCabecera"
53 aria-hidden="true"> 53 aria-hidden="true">
54 </i> 54 </i>
55 </a> 55 </a>
56 </div> 56 </div>
57 </div> 57 </div>
58 </div> 58 </div>
59 <div class="row p-1 botonera-secundaria"> 59 <div class="row p-1 botonera-secundaria">
60 <div class="col-12"> 60 <div class="col-12">
61 <div class="row"> 61 <div class="row">
62 <div class="col-6 col-sm-3 px-0 py-0" ng-repeat="boton in botonera"> 62 <div class="col-6 col-sm-3 px-0 py-0" ng-repeat="boton in botonera">
63 <button 63 <button
64 type="button" 64 type="button"
65 class="btn btn-default btn-block btn-xs text-left py-2" 65 class="btn btn-default btn-block btn-xs text-left py-2"
66 ng-click="boton.accion()" 66 ng-click="boton.accion()"
67 ng-class="{'d-none d-sm-block': boton.texto == ''}" 67 ng-class="{'d-none d-sm-block': boton.texto == ''}"
68 > 68 >
69 <i 69 <i
70 class="fa fa-arrow-circle-right" 70 class="fa fa-arrow-circle-right"
71 ng-show="boton.texto != ''" 71 ng-show="boton.texto != ''"
72 ></i> 72 ></i>
73 &nbsp; 73 &nbsp;
74 {{boton.texto}} 74 {{boton.texto}}
75 </button> 75 </button>
76 </div> 76 </div>
77 </div> 77 </div>
78 </div> 78 </div>
79 </div> 79 </div>
80 </div> 80 </div>
81 </div> 81 </div>
82 </form> 82 </form>
83 <div class="row"> 83 <div class="row">
84 <div class="col-12 col-md-10 col-lg-8 offset-md-1 offset-lg-2"> 84 <div class="col-12 col-md-10 col-lg-8 offset-md-1 offset-lg-2">
85 <!-- PC --> 85 <!-- PC -->
86 <div class="row grilla-articulo align-items-end d-none d-sm-flex"> 86 <div class="row grilla-articulo align-items-end d-none d-sm-flex">
87 <table class="table tabla-articulo table-striped table-sm table-dark"> 87 <table class="table tabla-articulo table-striped table-sm table-dark">
88 <thead> 88 <thead>
89 <tr class="d-flex"> 89 <tr class="d-flex">
90 <th class="">#</th> 90 <th class="">#</th>
91 <th class="col">Código</th> 91 <th class="col">Código</th>
92 <th class="col-4">Descripción</th> 92 <th class="col-4">Descripción</th>
93 <th class="col text-right">Cantidad</th> 93 <th class="col text-right">Cantidad</th>
94 <th class="col text-right">Precio Unitario</th> 94 <th class="col text-right">Precio Unitario</th>
95 <th class="col text-right">SubTotal</th> 95 <th class="col text-right">SubTotal</th>
96 <th class="text-right"> 96 <th class="text-right">
97 <button 97 <button
98 class="btn btn-outline-secondary selectable" 98 class="btn btn-outline-secondary selectable"
99 ng-click="show = !show; masMenos()" 99 ng-click="show = !show; masMenos()"
100 > 100 >
101 <i 101 <i
102 class="fa fa-chevron-down" 102 class="fa fa-chevron-down"
103 ng-show="show" 103 ng-show="show"
104 aria-hidden="true" 104 aria-hidden="true"
105 > 105 >
106 </i> 106 </i>
107 <i 107 <i
108 class="fa fa-chevron-up" 108 class="fa fa-chevron-up"
109 ng-hide="show" 109 ng-hide="show"
110 aria-hidden="true"> 110 aria-hidden="true">
111 </i> 111 </i>
112 </button> 112 </button>
113 </th> 113 </th>
114 </tr> 114 </tr>
115 </thead> 115 </thead>
116 <tbody class="tabla-articulo-body"> 116 <tbody class="tabla-articulo-body">
117 <tr 117 <tr
118 ng-repeat="(key, articulo) in articulosTabla" 118 ng-repeat="(key, articulo) in articulosTabla"
119 ng-show="show || key == (articulosTabla.length - 1)" 119 ng-show="show || key == (articulosTabla.length - 1)"
120 class="d-flex" 120 class="d-flex"
121 > 121 >
122 <td ng-bind="key + 1"></td> 122 <td ng-bind="key + 1"></td>
123 <td 123 <td
124 class="col" 124 class="col"
125 ng-bind="articulo.sector + '-' + articulo.codigo" 125 ng-bind="articulo.sector + '-' + articulo.codigo"
126 ></td> 126 ></td>
127 <td 127 <td
128 class="col-4" 128 class="col-4"
129 ng-bind="articulo.descripcion" 129 ng-bind="articulo.descripcion"
130 ></td> 130 ></td>
131 <td class="col text-right"> 131 <td class="col text-right">
132 <input 132 <input
133 ng-show="articulo.editCantidad" 133 ng-show="articulo.editCantidad"
134 ng-model="articulo.cantidad" 134 ng-model="articulo.cantidad"
135 class="form-control" 135 class="form-control"
136 type="number" 136 type="number"
137 min="1" 137 min="1"
138 foca-focus="articulo.editCantidad" 138 foca-focus="articulo.editCantidad"
139 ng-keypress="editarArticulo($event.keyCode, articulo)" 139 ng-keypress="editarArticulo($event.keyCode, articulo)"
140 ng-focus="selectFocus($event)" 140 ng-focus="selectFocus($event)"
141 > 141 >
142 <i 142 <i
143 class="selectable" 143 class="selectable"
144 ng-click="cambioEdit(articulo, 'cantidad')" 144 ng-click="cambioEdit(articulo, 'cantidad')"
145 ng-hide="articulo.editCantidad" 145 ng-hide="articulo.editCantidad"
146 ng-bind="articulo.cantidad"> 146 ng-bind="articulo.cantidad">
147 </i> 147 </i>
148 </td> 148 </td>
149 <td class="col text-right"> 149 <td class="col text-right">
150 <input 150 <input
151 ng-show="articulo.editPrecio" 151 ng-show="articulo.editPrecio"
152 ng-model="articulo.precio" 152 ng-model="articulo.precio"
153 class="form-control" 153 class="form-control"
154 type="number" 154 type="number"
155 min="1" 155 min="1"
156 step="0.01" 156 step="0.0001"
157 foca-focus="articulo.editPrecio" 157 foca-focus="articulo.editPrecio"
158 ng-keypress="editarArticulo($event.keyCode, articulo)" 158 ng-keypress="editarArticulo($event.keyCode, articulo)"
159 ng-focus="selectFocus($event)" 159 ng-focus="selectFocus($event)"
160 > 160 >
161 <i 161 <i
162 class="selectable" 162 class="selectable"
163 ng-click="idLista == -1 && cambioEdit(articulo, 'precio')" 163 ng-click="idLista == -1 && cambioEdit(articulo, 'precio')"
164 ng-hide="articulo.editPrecio" 164 ng-hide="articulo.editPrecio"
165 ng-bind="articulo.precio"> 165 ng-bind="articulo.precio | currency: notaPedido.moneda.simbolo : 4">
166 </i> 166 </i>
167 </td> 167 </td>
168 <td 168 <td
169 class="col text-right" 169 class="col text-right"
170 ng-bind="(articulo.precio * articulo.cantidad) | currency: '$'"> 170 ng-bind="(articulo.precio * articulo.cantidad) | currency: notaPedido.moneda.simbolo">
171 </td> 171 </td>
172 <td class="text-center"> 172 <td class="text-center">
173 <button 173 <button
174 class="btn btn-outline-secondary" 174 class="btn btn-outline-secondary"
175 ng-click="quitarArticulo(key)" 175 ng-click="quitarArticulo(key)"
176 > 176 >
177 <i class="fa fa-trash"></i> 177 <i class="fa fa-trash"></i>
178 </button> 178 </button>
179 </td> 179 </td>
180 </tr> 180 </tr>
181 </tbody> 181 </tbody>
182 <tfoot> 182 <tfoot>
183 <tr ng-show="!cargando" class="d-flex"> 183 <tr ng-show="!cargando" class="d-flex">
184 <td 184 <td
185 class="align-middle" 185 class="align-middle"
186 ng-bind="articulosTabla.length + 1" 186 ng-bind="articulosTabla.length + 1"
187 ></td> 187 ></td>
188 <td class="col"> 188 <td class="col">
189 <input 189 <input
190 class="form-control" 190 class="form-control"
191 ng-model="articuloACargar.sectorCodigo" 191 ng-model="articuloACargar.sectorCodigo"
192 readonly 192 readonly
193 > 193 >
194 </td> 194 </td>
195 <td class="col-4 tabla-articulo-descripcion"> 195 <td class="col-4 tabla-articulo-descripcion">
196 <input 196 <input
197 class="form-control" 197 class="form-control"
198 ng-model="articuloACargar.descripcion" 198 ng-model="articuloACargar.descripcion"
199 readonly 199 readonly
200 > 200 >
201 </td> 201 </td>
202 <td class="col text-right"> 202 <td class="col text-right">
203 <input 203 <input
204 class="form-control" 204 class="form-control"
205 type="number" 205 type="number"
206 min="1" 206 min="1"
207 ng-model="articuloACargar.cantidad" 207 ng-model="articuloACargar.cantidad"
208 foca-focus="!cargando" 208 foca-focus="!cargando"
209 esc-key="resetFilter()" 209 esc-key="resetFilter()"
210 ng-keypress="agregarATabla($event.keyCode)" 210 ng-keypress="agregarATabla($event.keyCode)"
211 > 211 >
212 </td> 212 </td>
213 <td class="col text-right"> 213 <td class="col text-right">
214 <input 214 <input
215 class="form-control" 215 class="form-control"
216 ng-value="articuloACargar.precio | currency: '$'" 216 ng-value="articuloACargar.precio | currency: notaPedido.moneda.simbolo : 4"
217 ng-show="idLista != -1" 217 ng-show="idLista != -1"
218 readonly 218 readonly
219 > 219 >
220 <input 220 <input
221 class="form-control" 221 class="form-control"
222 type="number" 222 type="number"
223 step="0.01" 223 step="0.0001"
224 ng-model="articuloACargar.precio" 224 ng-model="articuloACargar.precio"
225 esc-key="resetFilter()" 225 esc-key="resetFilter()"
226 ng-keypress="agregarATabla($event.keyCode)" 226 ng-keypress="agregarATabla($event.keyCode)"
227 ng-show="idLista == -1" 227 ng-show="idLista == -1"
228 > 228 >
229 </td> 229 </td>
230 <td class="col text-right"> 230 <td class="col text-right">
231 <input 231 <input
232 class="form-control" 232 class="form-control"
233 ng-value="getSubTotal() | currency: '$'" 233 ng-value="getSubTotal() | currency: notaPedido.moneda.simbolo"
234 readonly 234 readonly
235 ></td> 235 ></td>
236 <td class="text-center align-middle"> 236 <td class="text-center align-middle">
237 <button 237 <button
238 class="btn btn-outline-secondary" 238 class="btn btn-outline-secondary"
239 ng-click="agregarATabla(13)" 239 ng-click="agregarATabla(13)"
240 > 240 >
241 <i class="fa fa-save"></i> 241 <i class="fa fa-save"></i>
242 </button> 242 </button>
243 </td> 243 </td>
244 </tr> 244 </tr>
245 <tr ng-show="cargando" class="d-flex"> 245 <tr ng-show="cargando" class="d-flex">
246 <td colspan="7" class="col-12"> 246 <td colspan="7" class="col-12">
247 <input 247 <input
248 placeholder="Seleccione Articulo" 248 placeholder="Seleccione Articulo"
249 class="form-control form-control-sm" 249 class="form-control form-control-sm"
250 readonly 250 readonly
251 ng-click="seleccionarArticulo()" 251 ng-click="seleccionarArticulo()"
252 /> 252 />
253 </td> 253 </td>
254 </tr> 254 </tr>
255 <tr class="d-flex"> 255 <tr class="d-flex">
256 <td colspan="4" class="no-border-top"> 256 <td colspan="4" class="no-border-top">
257 <strong>Cantidad Items:</strong> 257 <strong>Items:</strong>
258 <a ng-bind="articulosTabla.length"></a> 258 <a ng-bind="articulosTabla.length"></a>
259 </td> 259 </td>
260 <td class="text-right ml-auto table-celda-total no-border-top"> 260 <td class="text-right ml-auto table-celda-total no-border-top">
261 <h3>Total:</h3> 261 <h3>Total:</h3>
262 </td> 262 </td>
263 <td class="table-celda-total text-right no-border-top" colspan="1"> 263 <td class="table-celda-total text-right no-border-top" colspan="1">
264 <h3>{{getTotal() | currency: '$'}}</h3> 264 <h3>{{getTotal() | currency: notaPedido.moneda.simbolo}}</h3>
265 </td> 265 </td>
266 <td class="text-right no-border-top"> 266 <td class="text-right no-border-top">
267 <button 267 <button
268 type="button" 268 type="button"
269 class="btn btn-default btn-sm" 269 class="btn btn-default btn-sm"
270 > 270 >
271 Totales 271 Totales
272 </button> 272 </button>
273 </td> 273 </td>
274 </tr> 274 </tr>
275 </tfoot> 275 </tfoot>
276 </table> 276 </table>
277 </div> 277 </div>
278 278
279 <!-- MOBILE --> 279 <!-- MOBILE -->
280 <div class="row d-sm-none"> 280 <div class="row d-sm-none">
281 <table class="table table-sm table-striped table-dark margin-bottom-mobile"> 281 <table class="table table-sm table-striped table-dark margin-bottom-mobile">
282 <thead> 282 <thead>
283 <tr class="d-flex"> 283 <tr class="d-flex">
284 <th class="">#</th> 284 <th class="">#</th>
285 <th class="col px-0"> 285 <th class="col px-0">
286 <div class="d-flex"> 286 <div class="d-flex">
287 <div class="col-4 px-1">Código</div> 287 <div class="col-4 px-1">Código</div>
288 <div class="col-8 px-1">Descripción</div> 288 <div class="col-8 px-1">Descripción</div>
289 </div> 289 </div>
290 <div class="d-flex"> 290 <div class="d-flex">
291 <div class="col-3 px-1">Cantidad</div> 291 <div class="col-3 px-1">Cantidad</div>
292 <div class="col px-1 text-right">P. Uni.</div> 292 <div class="col px-1 text-right">P. Uni.</div>
293 <div class="col px-1 text-right">Subtotal</div> 293 <div class="col px-1 text-right">Subtotal</div>
294 </div> 294 </div>
295 </th> 295 </th>
296 <th class="text-center tamaño-boton"> 296 <th class="text-center tamaño-boton">
297 &nbsp; 297 &nbsp;
298 </th> 298 </th>
299 </tr> 299 </tr>
300 </thead> 300 </thead>
301 <tbody> 301 <tbody>
302 <tr 302 <tr
303 ng-repeat="(key, articulo) in articulosTabla" 303 ng-repeat="(key, articulo) in articulosTabla"
304 ng-show="show || key == articulosTabla.length - 1" 304 ng-show="show || key == articulosTabla.length - 1"
305 > 305 >
306 <td class="w-100 align-middle d-flex p-0"> 306 <td class="w-100 align-middle d-flex p-0">
307 <div class="align-middle p-1"> 307 <div class="align-middle p-1">
308 <span ng-bind="key+1" class="align-middle"></span> 308 <span ng-bind="key+1" class="align-middle"></span>
309 </div> 309 </div>
310 <div class="col px-0"> 310 <div class="col px-0">
311 <div class="d-flex"> 311 <div class="d-flex">
312 <div class="col-4 px-1"> 312 <div class="col-4 px-1">
313 <span 313 <span
314 ng-bind="articulo.sector + '-' + articulo.codigo" 314 ng-bind="articulo.sector + '-' + articulo.codigo"
315 ></span> 315 ></span>
316 </div> 316 </div>
317 <div class="col-8 px-1"> 317 <div class="col-8 px-1">
318 <span ng-bind="articulo.descripcion"></span> 318 <span ng-bind="articulo.descripcion"></span>
319 </div> 319 </div>
320 </div> 320 </div>
321 <div class="d-flex"> 321 <div class="d-flex">
322 <div class="col-3 px-1"> 322 <div class="col-3 px-1">
323 <span ng-bind="'x' + articulo.cantidad"></span> 323 <span ng-bind="'x' + articulo.cantidad"></span>
324 </div> 324 </div>
325 <div class="col-3 px-1 text-right"> 325 <div class="col-3 px-1 text-right">
326 <span ng-bind="articulo.precio | currency: '$'"></span> 326 <span ng-bind="articulo.precio | currency: notaPedido.moneda.simbolo : 4"></span>
327 </div> 327 </div>
328 <div class="col px-1 text-right"> 328 <div class="col px-1 text-right">
329 <span 329 <span
330 ng-bind="(articulo.precio * articulo.cantidad) | currency: '$'" 330 ng-bind="(articulo.precio * articulo.cantidad) | currency: notaPedido.moneda.simbolo"
331 > 331 >
332 </span> 332 </span>
333 </div> 333 </div>
334 </div> 334 </div>
335 </div> 335 </div>
336 <div class="align-middle p-1"> 336 <div class="align-middle p-1">
337 <button 337 <button
338 class="btn btn-outline-secondary" 338 class="btn btn-outline-secondary"
339 ng-click="quitarArticulo(key)" 339 ng-click="quitarArticulo(key)"
340 > 340 >
341 <i class="fa fa-trash"></i> 341 <i class="fa fa-trash"></i>
342 </button> 342 </button>
343 </div> 343 </div>
344 </td> 344 </td>
345 </tr> 345 </tr>
346 </tbody> 346 </tbody>
347 <tfoot> 347 <tfoot>
348 <!-- CARGANDO ITEM --> 348 <!-- CARGANDO ITEM -->
349 <tr ng-show="!cargando" class="d-flex"> 349 <tr ng-show="!cargando" class="d-flex">
350 <td 350 <td
351 class="align-middle p-1" 351 class="align-middle p-1"
352 ng-bind="articulosTabla.length + 1" 352 ng-bind="articulosTabla.length + 1"
353 ></td> 353 ></td>
354 <td class="col p-0"> 354 <td class="col p-0">
355 <div class="d-flex"> 355 <div class="d-flex">
356 <div class="col-4 px-1"> 356 <div class="col-4 px-1">
357 <span 357 <span
358 ng-bind="articuloACargar.sectorCodigo" 358 ng-bind="articuloACargar.sectorCodigo"
359 ></span> 359 ></span>
360 </div> 360 </div>
361 <div class="col-8 px-1"> 361 <div class="col-8 px-1">
362 <span ng-bind="articuloACargar.descripcion"></span> 362 <span ng-bind="articuloACargar.descripcion"></span>
363 </div> 363 </div>
364 </div> 364 </div>
365 <div class="d-flex"> 365 <div class="d-flex">
366 <div class="col-3 px-1 m-1"> 366 <div class="col-3 px-1 m-1">
367 <input 367 <input
368 class="form-control p-1" 368 class="form-control p-1"
369 type="number" 369 type="number"
370 min="1" 370 min="1"
371 ng-model="articuloACargar.cantidad" 371 ng-model="articuloACargar.cantidad"
372 foca-focus="!cargando" 372 foca-focus="!cargando"
373 ng-keypress="agregarATabla($event.keyCode)" 373 ng-keypress="agregarATabla($event.keyCode)"
374 style="height: auto; line-height: 1.1em" 374 style="height: auto; line-height: 1.1em"
375 > 375 >
376 </div> 376 </div>
377 <div class="col-3 px-1 text-right"> 377 <div class="col-3 px-1 text-right">
378 <span ng-bind="articuloACargar.precio | currency: '$'"></span> 378 <span ng-bind="articuloACargar.precio | currency: notaPedido.moneda.simbolo : 4"></span>
379 </div> 379 </div>
380 <div class="col px-1 text-right"> 380 <div class="col px-1 text-right">
381 <span 381 <span
382 ng-bind="getSubTotal() | currency: '$'" 382 ng-bind="getSubTotal() | currency: notaPedido.moneda.simbolo"
383 > 383 >
384 </span> 384 </span>
385 </div> 385 </div>
386 </div> 386 </div>
387 </td> 387 </td>
388 <td class="text-center align-middle"> 388 <td class="text-center align-middle">
389 <button 389 <button
390 class="btn btn-outline-secondary" 390 class="btn btn-outline-secondary"
391 ng-click="agregarATabla(13)" 391 ng-click="agregarATabla(13)"
392 > 392 >
393 <i class="fa fa-save"></i> 393 <i class="fa fa-save"></i>
394 </button> 394 </button>
395 </td> 395 </td>
396 </tr> 396 </tr>
397 <!-- SELECCIONAR PRODUCTO --> 397 <!-- SELECCIONAR PRODUCTO -->
398 <tr ng-show="cargando" class="d-flex"> 398 <tr ng-show="cargando" class="d-flex">
399 <td class="col-12"> 399 <td class="col-12">
400 <input 400 <input
401 placeholder="Seleccione Articulo" 401 placeholder="Seleccione Articulo"
402 class="form-control form-control-sm" 402 class="form-control form-control-sm"
403 readonly 403 readonly
404 ng-click="seleccionarArticulo()" 404 ng-click="seleccionarArticulo()"
405 /> 405 />
406 </td> 406 </td>
407 </tr> 407 </tr>
408 <!-- TOOGLE EXPANDIR --> 408 <!-- TOOGLE EXPANDIR -->
409 <tr> 409 <tr>
410 <td class="col"> 410 <td class="col">
411 <button 411 <button
412 class="btn btn-outline-secondary selectable w-100" 412 class="btn btn-outline-secondary selectable w-100"
413 ng-click="show = !show; masMenos()" 413 ng-click="show = !show; masMenos()"
414 ng-show="articulosTabla.length > 0" 414 ng-show="articulosTabla.length > 0"
415 > 415 >
416 <i 416 <i
417 class="fa fa-chevron-down" 417 class="fa fa-chevron-down"
418 ng-hide="show" 418 ng-hide="show"
419 aria-hidden="true" 419 aria-hidden="true"
420 > 420 >
421 </i> 421 </i>
422 <i 422 <i
423 class="fa fa-chevron-up" 423 class="fa fa-chevron-up"
424 ng-show="show" 424 ng-show="show"
425 aria-hidden="true"> 425 aria-hidden="true">
426 </i> 426 </i>
427 </button> 427 </button>
428 </td> 428 </td>
429 </tr> 429 </tr>
430 <!-- FOOTER --> 430 <!-- FOOTER -->
431 <tr class="d-flex"> 431 <tr class="d-flex">
432 <td class="align-middle no-border-top" colspan="2"> 432 <td class="align-middle no-border-top" colspan="2">
433 <strong>Cantidad Items:</strong> 433 <strong>Cantidad Items:</strong>
434 <a ng-bind="articulosTabla.length"></a> 434 <a ng-bind="articulosTabla.length"></a>
435 </td> 435 </td>
436 <td class="text-right ml-auto table-celda-total no-border-top"> 436 <td class="text-right ml-auto table-celda-total no-border-top">
437 <h3>Total:</h3> 437 <h3>Total:</h3>
438 </td> 438 </td>
439 <td class="table-celda-total text-right no-border-top"> 439 <td class="table-celda-total text-right no-border-top">
440 <h3>{{getTotal() | currency: '$'}}</h3> 440 <h3>{{getTotal() | currency: notaPedido.moneda.simbolo}}</h3>
441 </td> 441 </td>
442 </tr> 442 </tr>
443 </tfoot> 443 </tfoot>
444 </table> 444 </table>
445 </div> 445 </div>
446 </div> 446 </div>
447 <div class="col-auto my-2 col-lg-2 botonera-lateral d-none d-md-block"> 447 <div class="col-auto my-2 col-lg-2 botonera-lateral d-none d-md-block">
448 <div class="row align-items-end"> 448 <div class="row align-items-end">
449 <div class="col-12"> 449 <div class="col-12">
450 <button 450 <button
451 ng-click="crearNotaPedido()" 451 ng-click="crearNotaPedido()"
452 type="submit" 452 type="submit"
453 title="Crear nota pedido" 453 title="Crear nota pedido"
454 class="btn btn-default btn-block mb-2"> 454 class="btn btn-default btn-block mb-2">
455 Guardar 455 Guardar
456 </button> 456 </button>
457 <button 457 <button
458 ng-click="salir()" 458 ng-click="salir()"
459 type="button" 459 type="button"
460 title="Salir" 460 title="Salir"
461 class="btn btn-default btn-block"> 461 class="btn btn-default btn-block">
462 Salir 462 Salir
463 </button> 463 </button>
464 </div> 464 </div>
465 </div> 465 </div>
466 </div> 466 </div>
467 </div> 467 </div>
468 <div class="row d-md-none fixed-bottom"> 468 <div class="row d-md-none fixed-bottom">
469 <div class="w-100 bg-dark d-flex px-3 acciones-mobile"> 469 <div class="w-100 bg-dark d-flex px-3 acciones-mobile">
470 <span class="ml-3 text-muted" ng-click="salir()">Salir</span> 470 <span class="ml-3 text-muted" ng-click="salir()">Salir</span>
471 <span class="mr-3 ml-auto" ng-click="crearNotaPedido()">Guardar</span> 471 <span class="mr-3 ml-auto" ng-click="crearNotaPedido()">Guardar</span>
472 </div> 472 </div>
473 </div> 473 </div>
474 </div> 474 </div>
475 475
vendor/cordovaGeolocationModule.min.js
File was created 1 var cordovaGeolocationModule=angular.module("cordovaGeolocationModule",[]);cordovaGeolocationModule.constant("cordovaGeolocationConstants",{apiVersion:"1.0.0",cordovaVersion:">=3.4.0"});cordovaGeolocationModule.factory("cordovaGeolocationService",["$rootScope","$log","cordovaGeolocationConstants",function(e,t,n){return{apiVersion:function(){t.debug("cordovaGeolocationService.apiVersion.");return n.apiVersion},cordovaVersion:function(){t.debug("cordovaGeolocationService.cordovaVersion.");return n.cordovaVersion},checkGeolocationAvailability:function(){t.debug("cordovaGeolocationService.checkGeolocationAvailability.");if(!navigator.geolocation){t.warn("Geolocation API is not available.");return false}return true},getCurrentPosition:function(n,r,i){t.debug("cordovaGeolocationService.getCurrentPosition.");if(!this.checkGeolocationAvailability()){return}navigator.geolocation.getCurrentPosition(function(t){e.$apply(n(t))},function(t){e.$apply(r(t))},i)},watchPosition:function(n,r,i){t.debug("cordovaGeolocationService.watchPosition.");if(!this.checkGeolocationAvailability()){return}return navigator.geolocation.watchPosition(function(t){e.$apply(n(t))},function(t){e.$apply(r(t))},i)},clearWatch:function(e){t.debug("cordovaGeolocationService.clearWatch.");if(!this.checkGeolocationAvailability()){return}navigator.geolocation.clearWatch(e)}}}])