Commit ac78d6d201cbada620096857fe8dfd8a621bea11
Exists in
master
and in
1 other branch
Merge branch 'master' into 'develop'
Master(efernandez) See merge request !65
Showing
3 changed files
Show diff stats
gulpfile.js
| 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 | const header = require('gulp-header'); | 12 | const header = require('gulp-header'); |
| 13 | const footer = require('gulp-footer'); | 13 | const footer = require('gulp-footer'); |
| 14 | const gulpSequence = require('gulp-sequence'); | 14 | const gulpSequence = require('gulp-sequence'); |
| 15 | 15 | ||
| 16 | var paths = { | 16 | var paths = { |
| 17 | srcJS: 'src/js/*.js', | 17 | srcJS: 'src/js/*.js', |
| 18 | srcViews: 'src/views/*.html', | 18 | srcViews: 'src/views/*.html', |
| 19 | specs: 'spec/*.js', | 19 | specs: 'spec/*.js', |
| 20 | tmp: 'tmp', | 20 | tmp: 'tmp', |
| 21 | dist: 'dist/' | 21 | dist: 'dist/' |
| 22 | }; | 22 | }; |
| 23 | 23 | ||
| 24 | gulp.task('uglify', gulpSequence('clean', ['templates', 'uglify-spec'], 'uglify-app')); | 24 | gulp.task('uglify', function(callback) { |
| 25 | gulpSequence('clean', ['templates', 'uglify-spec'], 'uglify-app')(callback); | ||
| 26 | }); | ||
| 25 | 27 | ||
| 26 | gulp.task('templates', function() { | 28 | gulp.task('templates', function() { |
| 27 | return pump( | 29 | return pump( |
| 28 | [ | 30 | [ |
| 29 | gulp.src(paths.srcViews), | 31 | gulp.src(paths.srcViews), |
| 30 | htmlmin(), | 32 | htmlmin(), |
| 31 | templateCache('views.js', { | 33 | templateCache('views.js', { |
| 32 | module: 'focaCrearNotaPedido', | 34 | module: 'focaCrearNotaPedido', |
| 33 | root: '' | 35 | root: '' |
| 34 | }), | 36 | }), |
| 35 | gulp.dest(paths.tmp) | 37 | gulp.dest(paths.tmp) |
| 36 | ] | 38 | ] |
| 37 | ); | 39 | ); |
| 38 | }); | 40 | }); |
| 39 | 41 | ||
| 40 | gulp.task('uglify-app', function() { | 42 | gulp.task('uglify-app', function() { |
| 41 | return pump( | 43 | return pump( |
| 42 | [ | 44 | [ |
| 43 | gulp.src([ | 45 | gulp.src([ |
| 44 | paths.srcJS, | 46 | paths.srcJS, |
| 45 | 'tmp/views.js' | 47 | 'tmp/views.js' |
| 46 | ]), | 48 | ]), |
| 47 | concat('foca-crear-nota-pedido.js'), | 49 | concat('foca-crear-nota-pedido.js'), |
| 48 | replace('src/views/', ''), | 50 | replace('src/views/', ''), |
| 49 | gulp.dest(paths.tmp), | 51 | gulp.dest(paths.tmp), |
| 50 | rename('foca-crear-nota-pedido.min.js'), | 52 | rename('foca-crear-nota-pedido.min.js'), |
| 51 | uglify(), | 53 | uglify(), |
| 52 | gulp.dest(paths.dist) | 54 | gulp.dest(paths.dist) |
| 53 | ] | 55 | ] |
| 54 | ); | 56 | ); |
| 55 | }); | 57 | }); |
| 56 | 58 | ||
| 57 | gulp.task('uglify-spec', function() { | 59 | gulp.task('uglify-spec', function() { |
| 58 | return pump([ | 60 | return pump([ |
| 59 | gulp.src(paths.specs), | 61 | gulp.src(paths.specs), |
| 60 | concat('foca-crear-nota-pedido.spec.js'), | 62 | concat('foca-crear-nota-pedido.spec.js'), |
| 61 | replace("src/views/", ''), | 63 | replace("src/views/", ''), |
| 62 | header("describe('Módulo foca-crear-nota-pedido', function() { \n"), | 64 | header("describe('Módulo foca-crear-nota-pedido', function() { \n"), |
| 63 | footer("});"), | 65 | footer("});"), |
| 64 | gulp.dest(paths.dist) | 66 | gulp.dest(paths.dist) |
| 65 | ]); | 67 | ]); |
| 66 | }); | 68 | }); |
| 67 | 69 | ||
| 68 | gulp.task('clean', function() { | 70 | gulp.task('clean', function() { |
| 69 | return gulp.src(['tmp', 'dist'], {read: false}) | 71 | return gulp.src(['tmp', 'dist'], {read: false}) |
| 70 | .pipe(clean()); | 72 | .pipe(clean()); |
| 71 | }); | 73 | }); |
| 72 | 74 | ||
| 73 | gulp.task('pre-commit', function() { | 75 | gulp.task('pre-commit', function() { |
| 74 | return pump( | 76 | return pump( |
| 75 | [ | 77 | [ |
| 76 | gulp.src([paths.srcJS, paths.specs]), | 78 | gulp.src([paths.srcJS, paths.specs]), |
| 77 | jshint('.jshintrc'), | 79 | jshint('.jshintrc'), |
| 78 | jshint.reporter('default'), | 80 | jshint.reporter('default'), |
| 79 | jshint.reporter('fail') | 81 | jshint.reporter('fail') |
| 80 | ] | 82 | ] |
| 81 | ); | 83 | ); |
| 82 | 84 | ||
| 83 | gulp.start('uglify'); | 85 | gulp.start('uglify'); |
| 84 | }); | 86 | }); |
| 85 | 87 | ||
| 86 | gulp.task('webserver', function() { | 88 | gulp.task('webserver', function() { |
| 87 | pump [ | 89 | pump [ |
| 88 | connect.server({port: 3300, host: '0.0.0.0'}) | 90 | connect.server({port: 3300, host: '0.0.0.0'}) |
| 89 | ] | 91 | ] |
| 90 | }); | 92 | }); |
| 91 | 93 | ||
| 92 | gulp.task('clean-post-install', function() { | 94 | gulp.task('clean-post-install', function() { |
| 93 | return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', | 95 | return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', |
| 94 | 'index.html', 'test.html', 'spec'], {read: false}) | 96 | 'index.html', 'test.html', 'spec'], {read: false}) |
| 95 | .pipe(clean()); | 97 | .pipe(clean()); |
| 96 | }); | 98 | }); |
| 97 | 99 | ||
| 98 | gulp.task('default', ['webserver']); | 100 | gulp.task('default', ['webserver']); |
| 99 | 101 | ||
| 100 | gulp.task('watch', function() { | 102 | gulp.task('watch', function() { |
| 101 | gulp.watch([paths.srcJS, paths.srcViews], ['uglify']); | 103 | gulp.watch([paths.srcJS, paths.srcViews], ['uglify']); |
| 102 | }); | 104 | }); |
| 103 | 105 | ||
| 104 | gulp.task('copy', ['uglify'], function() { | 106 | gulp.task('copy', ['uglify'], function() { |
| 105 | return gulp.src('dist/*.js') | 107 | return gulp.src('dist/*.js') |
| 106 | .pipe(gulp.dest('../../wrapper-demo/node_modules/foca-crear-nota-pedido/dist/')); | 108 | .pipe(gulp.dest('../../wrapper-demo/node_modules/foca-crear-nota-pedido/dist/')); |
| 107 | }); | 109 | }); |
| 108 | 110 | ||
| 109 | gulp.task('watchAndCopy', function() { | 111 | gulp.task('watchAndCopy', function() { |
| 110 | return gulp.watch([paths.srcJS], ['copy']); | 112 | return gulp.watch([paths.srcJS], ['copy']); |
| 111 | }); | 113 | }); |
| 112 | 114 |
src/js/controller.js
| 1 | angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', | 1 | angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', |
| 2 | [ | 2 | [ |
| 3 | '$scope', | 3 | '$scope', |
| 4 | '$uibModal', | 4 | '$uibModal', |
| 5 | '$location', | 5 | '$location', |
| 6 | '$filter', | 6 | '$filter', |
| 7 | '$timeout', | 7 | '$timeout', |
| 8 | 'crearNotaPedidoService', | 8 | 'crearNotaPedidoService', |
| 9 | 'focaBotoneraLateralService', | 9 | 'focaBotoneraLateralService', |
| 10 | 'focaModalService', | 10 | 'focaModalService', |
| 11 | 'notaPedidoBusinessService', | 11 | 'notaPedidoBusinessService', |
| 12 | '$rootScope', | 12 | '$rootScope', |
| 13 | 'focaSeguimientoService', | 13 | 'focaSeguimientoService', |
| 14 | 'APP', | 14 | 'APP', |
| 15 | 'focaLoginService', | 15 | 'focaLoginService', |
| 16 | '$localStorage', | 16 | '$localStorage', |
| 17 | function( | 17 | function( |
| 18 | $scope, $uibModal, $location, $filter, $timeout, crearNotaPedidoService, | 18 | $scope, $uibModal, $location, $filter, $timeout, crearNotaPedidoService, |
| 19 | focaBotoneraLateralService, focaModalService, notaPedidoBusinessService, | 19 | focaBotoneraLateralService, focaModalService, notaPedidoBusinessService, |
| 20 | $rootScope, focaSeguimientoService, APP, focaLoginService, $localStorage) | 20 | $rootScope, focaSeguimientoService, APP, focaLoginService, $localStorage) |
| 21 | { | 21 | { |
| 22 | config(); | 22 | config(); |
| 23 | 23 | ||
| 24 | function config() { | 24 | function config() { |
| 25 | // PARAMETROS INICIALES PARA FUNCIONAMIENTO DEL PROGRAMA | 25 | // PARAMETROS INICIALES PARA FUNCIONAMIENTO DEL PROGRAMA |
| 26 | $scope.notaPedido = {}; | 26 | $scope.notaPedido = {}; |
| 27 | $scope.isNumber = angular.isNumber; | 27 | $scope.isNumber = angular.isNumber; |
| 28 | $scope.datepickerAbierto = false; | 28 | $scope.datepickerAbierto = false; |
| 29 | $scope.show = false; | 29 | $scope.show = false; |
| 30 | $scope.cargando = true; | 30 | $scope.cargando = true; |
| 31 | $scope.botonera = crearNotaPedidoService.getBotonera(); | 31 | $scope.botonera = crearNotaPedidoService.getBotonera(); |
| 32 | $scope.puntoVenta = $filter('rellenarDigitos')(0, 4); | 32 | $scope.puntoVenta = $filter('rellenarDigitos')(0, 4); |
| 33 | $scope.comprobante = $filter('rellenarDigitos')(0, 8); | 33 | $scope.comprobante = $filter('rellenarDigitos')(0, 8); |
| 34 | $scope.dateOptions = { | 34 | $scope.dateOptions = { |
| 35 | maxDate: new Date(), | 35 | maxDate: new Date(), |
| 36 | minDate: new Date(2010, 0, 1) | 36 | minDate: new Date(2010, 0, 1) |
| 37 | }; | 37 | }; |
| 38 | 38 | ||
| 39 | //SETEO BOTONERA LATERAL | 39 | //SETEO BOTONERA LATERAL |
| 40 | $timeout(function() { | 40 | $timeout(function() { |
| 41 | focaBotoneraLateralService.showSalir(false); | 41 | focaBotoneraLateralService.showSalir(false); |
| 42 | focaBotoneraLateralService.showPausar(true); | 42 | focaBotoneraLateralService.showPausar(true); |
| 43 | focaBotoneraLateralService.showGuardar(true, $scope.crearNotaPedido); | 43 | focaBotoneraLateralService.showGuardar(true, $scope.crearNotaPedido); |
| 44 | focaBotoneraLateralService.addCustomButton('Salir', salir); | 44 | focaBotoneraLateralService.addCustomButton('Salir', salir); |
| 45 | }); | 45 | }); |
| 46 | 46 | ||
| 47 | // SETEA BOTONERA DE FACTURADOR TENIENDO EN CUENTA SI ESTA SETEADO EL VENDEDOR | 47 | // SETEA BOTONERA DE FACTURADOR TENIENDO EN CUENTA SI ESTA SETEADO EL VENDEDOR |
| 48 | if (APP === 'distribuidor') { | 48 | if (APP === 'distribuidor') { |
| 49 | $scope.idVendedor = focaLoginService.getLoginData().vendedorCobrador; | 49 | $scope.idVendedor = focaLoginService.getLoginData().vendedorCobrador; |
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | //Trabajo con la cotización más reciente, por eso uso siempre la primera '[0]' | 52 | //Trabajo con la cotización más reciente, por eso uso siempre la primera '[0]' |
| 53 | crearNotaPedidoService.getCotizacionByIdMoneda(1).then(function(res) { | 53 | crearNotaPedidoService.getCotizacionByIdMoneda(1).then(function(res) { |
| 54 | var monedaPorDefecto = res.data[0]; | 54 | var monedaPorDefecto = res.data[0]; |
| 55 | 55 | ||
| 56 | $scope.notaPedido.cotizacion = Object.assign( | 56 | $scope.notaPedido.cotizacion = Object.assign( |
| 57 | {moneda: monedaPorDefecto}, | 57 | {moneda: monedaPorDefecto}, |
| 58 | monedaPorDefecto.cotizaciones[0] | 58 | monedaPorDefecto.cotizaciones[0] |
| 59 | ); | 59 | ); |
| 60 | $scope.inicial.cotizacion = $scope.notaPedido.cotizacion; | 60 | $scope.inicial.cotizacion = $scope.notaPedido.cotizacion; |
| 61 | }); | 61 | }); |
| 62 | 62 | ||
| 63 | init(); | 63 | init(); |
| 64 | $timeout(function() {getLSNotaPedido();}); | 64 | $timeout(function() {getLSNotaPedido();}); |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | function init() { | 67 | function init() { |
| 68 | $scope.$broadcast('cleanCabecera'); | 68 | $scope.$broadcast('cleanCabecera'); |
| 69 | 69 | ||
| 70 | $scope.notaPedido = { | 70 | $scope.notaPedido = { |
| 71 | id: 0, | 71 | id: 0, |
| 72 | cliente: {}, | 72 | cliente: {}, |
| 73 | proveedor: {}, | 73 | proveedor: {}, |
| 74 | domicilio: {dom: ''}, | 74 | domicilio: {dom: ''}, |
| 75 | vendedor: {}, | 75 | vendedor: {}, |
| 76 | fechaCarga: new Date(), | 76 | fechaCarga: new Date(), |
| 77 | cotizacion: {}, | 77 | cotizacion: {}, |
| 78 | articulosNotaPedido: [], | 78 | articulosNotaPedido: [], |
| 79 | notaPedidoPlazo: [] | 79 | notaPedidoPlazo: [] |
| 80 | }; | 80 | }; |
| 81 | $scope.idLista = undefined; | 81 | $scope.idLista = undefined; |
| 82 | 82 | ||
| 83 | crearNotaPedidoService.getNumeroNotaPedido().then( | 83 | crearNotaPedidoService.getNumeroNotaPedido().then( |
| 84 | function(res) { | 84 | function(res) { |
| 85 | $scope.puntoVenta = $filter('rellenarDigitos')( | 85 | $scope.puntoVenta = $filter('rellenarDigitos')( |
| 86 | res.data.sucursal, 4 | 86 | res.data.sucursal, 4 |
| 87 | ); | 87 | ); |
| 88 | 88 | ||
| 89 | $scope.comprobante = $filter('rellenarDigitos')( | 89 | $scope.comprobante = $filter('rellenarDigitos')( |
| 90 | res.data.numeroNotaPedido, 8 | 90 | res.data.numeroNotaPedido, 8 |
| 91 | ); | 91 | ); |
| 92 | }, | 92 | }, |
| 93 | function(err) { | 93 | function(err) { |
| 94 | focaModalService.alert('La terminal no esta configurada correctamente'); | 94 | focaModalService.alert('La terminal no esta configurada correctamente'); |
| 95 | console.info(err); | 95 | console.info(err); |
| 96 | } | 96 | } |
| 97 | ); | 97 | ); |
| 98 | 98 | ||
| 99 | if (APP === 'distribuidor') { | 99 | if (APP === 'distribuidor') { |
| 100 | crearNotaPedidoService.getVendedorById($scope.idVendedor).then( | 100 | crearNotaPedidoService.getVendedorById($scope.idVendedor).then( |
| 101 | function(res) { | 101 | function(res) { |
| 102 | var vendedor = res.data; | 102 | var vendedor = res.data; |
| 103 | $scope.$broadcast('addCabecera', { | 103 | $scope.$broadcast('addCabecera', { |
| 104 | label: 'Vendedor:', | 104 | label: 'Vendedor:', |
| 105 | valor: $filter('rellenarDigitos')(vendedor.NUM, 3) + ' - ' + | 105 | valor: $filter('rellenarDigitos')(vendedor.NUM, 3) + ' - ' + |
| 106 | vendedor.NOM | 106 | vendedor.NOM |
| 107 | }); | 107 | }); |
| 108 | 108 | ||
| 109 | $scope.notaPedido.vendedor = vendedor; | 109 | $scope.notaPedido.vendedor = vendedor; |
| 110 | } | 110 | } |
| 111 | ); | 111 | ); |
| 112 | } | 112 | } |
| 113 | 113 | ||
| 114 | $scope.inicial = angular.copy($scope.notaPedido); | 114 | $scope.inicial = angular.copy($scope.notaPedido); |
| 115 | } | 115 | } |
| 116 | 116 | ||
| 117 | $scope.$watch('notaPedido', function(newValue) { | 117 | $scope.$watch('notaPedido', function(newValue) { |
| 118 | focaBotoneraLateralService.setPausarData({ | 118 | focaBotoneraLateralService.setPausarData({ |
| 119 | label: 'notaPedido', | 119 | label: 'notaPedido', |
| 120 | val: newValue | 120 | val: newValue |
| 121 | }); | 121 | }); |
| 122 | }, true); | 122 | }, true); |
| 123 | 123 | ||
| 124 | $scope.crearNotaPedido = function() { | 124 | $scope.crearNotaPedido = function() { |
| 125 | if (!$scope.notaPedido.cliente.COD) { | 125 | if (!$scope.notaPedido.cliente.COD) { |
| 126 | focaModalService.alert('Ingrese Cliente'); | 126 | focaModalService.alert('Ingrese Cliente'); |
| 127 | return; | 127 | return; |
| 128 | } else if (!$scope.notaPedido.proveedor.COD) { | 128 | } else if (!$scope.notaPedido.proveedor.COD) { |
| 129 | focaModalService.alert('Ingrese Proveedor'); | 129 | focaModalService.alert('Ingrese Proveedor'); |
| 130 | return; | 130 | return; |
| 131 | } else if (!$scope.notaPedido.cotizacion.ID) { | 131 | } else if (!$scope.notaPedido.cotizacion.ID) { |
| 132 | focaModalService.alert('Ingrese Cotización'); | 132 | focaModalService.alert('Ingrese Cotización'); |
| 133 | return; | 133 | return; |
| 134 | } else if (!$scope.notaPedido.cotizacion.moneda.ID) { | 134 | } else if (!$scope.notaPedido.cotizacion.moneda.ID) { |
| 135 | focaModalService.alert('Ingrese Moneda'); | 135 | focaModalService.alert('Ingrese Moneda'); |
| 136 | return; | 136 | return; |
| 137 | } else if (!$scope.notaPedido.notaPedidoPlazo) { | 137 | } else if (!$scope.notaPedido.notaPedidoPlazo) { |
| 138 | focaModalService.alert('Ingrese Precios y Condiciones'); | 138 | focaModalService.alert('Ingrese Precios y Condiciones'); |
| 139 | return; | 139 | return; |
| 140 | } else if ( | 140 | } else if ( |
| 141 | $scope.notaPedido.flete === undefined || $scope.notaPedido.flete === null) | 141 | $scope.notaPedido.flete === undefined || $scope.notaPedido.flete === null) |
| 142 | { | 142 | { |
| 143 | focaModalService.alert('Ingrese Flete'); | 143 | focaModalService.alert('Ingrese Flete'); |
| 144 | return; | 144 | return; |
| 145 | } else if (!$scope.notaPedido.domicilioStamp) {//TODO validar domicilio correcto | 145 | } else if (!$scope.notaPedido.domicilioStamp) {//TODO validar domicilio correcto |
| 146 | focaModalService.alert('Ingrese Domicilio'); | 146 | focaModalService.alert('Ingrese Domicilio'); |
| 147 | return; | 147 | return; |
| 148 | } else if ($scope.notaPedido.articulosNotaPedido.length === 0) { | 148 | } else if ($scope.notaPedido.articulosNotaPedido.length === 0) { |
| 149 | focaModalService.alert('Debe cargar al menos un articulo'); | 149 | focaModalService.alert('Debe cargar al menos un articulo'); |
| 150 | return; | 150 | return; |
| 151 | } | 151 | } |
| 152 | focaBotoneraLateralService.startGuardar(); | 152 | focaBotoneraLateralService.startGuardar(); |
| 153 | $scope.saveLoading = true; | 153 | $scope.saveLoading = true; |
| 154 | var notaPedido = { | 154 | var notaPedido = { |
| 155 | id: $scope.notaPedido.id, | 155 | id: $scope.notaPedido.id, |
| 156 | fechaCarga: new Date($scope.notaPedido.fechaCarga) | 156 | fechaCarga: new Date($scope.notaPedido.fechaCarga) |
| 157 | .toISOString().slice(0, 19).replace('T', ' '), | 157 | .toISOString().slice(0, 19).replace('T', ' '), |
| 158 | idVendedor: $scope.notaPedido.vendedor.id, | 158 | idVendedor: $scope.notaPedido.vendedor.id, |
| 159 | idCliente: $scope.notaPedido.cliente.COD, | 159 | idCliente: $scope.notaPedido.cliente.COD, |
| 160 | nombreCliente: $scope.notaPedido.cliente.NOM, | 160 | nombreCliente: $scope.notaPedido.cliente.NOM, |
| 161 | cuitCliente: $scope.notaPedido.cliente.CUIT, | 161 | cuitCliente: $scope.notaPedido.cliente.CUIT, |
| 162 | idProveedor: $scope.notaPedido.proveedor.COD, | 162 | idProveedor: $scope.notaPedido.proveedor.COD, |
| 163 | idDomicilio: $scope.notaPedido.domicilio.id, | 163 | idDomicilio: $scope.notaPedido.domicilio.id, |
| 164 | idCotizacion: $scope.notaPedido.cotizacion.ID, | 164 | idCotizacion: $scope.notaPedido.cotizacion.ID, |
| 165 | idPrecioCondicion: $scope.notaPedido.idPrecioCondicion, | 165 | idPrecioCondicion: $scope.notaPedido.idPrecioCondicion, |
| 166 | cotizacion: $scope.notaPedido.cotizacion.VENDEDOR, | 166 | cotizacion: $scope.notaPedido.cotizacion.VENDEDOR, |
| 167 | flete: $scope.notaPedido.flete, | 167 | flete: $scope.notaPedido.flete, |
| 168 | fob: $scope.notaPedido.fob, | 168 | fob: $scope.notaPedido.fob, |
| 169 | bomba: $scope.notaPedido.bomba, | 169 | bomba: $scope.notaPedido.bomba, |
| 170 | kilometros: $scope.notaPedido.kilometros, | 170 | kilometros: $scope.notaPedido.kilometros, |
| 171 | domicilioStamp: $scope.notaPedido.domicilioStamp, | 171 | domicilioStamp: $scope.notaPedido.domicilioStamp, |
| 172 | observaciones: $scope.notaPedido.observaciones, | 172 | observaciones: $scope.notaPedido.observaciones, |
| 173 | estado: 0, | 173 | estado: 0, |
| 174 | total: $scope.getTotal() | 174 | total: $scope.getTotal() |
| 175 | }; | 175 | }; |
| 176 | crearNotaPedidoService.crearNotaPedido(notaPedido).then( | 176 | crearNotaPedidoService.crearNotaPedido(notaPedido).then( |
| 177 | function(data) { | 177 | function(data) { |
| 178 | // Al guardar los datos de la nota de pedido logueamos la | 178 | // Al guardar los datos de la nota de pedido logueamos la |
| 179 | // actividad para su seguimiento. | 179 | // actividad para su seguimiento. |
| 180 | //TODO: GUARDAR POSISIONAMIENTO AL EDITAR? | 180 | //TODO: GUARDAR POSISIONAMIENTO AL EDITAR? |
| 181 | focaSeguimientoService.guardarPosicion( | 181 | focaSeguimientoService.guardarPosicion( |
| 182 | 'Nota de pedido', | 182 | 'Nota de pedido', |
| 183 | data.data.id, | 183 | data.data.id, |
| 184 | '' | 184 | '' |
| 185 | ); | 185 | ); |
| 186 | notaPedidoBusinessService.addArticulos( | 186 | notaPedidoBusinessService.addArticulos( |
| 187 | $scope.notaPedido.articulosNotaPedido, | 187 | $scope.notaPedido.articulosNotaPedido, |
| 188 | data.data.id, $scope.notaPedido.cotizacion.VENDEDOR); | 188 | data.data.id, $scope.notaPedido.cotizacion.VENDEDOR); |
| 189 | 189 | ||
| 190 | if ($scope.notaPedido.notaPedidoPuntoDescarga) { | 190 | if ($scope.notaPedido.notaPedidoPuntoDescarga) { |
| 191 | notaPedidoBusinessService.addPuntosDescarga(data.data.id, | 191 | notaPedidoBusinessService.addPuntosDescarga(data.data.id, |
| 192 | $scope.notaPedido.notaPedidoPuntoDescarga); | 192 | $scope.notaPedido.notaPedidoPuntoDescarga); |
| 193 | } | 193 | } |
| 194 | 194 | ||
| 195 | var plazos = $scope.notaPedido.notaPedidoPlazo; | 195 | var plazos = $scope.notaPedido.notaPedidoPlazo; |
| 196 | var plazosACrear = []; | 196 | var plazosACrear = []; |
| 197 | plazos.forEach(function(plazo) { | 197 | plazos.forEach(function(plazo) { |
| 198 | plazosACrear.push({ | 198 | plazosACrear.push({ |
| 199 | idNotaPedido: data.data.id, | 199 | idNotaPedido: data.data.id, |
| 200 | dias: plazo.dias | 200 | dias: plazo.dias |
| 201 | }); | 201 | }); |
| 202 | }); | 202 | }); |
| 203 | 203 | ||
| 204 | if (plazosACrear.length) { | 204 | if (plazosACrear.length) { |
| 205 | crearNotaPedidoService.crearPlazosParaNotaPedido(plazosACrear); | 205 | crearNotaPedidoService.crearPlazosParaNotaPedido(plazosACrear); |
| 206 | } | 206 | } |
| 207 | 207 | ||
| 208 | notaPedidoBusinessService.addEstado(data.data.id, | 208 | notaPedidoBusinessService.addEstado(data.data.id, |
| 209 | $scope.notaPedido.vendedor.id); | 209 | $scope.notaPedido.vendedor.id); |
| 210 | 210 | ||
| 211 | focaBotoneraLateralService.endGuardar(true); | 211 | focaBotoneraLateralService.endGuardar(true); |
| 212 | $scope.saveLoading = false; | 212 | $scope.saveLoading = false; |
| 213 | 213 | ||
| 214 | init(); | 214 | init(); |
| 215 | }, function(error) { | 215 | }, function(error) { |
| 216 | focaModalService.alert('Hubo un error al crear la nota de pedido'); | 216 | focaModalService.alert('Hubo un error al crear la nota de pedido'); |
| 217 | focaBotoneraLateralService.endGuardar(); | 217 | focaBotoneraLateralService.endGuardar(); |
| 218 | $scope.saveLoading = false; | 218 | $scope.saveLoading = false; |
| 219 | console.info(error); | 219 | console.info(error); |
| 220 | } | 220 | } |
| 221 | ); | 221 | ); |
| 222 | }; | 222 | }; |
| 223 | 223 | ||
| 224 | $scope.seleccionarNotaPedido = function() { | 224 | $scope.seleccionarNotaPedido = function() { |
| 225 | var modalInstance = $uibModal.open( | 225 | var modalInstance = $uibModal.open( |
| 226 | { | 226 | { |
| 227 | ariaLabelledBy: 'Busqueda de Nota de Pedido', | 227 | ariaLabelledBy: 'Busqueda de Nota de Pedido', |
| 228 | templateUrl: 'foca-modal-nota-pedido.html', | 228 | templateUrl: 'foca-modal-nota-pedido.html', |
| 229 | controller: 'focaModalNotaPedidoController', | 229 | controller: 'focaModalNotaPedidoController', |
| 230 | size: 'lg', | 230 | size: 'lg', |
| 231 | resolve: { | 231 | resolve: { |
| 232 | usadoPor: function() {return 'notaPedido';}, | 232 | usadoPor: function() {return 'notaPedido';}, |
| 233 | idVendedor: function() { | 233 | idVendedor: function() { |
| 234 | if (APP === 'distribuidor') | 234 | if (APP === 'distribuidor') |
| 235 | return $scope.notaPedido.vendedor.id; | 235 | return $scope.notaPedido.vendedor.id; |
| 236 | else | 236 | else |
| 237 | return null; | 237 | return null; |
| 238 | } | 238 | } |
| 239 | } | 239 | } |
| 240 | } | 240 | } |
| 241 | ); | 241 | ); |
| 242 | modalInstance.result.then(setearNotaPedido); | 242 | modalInstance.result.then(setearNotaPedido); |
| 243 | }; | 243 | }; |
| 244 | 244 | ||
| 245 | $scope.seleccionarProductos = function() { | 245 | $scope.seleccionarProductos = function() { |
| 246 | if ($scope.idLista === undefined) { | 246 | if ($scope.idLista === undefined) { |
| 247 | focaModalService.alert( | 247 | focaModalService.alert( |
| 248 | 'Primero seleccione una lista de precio y condicion'); | 248 | 'Primero seleccione una lista de precio y condicion'); |
| 249 | return; | 249 | return; |
| 250 | } | 250 | } |
| 251 | var modalInstance = $uibModal.open( | 251 | var modalInstance = $uibModal.open( |
| 252 | { | 252 | { |
| 253 | ariaLabelledBy: 'Busqueda de Productos', | 253 | ariaLabelledBy: 'Busqueda de Productos', |
| 254 | templateUrl: 'modal-busqueda-productos.html', | 254 | templateUrl: 'modal-busqueda-productos.html', |
| 255 | controller: 'modalBusquedaProductosCtrl', | 255 | controller: 'modalBusquedaProductosCtrl', |
| 256 | resolve: { | 256 | resolve: { |
| 257 | parametroProducto: { | 257 | parametroProducto: { |
| 258 | idLista: $scope.idLista, | 258 | idLista: $scope.idLista, |
| 259 | cotizacion: $scope.notaPedido.cotizacion.VENDEDOR, | 259 | cotizacion: $scope.notaPedido.cotizacion.VENDEDOR, |
| 260 | simbolo: $scope.notaPedido.cotizacion.moneda.SIMBOLO | 260 | simbolo: $scope.notaPedido.cotizacion.moneda.SIMBOLO |
| 261 | } | 261 | } |
| 262 | }, | 262 | }, |
| 263 | size: 'lg' | 263 | size: 'lg' |
| 264 | } | 264 | } |
| 265 | ); | 265 | ); |
| 266 | modalInstance.result.then( | 266 | modalInstance.result.then( |
| 267 | function(producto) { | 267 | function(producto) { |
| 268 | var newArt = | 268 | var newArt = |
| 269 | { | 269 | { |
| 270 | id: 0, | 270 | id: 0, |
| 271 | codigo: producto.codigo, | 271 | codigo: producto.codigo, |
| 272 | sector: producto.sector, | 272 | sector: producto.sector, |
| 273 | sectorCodigo: producto.sector + '-' + producto.codigo, | 273 | sectorCodigo: producto.sector + '-' + producto.codigo, |
| 274 | descripcion: producto.descripcion, | 274 | descripcion: producto.descripcion, |
| 275 | item: $scope.notaPedido.articulosNotaPedido.length + 1, | 275 | item: $scope.notaPedido.articulosNotaPedido.length + 1, |
| 276 | nombre: producto.descripcion, | 276 | nombre: producto.descripcion, |
| 277 | precio: parseFloat(producto.precio.toFixed(4)), | 277 | precio: parseFloat(producto.precio.toFixed(4)), |
| 278 | costoUnitario: producto.costo, | 278 | costoUnitario: producto.costo, |
| 279 | editCantidad: false, | 279 | editCantidad: false, |
| 280 | editPrecio: false, | 280 | editPrecio: false, |
| 281 | rubro: producto.CodRub, | 281 | rubro: producto.CodRub, |
| 282 | exentoUnitario: producto.precio, | 282 | exentoUnitario: producto.precio, |
| 283 | ivaUnitario: producto.IMPIVA, | 283 | ivaUnitario: producto.IMPIVA, |
| 284 | impuestoInternoUnitario: producto.ImpInt, | 284 | impuestoInternoUnitario: producto.ImpInt, |
| 285 | impuestoInterno1Unitario: producto.ImpInt2, | 285 | impuestoInterno1Unitario: producto.ImpInt2, |
| 286 | impuestoInterno2Unitario: producto.ImpInt3, | 286 | impuestoInterno2Unitario: producto.ImpInt3, |
| 287 | precioLista: producto.precio, | 287 | precioLista: producto.precio, |
| 288 | combustible: 1, | 288 | combustible: 1, |
| 289 | facturado: 0, | 289 | facturado: 0, |
| 290 | idArticulo: producto.id | 290 | idArticulo: producto.id |
| 291 | }; | 291 | }; |
| 292 | $scope.articuloACargar = newArt; | 292 | $scope.articuloACargar = newArt; |
| 293 | $scope.cargando = false; | 293 | $scope.cargando = false; |
| 294 | }, function() { | 294 | }, function() { |
| 295 | // funcion ejecutada cuando se cancela el modal | 295 | // funcion ejecutada cuando se cancela el modal |
| 296 | } | 296 | } |
| 297 | ); | 297 | ); |
| 298 | }; | 298 | }; |
| 299 | 299 | ||
| 300 | $scope.seleccionarPuntosDeDescarga = function() { | 300 | $scope.seleccionarPuntosDeDescarga = function() { |
| 301 | if (!$scope.notaPedido.cliente.COD || !$scope.notaPedido.domicilio.id) { | 301 | if (!$scope.notaPedido.cliente.COD || !$scope.notaPedido.domicilio.id) { |
| 302 | focaModalService.alert('Primero seleccione un cliente y un domicilio'); | 302 | focaModalService.alert('Primero seleccione un cliente y un domicilio'); |
| 303 | return; | 303 | return; |
| 304 | } else { | 304 | } else { |
| 305 | var modalInstance = $uibModal.open( | 305 | var modalInstance = $uibModal.open( |
| 306 | { | 306 | { |
| 307 | ariaLabelledBy: 'Búsqueda de Puntos de descarga', | 307 | ariaLabelledBy: 'Búsqueda de Puntos de descarga', |
| 308 | templateUrl: 'modal-punto-descarga.html', | 308 | templateUrl: 'modal-punto-descarga.html', |
| 309 | controller: 'focaModalPuntoDescargaController', | 309 | controller: 'focaModalPuntoDescargaController', |
| 310 | size: 'lg', | 310 | size: 'lg', |
| 311 | resolve: { | 311 | resolve: { |
| 312 | filters: { | 312 | filters: { |
| 313 | idDomicilio: $scope.notaPedido.domicilio.id, | 313 | idDomicilio: $scope.notaPedido.domicilio.id, |
| 314 | idCliente: $scope.notaPedido.cliente.COD, | 314 | idCliente: $scope.notaPedido.cliente.COD, |
| 315 | articulos: $scope.notaPedido.articulosNotaPedido, | 315 | articulos: $scope.notaPedido.articulosNotaPedido, |
| 316 | puntosDescarga: $scope.notaPedido.notaPedidoPuntoDescarga | 316 | puntosDescarga: $scope.notaPedido.notaPedidoPuntoDescarga |
| 317 | } | 317 | } |
| 318 | } | 318 | } |
| 319 | } | 319 | } |
| 320 | ); | 320 | ); |
| 321 | modalInstance.result.then( | 321 | modalInstance.result.then( |
| 322 | function(puntosDescarga) { | 322 | function(puntosDescarga) { |
| 323 | $scope.notaPedido.notaPedidoPuntoDescarga = puntosDescarga; | 323 | $scope.notaPedido.notaPedidoPuntoDescarga = puntosDescarga; |
| 324 | 324 | ||
| 325 | //AGREGO PUNTOS DE DESCARGA A CABECERA | 325 | //AGREGO PUNTOS DE DESCARGA A CABECERA |
| 326 | var puntosStamp = ''; | 326 | var puntosStamp = ''; |
| 327 | puntosDescarga.forEach(function(punto, idx, arr) { | 327 | puntosDescarga.forEach(function(punto, idx, arr) { |
| 328 | puntosStamp += punto.descripcion; | 328 | puntosStamp += punto.descripcion; |
| 329 | if ((idx + 1) !== arr.length) puntosStamp += ', '; | 329 | if ((idx + 1) !== arr.length) puntosStamp += ', '; |
| 330 | }); | 330 | }); |
| 331 | 331 | ||
| 332 | $scope.$broadcast('addCabecera', { | 332 | $scope.$broadcast('addCabecera', { |
| 333 | label: 'Puntos de descarga:', | 333 | label: 'Puntos de descarga:', |
| 334 | valor: puntosStamp | 334 | valor: puntosStamp |
| 335 | }); | 335 | }); |
| 336 | }, function() { | 336 | }, function() { |
| 337 | $scope.abrirModalDomicilios($scope.cliente); | 337 | $scope.abrirModalDomicilios($scope.cliente); |
| 338 | } | 338 | } |
| 339 | ); | 339 | ); |
| 340 | } | 340 | } |
| 341 | }; | 341 | }; |
| 342 | 342 | ||
| 343 | $scope.seleccionarProveedor = function() { | 343 | $scope.seleccionarProveedor = function() { |
| 344 | $scope.abrirModalProveedores(function() { | 344 | $scope.abrirModalProveedores(function() { |
| 345 | if (validarNotaRemitada()) { | 345 | if (validarNotaRemitada()) { |
| 346 | var modalInstance = $uibModal.open( | 346 | var modalInstance = $uibModal.open( |
| 347 | { | 347 | { |
| 348 | ariaLabelledBy: 'Busqueda de Flete', | 348 | ariaLabelledBy: 'Busqueda de Flete', |
| 349 | templateUrl: 'modal-flete.html', | 349 | templateUrl: 'modal-flete.html', |
| 350 | controller: 'focaModalFleteController', | 350 | controller: 'focaModalFleteController', |
| 351 | size: 'lg', | 351 | size: 'lg', |
| 352 | resolve: { | 352 | resolve: { |
| 353 | parametrosFlete: | 353 | parametrosFlete: |
| 354 | function() { | 354 | function() { |
| 355 | return { | 355 | return { |
| 356 | flete: $scope.notaPedido.fob ? 'FOB' : | 356 | flete: $scope.notaPedido.fob ? 'FOB' : |
| 357 | ( $scope.notaPedido.flete ? '1' : | 357 | ( $scope.notaPedido.flete ? '1' : |
| 358 | ($scope.notaPedido.flete === undefined ? | 358 | ($scope.notaPedido.flete === undefined ? |
| 359 | null : '0')), | 359 | null : '0')), |
| 360 | bomba: $scope.notaPedido.bomba ? '1' : | 360 | bomba: $scope.notaPedido.bomba ? '1' : |
| 361 | ($scope.notaPedido.bomba === undefined ? | 361 | ($scope.notaPedido.bomba === undefined ? |
| 362 | null : '0'), | 362 | null : '0'), |
| 363 | kilometros: $scope.notaPedido.kilometros | 363 | kilometros: $scope.notaPedido.kilometros |
| 364 | }; | 364 | }; |
| 365 | } | 365 | } |
| 366 | } | 366 | } |
| 367 | } | 367 | } |
| 368 | ); | 368 | ); |
| 369 | modalInstance.result.then( | 369 | modalInstance.result.then( |
| 370 | function(datos) { | 370 | function(datos) { |
| 371 | $scope.notaPedido.flete = datos.flete; | 371 | $scope.notaPedido.flete = datos.flete; |
| 372 | $scope.notaPedido.fob = datos.FOB; | 372 | $scope.notaPedido.fob = datos.FOB; |
| 373 | $scope.notaPedido.bomba = datos.bomba; | 373 | $scope.notaPedido.bomba = datos.bomba; |
| 374 | $scope.notaPedido.kilometros = datos.kilometros; | 374 | $scope.notaPedido.kilometros = datos.kilometros; |
| 375 | $scope.$broadcast('addCabecera', { | 375 | $scope.$broadcast('addCabecera', { |
| 376 | label: 'Flete:', | 376 | label: 'Flete:', |
| 377 | valor: datos.FOB ? 'FOB' : (datos.flete ? 'Si' : 'No') | 377 | valor: datos.FOB ? 'FOB' : (datos.flete ? 'Si' : 'No') |
| 378 | }); | 378 | }); |
| 379 | if (datos.flete) { | 379 | if (datos.flete) { |
| 380 | $scope.$broadcast('addCabecera', { | 380 | $scope.$broadcast('addCabecera', { |
| 381 | label: 'Bomba:', | 381 | label: 'Bomba:', |
| 382 | valor: datos.bomba ? 'Si' : 'No' | 382 | valor: datos.bomba ? 'Si' : 'No' |
| 383 | }); | 383 | }); |
| 384 | $scope.$broadcast('addCabecera', { | 384 | $scope.$broadcast('addCabecera', { |
| 385 | label: 'Kilometros:', | 385 | label: 'Kilometros:', |
| 386 | valor: datos.kilometros | 386 | valor: datos.kilometros |
| 387 | }); | 387 | }); |
| 388 | } else { | 388 | } else { |
| 389 | $scope.$broadcast('removeCabecera', 'Bomba:'); | 389 | $scope.$broadcast('removeCabecera', 'Bomba:'); |
| 390 | $scope.$broadcast('removeCabecera', 'Kilometros:'); | 390 | $scope.$broadcast('removeCabecera', 'Kilometros:'); |
| 391 | $scope.notaPedido.bomba = false; | 391 | $scope.notaPedido.bomba = false; |
| 392 | $scope.notaPedido.kilometros = null; | 392 | $scope.notaPedido.kilometros = null; |
| 393 | } | 393 | } |
| 394 | }, function() { | 394 | }, function() { |
| 395 | $scope.seleccionarTransportista(); | 395 | $scope.seleccionarTransportista(); |
| 396 | } | 396 | } |
| 397 | ); | 397 | ); |
| 398 | } | 398 | } |
| 399 | }); | 399 | }); |
| 400 | }; | 400 | }; |
| 401 | 401 | ||
| 402 | $scope.seleccionarVendedor = function(callback, ocultarVendedor) { | 402 | $scope.seleccionarVendedor = function(callback, ocultarVendedor) { |
| 403 | if (APP === 'distribuidor' || ocultarVendedor) { | 403 | if (APP === 'distribuidor' || ocultarVendedor) { |
| 404 | callback(); | 404 | callback(); |
| 405 | return; | 405 | return; |
| 406 | } | 406 | } |
| 407 | 407 | ||
| 408 | if (validarNotaRemitada()) { | 408 | if (validarNotaRemitada()) { |
| 409 | var parametrosModal = { | 409 | var parametrosModal = { |
| 410 | titulo: 'Búsqueda vendedores', | 410 | titulo: 'Búsqueda vendedores', |
| 411 | query: '/vendedor', | 411 | query: '/vendedor', |
| 412 | columnas: [ | 412 | columnas: [ |
| 413 | { | 413 | { |
| 414 | propiedad: 'NUM', | 414 | propiedad: 'NUM', |
| 415 | nombre: 'Código', | 415 | nombre: 'Código', |
| 416 | filtro: { | 416 | filtro: { |
| 417 | nombre: 'rellenarDigitos', | 417 | nombre: 'rellenarDigitos', |
| 418 | parametro: 3 | 418 | parametro: 3 |
| 419 | } | 419 | } |
| 420 | }, | 420 | }, |
| 421 | { | 421 | { |
| 422 | propiedad: 'NOM', | 422 | propiedad: 'NOM', |
| 423 | nombre: 'Nombre' | 423 | nombre: 'Nombre' |
| 424 | } | 424 | } |
| 425 | ], | 425 | ], |
| 426 | size: 'md' | 426 | size: 'md' |
| 427 | }; | 427 | }; |
| 428 | focaModalService.modal(parametrosModal).then( | 428 | focaModalService.modal(parametrosModal).then( |
| 429 | function(vendedor) { | 429 | function(vendedor) { |
| 430 | $scope.$broadcast('addCabecera', { | 430 | $scope.$broadcast('addCabecera', { |
| 431 | label: 'Vendedor:', | 431 | label: 'Vendedor:', |
| 432 | valor: $filter('rellenarDigitos')(vendedor.NUM, 3) + ' - ' + | 432 | valor: $filter('rellenarDigitos')(vendedor.NUM, 3) + ' - ' + |
| 433 | vendedor.NOM | 433 | vendedor.NOM |
| 434 | }); | 434 | }); |
| 435 | $scope.notaPedido.vendedor = vendedor; | 435 | $scope.notaPedido.vendedor = vendedor; |
| 436 | deleteCliente(); | 436 | deleteCliente(); |
| 437 | callback(); | 437 | callback(); |
| 438 | }, function() {} | 438 | }, function() {} |
| 439 | ); | 439 | ); |
| 440 | } | 440 | } |
| 441 | }; | 441 | }; |
| 442 | 442 | ||
| 443 | $scope.seleccionarCliente = function(ocultarVendedor) { | 443 | $scope.seleccionarCliente = function(ocultarVendedor) { |
| 444 | $scope.seleccionarVendedor(function() { | 444 | $scope.seleccionarVendedor(function() { |
| 445 | if (validarNotaRemitada()) { | 445 | if (validarNotaRemitada()) { |
| 446 | var modalInstance = $uibModal.open( | 446 | var modalInstance = $uibModal.open( |
| 447 | { | 447 | { |
| 448 | ariaLabelledBy: 'Busqueda de Cliente', | 448 | ariaLabelledBy: 'Busqueda de Cliente', |
| 449 | templateUrl: 'foca-busqueda-cliente-modal.html', | 449 | templateUrl: 'foca-busqueda-cliente-modal.html', |
| 450 | controller: 'focaBusquedaClienteModalController', | 450 | controller: 'focaBusquedaClienteModalController', |
| 451 | resolve: { | 451 | resolve: { |
| 452 | vendedor: function() { return $scope.notaPedido.vendedor; }, | 452 | vendedor: function() { return $scope.notaPedido.vendedor; }, |
| 453 | cobrador: function() { return null; } | 453 | cobrador: function() { return null; } |
| 454 | }, | 454 | }, |
| 455 | size: 'lg' | 455 | size: 'lg' |
| 456 | } | 456 | } |
| 457 | ); | 457 | ); |
| 458 | modalInstance.result.then( | 458 | modalInstance.result.then( |
| 459 | function(cliente) { | 459 | function(cliente) { |
| 460 | $scope.abrirModalDomicilios(cliente); | 460 | $scope.abrirModalDomicilios(cliente); |
| 461 | $scope.cliente = cliente; | 461 | $scope.cliente = cliente; |
| 462 | }, function() { | 462 | }, function() { |
| 463 | if (APP !== 'distribuidor') $scope.seleccionarCliente(); | 463 | if (APP !== 'distribuidor') $scope.seleccionarCliente(); |
| 464 | } | 464 | } |
| 465 | ); | 465 | ); |
| 466 | } | 466 | } |
| 467 | }, ocultarVendedor); | 467 | }, ocultarVendedor); |
| 468 | }; | 468 | }; |
| 469 | 469 | ||
| 470 | $scope.abrirModalProveedores = function(callback) { | 470 | $scope.abrirModalProveedores = function(callback) { |
| 471 | if (validarNotaRemitada()) { | 471 | if (validarNotaRemitada()) { |
| 472 | var parametrosModal = { | 472 | var parametrosModal = { |
| 473 | titulo: 'Búsqueda de Proveedor', | 473 | titulo: 'Búsqueda de Proveedor', |
| 474 | query: '/proveedor', | 474 | query: '/proveedor', |
| 475 | columnas: [ | 475 | columnas: [ |
| 476 | { | 476 | { |
| 477 | nombre: 'Código', | 477 | nombre: 'Código', |
| 478 | propiedad: 'COD', | 478 | propiedad: 'COD', |
| 479 | filtro: { | 479 | filtro: { |
| 480 | nombre: 'rellenarDigitos', | 480 | nombre: 'rellenarDigitos', |
| 481 | parametro: 5 | 481 | parametro: 5 |
| 482 | } | 482 | } |
| 483 | }, | 483 | }, |
| 484 | { | 484 | { |
| 485 | nombre: 'Nombre', | 485 | nombre: 'Nombre', |
| 486 | propiedad: 'NOM' | 486 | propiedad: 'NOM' |
| 487 | }, | 487 | }, |
| 488 | { | 488 | { |
| 489 | nombre: 'CUIT', | 489 | nombre: 'CUIT', |
| 490 | propiedad: 'CUIT' | 490 | propiedad: 'CUIT' |
| 491 | } | 491 | } |
| 492 | ], | 492 | ], |
| 493 | tipo: 'POST', | 493 | tipo: 'POST', |
| 494 | json: {razonCuitCod: ''} | 494 | json: {razonCuitCod: ''} |
| 495 | }; | 495 | }; |
| 496 | focaModalService.modal(parametrosModal).then( | 496 | focaModalService.modal(parametrosModal).then( |
| 497 | function(proveedor) { | 497 | function(proveedor) { |
| 498 | $scope.notaPedido.proveedor = proveedor; | 498 | $scope.notaPedido.proveedor = proveedor; |
| 499 | $scope.$broadcast('addCabecera', { | 499 | $scope.$broadcast('addCabecera', { |
| 500 | label: 'Proveedor:', | 500 | label: 'Proveedor:', |
| 501 | valor: $filter('rellenarDigitos')(proveedor.COD, 5) + ' - ' + | 501 | valor: $filter('rellenarDigitos')(proveedor.COD, 5) + ' - ' + |
| 502 | proveedor.NOM | 502 | proveedor.NOM |
| 503 | }); | 503 | }); |
| 504 | callback(); | 504 | callback(); |
| 505 | }, function() { | 505 | }, function() { |
| 506 | 506 | ||
| 507 | } | 507 | } |
| 508 | ); | 508 | ); |
| 509 | } | 509 | } |
| 510 | }; | 510 | }; |
| 511 | 511 | ||
| 512 | $scope.abrirModalDomicilios = function(cliente) { | 512 | $scope.abrirModalDomicilios = function(cliente) { |
| 513 | var modalInstanceDomicilio = $uibModal.open( | 513 | var modalInstanceDomicilio = $uibModal.open( |
| 514 | { | 514 | { |
| 515 | ariaLabelledBy: 'Busqueda de Domicilios', | 515 | ariaLabelledBy: 'Busqueda de Domicilios', |
| 516 | templateUrl: 'modal-domicilio.html', | 516 | templateUrl: 'modal-domicilio.html', |
| 517 | controller: 'focaModalDomicilioController', | 517 | controller: 'focaModalDomicilioController', |
| 518 | resolve: { | 518 | resolve: { |
| 519 | idCliente: function() { return cliente.cod; }, | 519 | idCliente: function() { return cliente.cod; }, |
| 520 | esNuevo: function() { return cliente.esNuevo; } | 520 | esNuevo: function() { return cliente.esNuevo; } |
| 521 | }, | 521 | }, |
| 522 | size: 'lg', | 522 | size: 'lg', |
| 523 | } | 523 | } |
| 524 | ); | 524 | ); |
| 525 | modalInstanceDomicilio.result.then( | 525 | modalInstanceDomicilio.result.then( |
| 526 | function(domicilio) { | 526 | function(domicilio) { |
| 527 | $scope.notaPedido.domicilio = domicilio; | 527 | $scope.notaPedido.domicilio = domicilio; |
| 528 | $scope.notaPedido.cliente = { | 528 | $scope.notaPedido.cliente = { |
| 529 | COD: cliente.cod, | 529 | COD: cliente.cod, |
| 530 | CUIT: cliente.cuit, | 530 | CUIT: cliente.cuit, |
| 531 | NOM: cliente.nom, | 531 | NOM: cliente.nom, |
| 532 | MOD: cliente.mod | 532 | MOD: cliente.mod |
| 533 | }; | 533 | }; |
| 534 | var domicilioStamp = | 534 | var domicilioStamp = |
| 535 | domicilio.Calle + ' ' + domicilio.Numero + ', ' + | 535 | domicilio.Calle + ' ' + domicilio.Numero + ', ' + |
| 536 | domicilio.Localidad + ', ' + domicilio.Provincia; | 536 | domicilio.Localidad + ', ' + domicilio.Provincia; |
| 537 | $scope.notaPedido.domicilioStamp = domicilioStamp; | 537 | $scope.notaPedido.domicilioStamp = domicilioStamp; |
| 538 | 538 | ||
| 539 | $scope.notaPedido.notaPedidoPuntoDescarga = domicilio.puntosDescarga; | 539 | $scope.notaPedido.notaPedidoPuntoDescarga = domicilio.puntosDescarga; |
| 540 | 540 | ||
| 541 | $scope.$broadcast('addCabecera', { | 541 | $scope.$broadcast('addCabecera', { |
| 542 | label: 'Cliente:', | 542 | label: 'Cliente:', |
| 543 | valor: $filter('rellenarDigitos')(cliente.cod, 5) + ' - ' + cliente.nom | 543 | valor: $filter('rellenarDigitos')(cliente.cod, 5) + ' - ' + cliente.nom |
| 544 | }); | 544 | }); |
| 545 | $scope.$broadcast('addCabecera', { | 545 | $scope.$broadcast('addCabecera', { |
| 546 | label: 'Domicilio:', | 546 | label: 'Domicilio:', |
| 547 | valor: domicilioStamp | 547 | valor: domicilioStamp |
| 548 | }); | 548 | }); |
| 549 | if (domicilio.verPuntos) { | 549 | if (domicilio.verPuntos) { |
| 550 | delete $scope.notaPedido.domicilio.verPuntos; | 550 | delete $scope.notaPedido.domicilio.verPuntos; |
| 551 | $scope.seleccionarPuntosDeDescarga(); | 551 | $scope.seleccionarPuntosDeDescarga(); |
| 552 | } else { | 552 | } else { |
| 553 | crearNotaPedidoService | 553 | crearNotaPedidoService |
| 554 | .getPuntosDescargaByClienDom(domicilio.id, cliente.cod) | 554 | .getPuntosDescargaByClienDom(domicilio.id, cliente.cod) |
| 555 | .then(function(res) { | 555 | .then(function(res) { |
| 556 | if (res.data.length) $scope.seleccionarPuntosDeDescarga(); | 556 | if (res.data.length) $scope.seleccionarPuntosDeDescarga(); |
| 557 | }); | 557 | }); |
| 558 | } | 558 | } |
| 559 | }, function() { | 559 | }, function() { |
| 560 | $scope.seleccionarCliente(true); | 560 | $scope.seleccionarCliente(true); |
| 561 | return; | 561 | return; |
| 562 | } | 562 | } |
| 563 | ); | 563 | ); |
| 564 | }; | 564 | }; |
| 565 | 565 | ||
| 566 | $scope.getTotal = function() { | 566 | $scope.getTotal = function() { |
| 567 | var total = 0; | 567 | var total = 0; |
| 568 | if ($scope.notaPedido.articulosNotaPedido) { | 568 | if ($scope.notaPedido.articulosNotaPedido) { |
| 569 | var arrayTempArticulos = $scope.notaPedido.articulosNotaPedido; | 569 | var arrayTempArticulos = $scope.notaPedido.articulosNotaPedido; |
| 570 | for (var i = 0; i < arrayTempArticulos.length; i++) { | 570 | for (var i = 0; i < arrayTempArticulos.length; i++) { |
| 571 | total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad; | 571 | total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad; |
| 572 | } | 572 | } |
| 573 | } | 573 | } |
| 574 | return parseFloat(total.toFixed(2)); | 574 | return parseFloat(total.toFixed(2)); |
| 575 | }; | 575 | }; |
| 576 | 576 | ||
| 577 | $scope.getSubTotal = function() { | 577 | $scope.getSubTotal = function() { |
| 578 | if ($scope.articuloACargar) { | 578 | if ($scope.articuloACargar) { |
| 579 | return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad; | 579 | return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad; |
| 580 | } | 580 | } |
| 581 | }; | 581 | }; |
| 582 | 582 | ||
| 583 | $scope.seleccionarPreciosYCondiciones = function() { | 583 | $scope.seleccionarPreciosYCondiciones = function() { |
| 584 | if (!$scope.notaPedido.cliente.COD) { | 584 | if (!$scope.notaPedido.cliente.COD) { |
| 585 | focaModalService.alert('Primero seleccione un cliente'); | 585 | focaModalService.alert('Primero seleccione un cliente'); |
| 586 | return; | 586 | return; |
| 587 | } | 587 | } |
| 588 | if (validarNotaRemitada()) { | 588 | if (validarNotaRemitada()) { |
| 589 | var modalInstance = $uibModal.open( | 589 | var modalInstance = $uibModal.open( |
| 590 | { | 590 | { |
| 591 | ariaLabelledBy: 'Busqueda de Precio Condición', | 591 | ariaLabelledBy: 'Busqueda de Precio Condición', |
| 592 | templateUrl: 'modal-precio-condicion.html', | 592 | templateUrl: 'modal-precio-condicion.html', |
| 593 | controller: 'focaModalPrecioCondicionController', | 593 | controller: 'focaModalPrecioCondicionController', |
| 594 | size: 'lg', | 594 | size: 'lg', |
| 595 | resolve: { | 595 | resolve: { |
| 596 | idListaPrecio: function() { | 596 | idListaPrecio: function() { |
| 597 | return $scope.notaPedido.cliente.MOD || null; | 597 | return $scope.notaPedido.cliente.MOD || null; |
| 598 | } | 598 | } |
| 599 | } | 599 | } |
| 600 | } | 600 | } |
| 601 | ); | 601 | ); |
| 602 | modalInstance.result.then( | 602 | modalInstance.result.then( |
| 603 | function(precioCondicion) { | 603 | function(precioCondicion) { |
| 604 | var cabecera = ''; | 604 | var cabecera = ''; |
| 605 | var plazosConcat = ''; | 605 | var plazosConcat = ''; |
| 606 | if (!Array.isArray(precioCondicion)) { | 606 | if (!Array.isArray(precioCondicion)) { |
| 607 | $scope.notaPedido.notaPedidoPlazo = precioCondicion.plazoPago; | 607 | $scope.notaPedido.notaPedidoPlazo = precioCondicion.plazoPago; |
| 608 | $scope.notaPedido.precioCondicion = precioCondicion; | 608 | $scope.notaPedido.precioCondicion = precioCondicion; |
| 609 | $scope.notaPedido.idPrecioCondicion = precioCondicion.id; | 609 | $scope.notaPedido.idPrecioCondicion = precioCondicion.id; |
| 610 | $scope.idLista = precioCondicion.idListaPrecio; | 610 | $scope.idLista = precioCondicion.idListaPrecio; |
| 611 | for (var i = 0; i < precioCondicion.plazoPago.length; i++) { | 611 | for (var i = 0; i < precioCondicion.plazoPago.length; i++) { |
| 612 | plazosConcat += precioCondicion.plazoPago[i].dias + ' '; | 612 | plazosConcat += precioCondicion.plazoPago[i].dias + ' '; |
| 613 | } | 613 | } |
| 614 | cabecera = $filter('rellenarDigitos')(precioCondicion.id, 4) + | 614 | cabecera = $filter('rellenarDigitos')(precioCondicion.id, 4) + |
| 615 | ' - ' + precioCondicion.nombre + ' ' + plazosConcat.trim(); | 615 | ' - ' + precioCondicion.nombre + ' ' + plazosConcat.trim(); |
| 616 | } else { //Cuando se ingresan los plazos manualmente | 616 | } else { //Cuando se ingresan los plazos manualmente |
| 617 | $scope.notaPedido.idPrecioCondicion = 0; | 617 | $scope.notaPedido.idPrecioCondicion = 0; |
| 618 | //-1, el modal productos busca todos los productos | 618 | //-1, el modal productos busca todos los productos |
| 619 | $scope.idLista = -1; | 619 | $scope.idLista = -1; |
| 620 | $scope.notaPedido.notaPedidoPlazo = precioCondicion; | 620 | $scope.notaPedido.notaPedidoPlazo = precioCondicion; |
| 621 | for (var j = 0; j < precioCondicion.length; j++) { | 621 | for (var j = 0; j < precioCondicion.length; j++) { |
| 622 | plazosConcat += precioCondicion[j].dias + ' '; | 622 | plazosConcat += precioCondicion[j].dias + ' '; |
| 623 | } | 623 | } |
| 624 | cabecera = 'Ingreso manual ' + plazosConcat.trim(); | 624 | cabecera = 'Ingreso manual ' + plazosConcat.trim(); |
| 625 | } | 625 | } |
| 626 | $scope.notaPedido.articulosNotaPedido = []; | 626 | $scope.notaPedido.articulosNotaPedido = []; |
| 627 | $scope.$broadcast('addCabecera', { | 627 | $scope.$broadcast('addCabecera', { |
| 628 | label: 'Precios y condiciones:', | 628 | label: 'Precios y condiciones:', |
| 629 | valor: cabecera | 629 | valor: cabecera |
| 630 | }); | 630 | }); |
| 631 | }, function() { | 631 | }, function() { |
| 632 | 632 | ||
| 633 | } | 633 | } |
| 634 | ); | 634 | ); |
| 635 | } | 635 | } |
| 636 | }; | 636 | }; |
| 637 | 637 | ||
| 638 | $scope.seleccionarMoneda = function() { | 638 | $scope.seleccionarMoneda = function() { |
| 639 | if (validarNotaRemitada()) { | 639 | if (validarNotaRemitada()) { |
| 640 | var parametrosModal = { | 640 | var parametrosModal = { |
| 641 | titulo: 'Búsqueda de monedas', | 641 | titulo: 'Búsqueda de monedas', |
| 642 | query: '/moneda', | 642 | query: '/moneda', |
| 643 | columnas: [ | 643 | columnas: [ |
| 644 | { | 644 | { |
| 645 | propiedad: 'DETALLE', | 645 | propiedad: 'DETALLE', |
| 646 | nombre: 'Nombre' | 646 | nombre: 'Nombre' |
| 647 | }, | 647 | }, |
| 648 | { | 648 | { |
| 649 | propiedad: 'SIMBOLO', | 649 | propiedad: 'SIMBOLO', |
| 650 | nombre: 'Símbolo' | 650 | nombre: 'Símbolo' |
| 651 | } | 651 | } |
| 652 | ], | 652 | ], |
| 653 | size: 'md' | 653 | size: 'md' |
| 654 | }; | 654 | }; |
| 655 | focaModalService.modal(parametrosModal).then( | 655 | focaModalService.modal(parametrosModal).then( |
| 656 | function(moneda) { | 656 | function(moneda) { |
| 657 | $scope.abrirModalCotizacion(moneda); | 657 | $scope.abrirModalCotizacion(moneda); |
| 658 | }, function() { | 658 | }, function() { |
| 659 | 659 | ||
| 660 | } | 660 | } |
| 661 | ); | 661 | ); |
| 662 | } | 662 | } |
| 663 | }; | 663 | }; |
| 664 | 664 | ||
| 665 | $scope.seleccionarObservaciones = function() { | 665 | $scope.seleccionarObservaciones = function() { |
| 666 | var observacion = { | 666 | var observacion = { |
| 667 | titulo: 'Ingrese Observaciones', | 667 | titulo: 'Ingrese Observaciones', |
| 668 | value: $scope.notaPedido.observaciones, | 668 | value: $scope.notaPedido.observaciones, |
| 669 | maxlength: 155, | 669 | maxlength: 155, |
| 670 | textarea: true | 670 | textarea: true |
| 671 | }; | 671 | }; |
| 672 | 672 | ||
| 673 | focaModalService | 673 | focaModalService |
| 674 | .prompt(observacion) | 674 | .prompt(observacion) |
| 675 | .then(function(observaciones) { | 675 | .then(function(observaciones) { |
| 676 | $scope.$broadcast('addCabecera', { | ||
| 677 | label: 'Observaciones:', | ||
| 678 | valor: observaciones | ||
| 679 | }); | ||
| 680 | $scope.notaPedido.observaciones = observaciones; | 676 | $scope.notaPedido.observaciones = observaciones; |
| 681 | }); | 677 | }); |
| 682 | }; | 678 | }; |
| 683 | 679 | ||
| 684 | $scope.abrirModalCotizacion = function(moneda) { | 680 | $scope.abrirModalCotizacion = function(moneda) { |
| 685 | var modalInstance = $uibModal.open( | 681 | var modalInstance = $uibModal.open( |
| 686 | { | 682 | { |
| 687 | ariaLabelledBy: 'Busqueda de Cotización', | 683 | ariaLabelledBy: 'Busqueda de Cotización', |
| 688 | templateUrl: 'modal-cotizacion.html', | 684 | templateUrl: 'modal-cotizacion.html', |
| 689 | controller: 'focaModalCotizacionController', | 685 | controller: 'focaModalCotizacionController', |
| 690 | size: 'lg', | 686 | size: 'lg', |
| 691 | resolve: { | 687 | resolve: { |
| 692 | idMoneda: function() { | 688 | idMoneda: function() { |
| 693 | return moneda.ID; | 689 | return moneda.ID; |
| 694 | } | 690 | } |
| 695 | } | 691 | } |
| 696 | } | 692 | } |
| 697 | ); | 693 | ); |
| 698 | modalInstance.result.then( | 694 | modalInstance.result.then( |
| 699 | function(cotizacion) { | 695 | function(cotizacion) { |
| 700 | var articulosTablaTemp = $scope.notaPedido.articulosNotaPedido || []; | 696 | var articulosTablaTemp = $scope.notaPedido.articulosNotaPedido || []; |
| 701 | for (var i = 0; i < articulosTablaTemp.length; i++) { | 697 | for (var i = 0; i < articulosTablaTemp.length; i++) { |
| 702 | articulosTablaTemp[i].precio = articulosTablaTemp[i].precio * | 698 | articulosTablaTemp[i].precio = articulosTablaTemp[i].precio * |
| 703 | $scope.notaPedido.cotizacion.VENDEDOR; | 699 | $scope.notaPedido.cotizacion.VENDEDOR; |
| 704 | articulosTablaTemp[i].precio = articulosTablaTemp[i].precio / | 700 | articulosTablaTemp[i].precio = articulosTablaTemp[i].precio / |
| 705 | cotizacion.VENDEDOR; | 701 | cotizacion.VENDEDOR; |
| 706 | } | 702 | } |
| 707 | $scope.notaPedido.articulosNotaPedido = articulosTablaTemp; | 703 | $scope.notaPedido.articulosNotaPedido = articulosTablaTemp; |
| 708 | $scope.notaPedido.cotizacion = cotizacion; | 704 | $scope.notaPedido.cotizacion = cotizacion; |
| 709 | $scope.notaPedido.cotizacion.moneda = moneda; | 705 | $scope.notaPedido.cotizacion.moneda = moneda; |
| 710 | if (moneda.DETALLE === 'PESOS ARGENTINOS') { | 706 | if (moneda.DETALLE === 'PESOS ARGENTINOS') { |
| 711 | $scope.$broadcast('removeCabecera', 'Moneda:'); | 707 | $scope.$broadcast('removeCabecera', 'Moneda:'); |
| 712 | $scope.$broadcast('removeCabecera', 'Fecha cotizacion:'); | 708 | $scope.$broadcast('removeCabecera', 'Fecha cotizacion:'); |
| 713 | $scope.$broadcast('removeCabecera', 'Cotizacion:'); | 709 | $scope.$broadcast('removeCabecera', 'Cotizacion:'); |
| 714 | } else { | 710 | } else { |
| 715 | $scope.$broadcast('addCabecera', { | 711 | $scope.$broadcast('addCabecera', { |
| 716 | label: 'Moneda:', | 712 | label: 'Moneda:', |
| 717 | valor: moneda.DETALLE | 713 | valor: moneda.DETALLE |
| 718 | }); | 714 | }); |
| 719 | $scope.$broadcast('addCabecera', { | 715 | $scope.$broadcast('addCabecera', { |
| 720 | label: 'Fecha cotizacion:', | 716 | label: 'Fecha cotizacion:', |
| 721 | valor: $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy') | 717 | valor: $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy') |
| 722 | }); | 718 | }); |
| 723 | $scope.$broadcast('addCabecera', { | 719 | $scope.$broadcast('addCabecera', { |
| 724 | label: 'Cotizacion:', | 720 | label: 'Cotizacion:', |
| 725 | valor: $filter('number')(cotizacion.VENDEDOR, '2') | 721 | valor: $filter('number')(cotizacion.VENDEDOR, '2') |
| 726 | }); | 722 | }); |
| 727 | } | 723 | } |
| 728 | }, function() { | 724 | }, function() { |
| 729 | 725 | ||
| 730 | } | 726 | } |
| 731 | ); | 727 | ); |
| 732 | }; | 728 | }; |
| 733 | 729 | ||
| 734 | $scope.agregarATabla = function(key) { | 730 | $scope.agregarATabla = function(key) { |
| 735 | if (key === 13) { | 731 | if (key === 13) { |
| 736 | if ($scope.articuloACargar.cantidad === undefined || | 732 | if ($scope.articuloACargar.cantidad === undefined || |
| 737 | $scope.articuloACargar.cantidad === 0 || | 733 | $scope.articuloACargar.cantidad === 0 || |
| 738 | $scope.articuloACargar.cantidad === null ) { | 734 | $scope.articuloACargar.cantidad === null ) { |
| 739 | focaModalService.alert('El valor debe ser al menos 1'); | 735 | focaModalService.alert('El valor debe ser al menos 1'); |
| 740 | return; | 736 | return; |
| 741 | } | 737 | } |
| 742 | delete $scope.articuloACargar.sectorCodigo; | 738 | delete $scope.articuloACargar.sectorCodigo; |
| 743 | $scope.notaPedido.articulosNotaPedido.push($scope.articuloACargar); | 739 | $scope.notaPedido.articulosNotaPedido.push($scope.articuloACargar); |
| 744 | $scope.cargando = true; | 740 | $scope.cargando = true; |
| 745 | } | 741 | } |
| 746 | }; | 742 | }; |
| 747 | 743 | ||
| 748 | $scope.quitarArticulo = function(key) { | 744 | $scope.quitarArticulo = function(key) { |
| 749 | $scope.notaPedido.articulosNotaPedido.splice(key, 1); | 745 | $scope.notaPedido.articulosNotaPedido.splice(key, 1); |
| 750 | }; | 746 | }; |
| 751 | 747 | ||
| 752 | $scope.editarArticulo = function(key, articulo) { | 748 | $scope.editarArticulo = function(key, articulo) { |
| 753 | if (key === 13) { | 749 | if (key === 13) { |
| 754 | if (articulo.cantidad === null || articulo.cantidad === 0 || | 750 | if (articulo.cantidad === null || articulo.cantidad === 0 || |
| 755 | articulo.cantidad === undefined) { | 751 | articulo.cantidad === undefined) { |
| 756 | focaModalService.alert('El valor debe ser al menos 1'); | 752 | focaModalService.alert('El valor debe ser al menos 1'); |
| 757 | return; | 753 | return; |
| 758 | } | 754 | } |
| 759 | articulo.editCantidad = false; | 755 | articulo.editCantidad = false; |
| 760 | articulo.editPrecio = false; | 756 | articulo.editPrecio = false; |
| 761 | } | 757 | } |
| 762 | }; | 758 | }; |
| 763 | 759 | ||
| 764 | $scope.cambioEdit = function(articulo, propiedad) { | 760 | $scope.cambioEdit = function(articulo, propiedad) { |
| 765 | if (propiedad === 'cantidad') { | 761 | if (propiedad === 'cantidad') { |
| 766 | articulo.editCantidad = true; | 762 | articulo.editCantidad = true; |
| 767 | } else if (propiedad === 'precio') { | 763 | } else if (propiedad === 'precio') { |
| 768 | articulo.editPrecio = true; | 764 | articulo.editPrecio = true; |
| 769 | } | 765 | } |
| 770 | }; | 766 | }; |
| 771 | 767 | ||
| 772 | $scope.resetFilter = function() { | 768 | $scope.resetFilter = function() { |
| 773 | $scope.articuloACargar = {}; | 769 | $scope.articuloACargar = {}; |
| 774 | $scope.cargando = true; | 770 | $scope.cargando = true; |
| 775 | }; | 771 | }; |
| 776 | //Recibe aviso si el teclado está en uso | 772 | //Recibe aviso si el teclado está en uso |
| 777 | $rootScope.$on('usarTeclado', function(event, data) { | 773 | $rootScope.$on('usarTeclado', function(event, data) { |
| 778 | if (data) { | 774 | if (data) { |
| 779 | $scope.mostrarTeclado = true; | 775 | $scope.mostrarTeclado = true; |
| 780 | return; | 776 | return; |
| 781 | } | 777 | } |
| 782 | $scope.mostrarTeclado = false; | 778 | $scope.mostrarTeclado = false; |
| 783 | }); | 779 | }); |
| 784 | 780 | ||
| 785 | $scope.selectFocus = function($event) { | 781 | $scope.selectFocus = function($event) { |
| 786 | // Si el teclado esta en uso no selecciona el valor | 782 | // Si el teclado esta en uso no selecciona el valor |
| 787 | if ($scope.mostrarTeclado) { | 783 | if ($scope.mostrarTeclado) { |
| 788 | return; | 784 | return; |
| 789 | } | 785 | } |
| 790 | $event.target.select(); | 786 | $event.target.select(); |
| 791 | }; | 787 | }; |
| 792 | 788 | ||
| 793 | $scope.salir = function() { | 789 | $scope.salir = function() { |
| 794 | $location.path('/'); | 790 | $location.path('/'); |
| 795 | }; | 791 | }; |
| 796 | 792 | ||
| 797 | $scope.parsearATexto = function(articulo) { | 793 | $scope.parsearATexto = function(articulo) { |
| 798 | articulo.cantidad = parseFloat(articulo.cantidad); | 794 | articulo.cantidad = parseFloat(articulo.cantidad); |
| 799 | articulo.precio = parseFloat(articulo.precio); | 795 | articulo.precio = parseFloat(articulo.precio); |
| 800 | }; | 796 | }; |
| 801 | 797 | ||
| 802 | function setearNotaPedido(notaPedido) { | 798 | function setearNotaPedido(notaPedido) { |
| 803 | //añado cabeceras | 799 | //añado cabeceras |
| 804 | $scope.notaPedido = notaPedido; | 800 | $scope.notaPedido = notaPedido; |
| 805 | $scope.$broadcast('removeCabecera', 'Bomba:'); | 801 | $scope.$broadcast('removeCabecera', 'Bomba:'); |
| 806 | $scope.$broadcast('removeCabecera', 'Kilometros:'); | 802 | $scope.$broadcast('removeCabecera', 'Kilometros:'); |
| 807 | 803 | ||
| 808 | var cabeceras = []; | 804 | var cabeceras = []; |
| 809 | 805 | ||
| 810 | if (notaPedido.cotizacion.moneda.CODIGO_AFIP != 'PES') { | 806 | if (notaPedido.cotizacion.moneda.CODIGO_AFIP != 'PES') { |
| 811 | cabeceras.push({ | 807 | cabeceras.push({ |
| 812 | label: 'Moneda:', | 808 | label: 'Moneda:', |
| 813 | valor: notaPedido.cotizacion.moneda.DETALLE | 809 | valor: notaPedido.cotizacion.moneda.DETALLE |
| 814 | }); | 810 | }); |
| 815 | cabeceras.push({ | 811 | cabeceras.push({ |
| 816 | label: 'Fecha cotizacion:', | 812 | label: 'Fecha cotizacion:', |
| 817 | valor: $filter('date')(notaPedido.cotizacion.FECHA, | 813 | valor: $filter('date')(notaPedido.cotizacion.FECHA, |
| 818 | 'dd/MM/yyyy') | 814 | 'dd/MM/yyyy') |
| 819 | }); | 815 | }); |
| 820 | cabeceras.push({ | 816 | cabeceras.push({ |
| 821 | label: 'Cotizacion:', | 817 | label: 'Cotizacion:', |
| 822 | valor: $filter('number')(notaPedido.cotizacion.VENDEDOR, | 818 | valor: $filter('number')(notaPedido.cotizacion.VENDEDOR, |
| 823 | '2') | 819 | '2') |
| 824 | }); | 820 | }); |
| 825 | } | 821 | } |
| 826 | 822 | ||
| 827 | if (notaPedido.cliente.COD) { | 823 | if (notaPedido.cliente.COD) { |
| 828 | cabeceras.push({ | 824 | cabeceras.push({ |
| 829 | label: 'Cliente:', | 825 | label: 'Cliente:', |
| 830 | valor: notaPedido.cliente.NOM | 826 | valor: notaPedido.cliente.NOM |
| 831 | }); | 827 | }); |
| 832 | cabeceras.push({ | 828 | cabeceras.push({ |
| 833 | label: 'Domicilio:', | 829 | label: 'Domicilio:', |
| 834 | valor: notaPedido.domicilioStamp | 830 | valor: notaPedido.domicilioStamp |
| 835 | }); | 831 | }); |
| 836 | } | 832 | } |
| 837 | 833 | ||
| 838 | if (notaPedido.vendedor.NUM) { | 834 | if (notaPedido.vendedor.NUM) { |
| 839 | cabeceras.push({ | 835 | cabeceras.push({ |
| 840 | label: 'Vendedor:', | 836 | label: 'Vendedor:', |
| 841 | valor: $filter('rellenarDigitos')(notaPedido.vendedor.NUM, 3) + | 837 | valor: $filter('rellenarDigitos')(notaPedido.vendedor.NUM, 3) + |
| 842 | ' - ' + notaPedido.vendedor.NOM | 838 | ' - ' + notaPedido.vendedor.NOM |
| 843 | }); | 839 | }); |
| 844 | } | 840 | } |
| 845 | 841 | ||
| 846 | if (notaPedido.proveedor.COD) { | 842 | if (notaPedido.proveedor.COD) { |
| 847 | cabeceras.push({ | 843 | cabeceras.push({ |
| 848 | label: 'Proveedor:', | 844 | label: 'Proveedor:', |
| 849 | valor: $filter('rellenarDigitos')(notaPedido.proveedor.COD, 5) + | 845 | valor: $filter('rellenarDigitos')(notaPedido.proveedor.COD, 5) + |
| 850 | ' - ' + notaPedido.proveedor.NOM | 846 | ' - ' + notaPedido.proveedor.NOM |
| 851 | }); | 847 | }); |
| 852 | } | 848 | } |
| 853 | 849 | ||
| 854 | if (notaPedido.notaPedidoPlazo.length) { | 850 | if (notaPedido.notaPedidoPlazo.length) { |
| 855 | cabeceras.push({ | 851 | cabeceras.push({ |
| 856 | label: 'Precios y condiciones:', | 852 | label: 'Precios y condiciones:', |
| 857 | valor: valorPrecioCondicion() + ' ' + | 853 | valor: valorPrecioCondicion() + ' ' + |
| 858 | notaPedidoBusinessService | 854 | notaPedidoBusinessService |
| 859 | .plazoToString(notaPedido.notaPedidoPlazo) | 855 | .plazoToString(notaPedido.notaPedidoPlazo) |
| 860 | }); | 856 | }); |
| 861 | } | 857 | } |
| 862 | 858 | ||
| 863 | if (notaPedido.flete !== undefined) { | 859 | if (notaPedido.flete !== undefined) { |
| 864 | cabeceras.push({ | 860 | cabeceras.push({ |
| 865 | label: 'Flete:', | 861 | label: 'Flete:', |
| 866 | valor: notaPedido.fob === 1 ? 'FOB' : ( | 862 | valor: notaPedido.fob === 1 ? 'FOB' : ( |
| 867 | notaPedido.flete === 1 ? 'Si' : 'No') | 863 | notaPedido.flete === 1 ? 'Si' : 'No') |
| 868 | }); | 864 | }); |
| 869 | } | 865 | } |
| 870 | 866 | ||
| 871 | function valorPrecioCondicion() { | 867 | function valorPrecioCondicion() { |
| 872 | if (notaPedido.idPrecioCondicion > 0) { | 868 | if (notaPedido.idPrecioCondicion > 0) { |
| 873 | return notaPedido.precioCondicion.nombre; | 869 | return notaPedido.precioCondicion.nombre; |
| 874 | } else { | 870 | } else { |
| 875 | return 'Ingreso Manual'; | 871 | return 'Ingreso Manual'; |
| 876 | } | 872 | } |
| 877 | } | 873 | } |
| 878 | 874 | ||
| 879 | if (notaPedido.flete === 1) { | 875 | if (notaPedido.flete === 1) { |
| 880 | var cabeceraBomba = { | 876 | var cabeceraBomba = { |
| 881 | label: 'Bomba:', | 877 | label: 'Bomba:', |
| 882 | valor: notaPedido.bomba === 1 ? 'Si' : 'No' | 878 | valor: notaPedido.bomba === 1 ? 'Si' : 'No' |
| 883 | }; | 879 | }; |
| 884 | if (notaPedido.kilometros) { | 880 | if (notaPedido.kilometros) { |
| 885 | var cabeceraKilometros = { | 881 | var cabeceraKilometros = { |
| 886 | label: 'Kilometros:', | 882 | label: 'Kilometros:', |
| 887 | valor: notaPedido.kilometros | 883 | valor: notaPedido.kilometros |
| 888 | }; | 884 | }; |
| 889 | cabeceras.push(cabeceraKilometros); | 885 | cabeceras.push(cabeceraKilometros); |
| 890 | } | 886 | } |
| 891 | cabeceras.push(cabeceraBomba); | 887 | cabeceras.push(cabeceraBomba); |
| 892 | } | 888 | } |
| 893 | 889 | ||
| 894 | notaPedidoBusinessService.calcularArticulos($scope.notaPedido.articulosNotaPedido, | 890 | notaPedidoBusinessService.calcularArticulos($scope.notaPedido.articulosNotaPedido, |
| 895 | notaPedido.cotizacion.VENDEDOR); | 891 | notaPedido.cotizacion.VENDEDOR); |
| 896 | 892 | ||
| 897 | if (notaPedido.idPrecioCondicion > 0) { | 893 | if (notaPedido.idPrecioCondicion > 0) { |
| 898 | $scope.idLista = notaPedido.precioCondicion.idListaPrecio; | 894 | $scope.idLista = notaPedido.precioCondicion.idListaPrecio; |
| 899 | } else { | 895 | } else { |
| 900 | $scope.idLista = -1; | 896 | $scope.idLista = -1; |
| 901 | } | 897 | } |
| 902 | 898 | ||
| 903 | $scope.puntoVenta = $filter('rellenarDigitos')( | 899 | $scope.puntoVenta = $filter('rellenarDigitos')( |
| 904 | notaPedido.sucursal, 4 | 900 | notaPedido.sucursal, 4 |
| 905 | ); | 901 | ); |
| 906 | 902 | ||
| 907 | $scope.comprobante = $filter('rellenarDigitos')( | 903 | $scope.comprobante = $filter('rellenarDigitos')( |
| 908 | notaPedido.numeroNotaPedido, 8 | 904 | notaPedido.numeroNotaPedido, 8 |
| 909 | ); | 905 | ); |
| 910 | 906 | ||
| 911 | $scope.notaPedido.notaPedidoPuntoDescarga = | 907 | $scope.notaPedido.notaPedidoPuntoDescarga = |
| 912 | formatearPuntosDescarga(notaPedido.notaPedidoPuntoDescarga || []); | 908 | formatearPuntosDescarga(notaPedido.notaPedidoPuntoDescarga || []); |
| 913 | addArrayCabecera(cabeceras); | 909 | addArrayCabecera(cabeceras); |
| 914 | } | 910 | } |
| 915 | 911 | ||
| 916 | function addArrayCabecera(array) { | 912 | function addArrayCabecera(array) { |
| 917 | for (var i = 0; i < array.length; i++) { | 913 | for (var i = 0; i < array.length; i++) { |
| 918 | $scope.$broadcast('addCabecera', { | 914 | $scope.$broadcast('addCabecera', { |
| 919 | label: array[i].label, | 915 | label: array[i].label, |
| 920 | valor: array[i].valor | 916 | valor: array[i].valor |
| 921 | }); | 917 | }); |
| 922 | } | 918 | } |
| 923 | } | 919 | } |
| 924 | 920 | ||
| 925 | function validarNotaRemitada() { | 921 | function validarNotaRemitada() { |
| 926 | if (!$scope.notaPedido.idRemito) { | 922 | if (!$scope.notaPedido.idRemito) { |
| 927 | return true; | 923 | return true; |
| 928 | } else { | 924 | } else { |
| 929 | focaModalService.alert('No se puede editar una nota de pedido remitada'); | 925 | focaModalService.alert('No se puede editar una nota de pedido remitada'); |
| 930 | return false; | 926 | return false; |
| 931 | } | 927 | } |
| 932 | } | 928 | } |
| 933 | 929 | ||
| 934 | function formatearPuntosDescarga(puntosDescarga) { | 930 | function formatearPuntosDescarga(puntosDescarga) { |
| 935 | var result = []; | 931 | var result = []; |
| 936 | 932 | ||
| 937 | puntosDescarga.forEach(function(el) { | 933 | puntosDescarga.forEach(function(el) { |
| 938 | var puntoDescarga = result.filter(function(resultPunto) { | 934 | var puntoDescarga = result.filter(function(resultPunto) { |
| 939 | return resultPunto.id === el.idPuntoDescarga; | 935 | return resultPunto.id === el.idPuntoDescarga; |
| 940 | }); | 936 | }); |
| 941 | 937 | ||
| 942 | if (puntoDescarga.length) { | 938 | if (puntoDescarga.length) { |
| 943 | puntoDescarga[0].articulosAgregados.push({ | 939 | puntoDescarga[0].articulosAgregados.push({ |
| 944 | cantidad: el.cantidad, | 940 | cantidad: el.cantidad, |
| 945 | descripcion: el.producto.descripcion, | 941 | descripcion: el.producto.descripcion, |
| 946 | id: el.producto.id | 942 | id: el.producto.id |
| 947 | }); | 943 | }); |
| 948 | } else { | 944 | } else { |
| 949 | result.push({ | 945 | result.push({ |
| 950 | id: el.puntoDescarga.id, | 946 | id: el.puntoDescarga.id, |
| 951 | id_cliente: el.puntoDescarga.id_cliente, | 947 | id_cliente: el.puntoDescarga.id_cliente, |
| 952 | id_da_config_0: el.puntoDescarga.id_da_config_0, | 948 | id_da_config_0: el.puntoDescarga.id_da_config_0, |
| 953 | latitud: el.puntoDescarga.latitud, | 949 | latitud: el.puntoDescarga.latitud, |
| 954 | longitud: el.puntoDescarga.longitud, | 950 | longitud: el.puntoDescarga.longitud, |
| 955 | descripcion: el.puntoDescarga.descripcion, | 951 | descripcion: el.puntoDescarga.descripcion, |
| 956 | articulosAgregados: [ | 952 | articulosAgregados: [ |
| 957 | { | 953 | { |
| 958 | cantidad: el.cantidad, | 954 | cantidad: el.cantidad, |
| 959 | descripcion: el.producto.descripcion, | 955 | descripcion: el.producto.descripcion, |
| 960 | id: el.producto.id | 956 | id: el.producto.id |
| 961 | } | 957 | } |
| 962 | ] | 958 | ] |
| 963 | }); | 959 | }); |
| 964 | } | 960 | } |
| 965 | }); | 961 | }); |
| 966 | return result; | 962 | return result; |
| 967 | } | 963 | } |
| 968 | 964 | ||
| 969 | function salir() { | 965 | function salir() { |
| 970 | var confirmacion = false; | 966 | var confirmacion = false; |
| 971 | 967 | ||
| 972 | if (!angular.equals($scope.notaPedido, $scope.inicial)) { | 968 | if (!angular.equals($scope.notaPedido, $scope.inicial)) { |
| 973 | confirmacion = true; | 969 | confirmacion = true; |
| 974 | } | 970 | } |
| 975 | 971 | ||
| 976 | if (confirmacion) { | 972 | if (confirmacion) { |
| 977 | focaModalService.confirm( | 973 | focaModalService.confirm( |
| 978 | '¿Está seguro de que desea salir? Se perderán todos los datos cargados.' | 974 | '¿Está seguro de que desea salir? Se perderán todos los datos cargados.' |
| 979 | ).then(function(data) { | 975 | ).then(function(data) { |
| 980 | if (data) { | 976 | if (data) { |
| 981 | $location.path('/'); | 977 | $location.path('/'); |
| 982 | } | 978 | } |
| 983 | }); | 979 | }); |
| 984 | } else { | 980 | } else { |
| 985 | $location.path('/'); | 981 | $location.path('/'); |
| 986 | } | 982 | } |
| 987 | } | 983 | } |
| 988 | 984 | ||
| 989 | function getLSNotaPedido() { | 985 | function getLSNotaPedido() { |
| 990 | var notaPedido = JSON.parse($localStorage.notaPedido || null); | 986 | var notaPedido = JSON.parse($localStorage.notaPedido || null); |
| 991 | if (notaPedido) { | 987 | if (notaPedido) { |
| 992 | setearNotaPedido(notaPedido); | 988 | setearNotaPedido(notaPedido); |
| 993 | delete $localStorage.notaPedido; | 989 | delete $localStorage.notaPedido; |
| 994 | } | 990 | } |
| 995 | } | 991 | } |
| 996 | 992 | ||
| 997 | function deleteCliente() { | 993 | function deleteCliente() { |
| 998 | delete $scope.notaPedido.domicilioStamp; | 994 | delete $scope.notaPedido.domicilioStamp; |
| 999 | delete $scope.notaPedido.notaPedidoPuntoDescarga; | 995 | delete $scope.notaPedido.notaPedidoPuntoDescarga; |
| 1000 | $scope.notaPedido.domicilio = {dom: ''}; | 996 | $scope.notaPedido.domicilio = {dom: ''}; |
| 1001 | $scope.notaPedido.cliente = {}; | 997 | $scope.notaPedido.cliente = {}; |
| 1002 | $scope.$broadcast('removeCabecera', 'Cliente:'); | 998 | $scope.$broadcast('removeCabecera', 'Cliente:'); |
| 1003 | $scope.$broadcast('removeCabecera', 'Domicilio:'); | 999 | $scope.$broadcast('removeCabecera', 'Domicilio:'); |
| 1004 | $scope.$broadcast('removeCabecera', 'Puntos de descarga:'); | 1000 | $scope.$broadcast('removeCabecera', 'Puntos de descarga:'); |
| 1005 | } | 1001 | } |
| 1006 | } | 1002 | } |
| 1007 | ]); | 1003 | ]); |
| 1008 | 1004 |
src/views/nota-pedido.html
| 1 | <div class="crear-nota-pedido foca-crear row"> | 1 | <div class="crear-nota-pedido foca-crear row"> |
| 2 | <foca-cabecera-facturador | 2 | <foca-cabecera-facturador |
| 3 | titulo="'Nota de pedido'" | 3 | titulo="'Nota de pedido'" |
| 4 | numero="puntoVenta + '-' + comprobante" | 4 | numero="puntoVenta + '-' + comprobante" |
| 5 | fecha="notaPedido.fechaCarga" | 5 | fecha="notaPedido.fechaCarga" |
| 6 | class="mb-0 col-lg-12" | 6 | class="mb-0 col-lg-12" |
| 7 | busqueda="seleccionarNotaPedido" | 7 | busqueda="seleccionarNotaPedido" |
| 8 | ></foca-cabecera-facturador> | 8 | ></foca-cabecera-facturador> |
| 9 | <marquee | ||
| 10 | bgcolor="#FF9900" | ||
| 11 | behavior="scroll" | ||
| 12 | direction="left" | ||
| 13 | ng-bind="notaPedido.observaciones" | ||
| 14 | ></marquee> | ||
| 9 | <div class="col-lg-12"> | 15 | <div class="col-lg-12"> |
| 10 | <div class="row"> | 16 | <div class="row"> |
| 11 | <div class="col-12 col-md-10 col-lg-10 border border-light rounded"> | 17 | <div class="col-12 col-md-10 col-lg-10 border border-light rounded"> |
| 12 | <div class="row py-2 botonera-secundaria"> | 18 | <div class="row py-2 botonera-secundaria"> |
| 13 | <div class="col-12 foca-facturador-px"> | 19 | <div class="col-12 foca-facturador-px"> |
| 14 | <foca-botonera-facturador botones="botonera" extra="5" class="row"></foca-botonera-facturador> | 20 | <foca-botonera-facturador botones="botonera" extra="5" class="row"></foca-botonera-facturador> |
| 15 | </div> | 21 | </div> |
| 16 | </div> | 22 | </div> |
| 17 | <!-- PC --> | 23 | <!-- PC --> |
| 18 | <div class="row grilla-articulo align-items-end d-none d-sm-flex"> | 24 | <div class="row grilla-articulo align-items-end d-none d-sm-flex"> |
| 19 | <table class="table tabla-articulo table-striped table-sm mb-0 rounded-bottom"> | 25 | <table class="table tabla-articulo table-striped table-sm mb-0 rounded-bottom"> |
| 20 | <thead> | 26 | <thead> |
| 21 | <tr class="d-flex"> | 27 | <tr class="d-flex"> |
| 22 | <th valign="middle" class="">#</th> | 28 | <th valign="middle" class="">#</th> |
| 23 | <th valign="middle" class="col">Código</th> | 29 | <th valign="middle" class="col">Código</th> |
| 24 | <th valign="middle" class="col-4">Descripción</th> | 30 | <th valign="middle" class="col-4">Descripción</th> |
| 25 | <th valign="middle" class="col text-right">Cantidad</th> | 31 | <th valign="middle" class="col text-right">Cantidad</th> |
| 26 | <th valign="middle" class="col text-right">Precio Unitario</th> | 32 | <th valign="middle" class="col text-right">Precio Unitario</th> |
| 27 | <th valign="middle" class="col text-right">SubTotal</th> | 33 | <th valign="middle" class="col text-right">SubTotal</th> |
| 28 | <th valign="middle" class="text-right"> | 34 | <th valign="middle" class="text-right"> |
| 29 | <button | 35 | <button |
| 30 | class="btn btn-outline-light selectable" | 36 | class="btn btn-outline-light selectable" |
| 31 | ng-click="show = !show; masMenos()" | 37 | ng-click="show = !show; masMenos()" |
| 32 | > | 38 | > |
| 33 | <i | 39 | <i |
| 34 | class="fa fa-chevron-down" | 40 | class="fa fa-chevron-down" |
| 35 | ng-show="show" | 41 | ng-show="show" |
| 36 | aria-hidden="true" | 42 | aria-hidden="true" |
| 37 | > | 43 | > |
| 38 | </i> | 44 | </i> |
| 39 | <i | 45 | <i |
| 40 | class="fa fa-chevron-up" | 46 | class="fa fa-chevron-up" |
| 41 | ng-hide="show" | 47 | ng-hide="show" |
| 42 | aria-hidden="true"> | 48 | aria-hidden="true"> |
| 43 | </i> | 49 | </i> |
| 44 | </button> | 50 | </button> |
| 45 | </th> | 51 | </th> |
| 46 | </tr> | 52 | </tr> |
| 47 | </thead> | 53 | </thead> |
| 48 | <tbody class="tabla-articulo-body"> | 54 | <tbody class="tabla-articulo-body"> |
| 49 | <tr | 55 | <tr |
| 50 | ng-repeat="(key, articulo) in notaPedido.articulosNotaPedido" | 56 | ng-repeat="(key, articulo) in notaPedido.articulosNotaPedido" |
| 51 | ng-show="show || key == (notaPedido.articulosNotaPedido.length - 1)" | 57 | ng-show="show || key == (notaPedido.articulosNotaPedido.length - 1)" |
| 52 | class="d-flex" | 58 | class="d-flex" |
| 53 | > | 59 | > |
| 54 | <td ng-bind="key + 1"></td> | 60 | <td ng-bind="key + 1"></td> |
| 55 | <td | 61 | <td |
| 56 | class="col" | 62 | class="col" |
| 57 | ng-bind="articulo.sector + '-' + articulo.codigo" | 63 | ng-bind="articulo.sector + '-' + articulo.codigo" |
| 58 | ></td> | 64 | ></td> |
| 59 | <td | 65 | <td |
| 60 | class="col-4" | 66 | class="col-4" |
| 61 | ng-bind="articulo.descripcion" | 67 | ng-bind="articulo.descripcion" |
| 62 | ></td> | 68 | ></td> |
| 63 | <td class="col text-right"> | 69 | <td class="col text-right"> |
| 64 | <input | 70 | <input |
| 65 | ng-show="articulo.editCantidad" | 71 | ng-show="articulo.editCantidad" |
| 66 | ng-model="articulo.cantidad" | 72 | ng-model="articulo.cantidad" |
| 67 | class="form-control" | 73 | class="form-control" |
| 68 | foca-tipo-input | 74 | foca-tipo-input |
| 69 | min="1" | 75 | min="1" |
| 70 | step="0.001" | 76 | step="0.001" |
| 71 | foca-focus="articulo.editCantidad" | 77 | foca-focus="articulo.editCantidad" |
| 72 | ng-keypress="editarArticulo($event.keyCode, articulo)" | 78 | ng-keypress="editarArticulo($event.keyCode, articulo)" |
| 73 | ng-focus="selectFocus($event)" | 79 | ng-focus="selectFocus($event)" |
| 74 | teclado-virtual | 80 | teclado-virtual |
| 75 | > | 81 | > |
| 76 | <i | 82 | <i |
| 77 | class="selectable" | 83 | class="selectable" |
| 78 | ng-click="cambioEdit(articulo, 'cantidad')" | 84 | ng-click="cambioEdit(articulo, 'cantidad')" |
| 79 | ng-hide="articulo.editCantidad" | 85 | ng-hide="articulo.editCantidad" |
| 80 | ng-bind="articulo.cantidad"> | 86 | ng-bind="articulo.cantidad"> |
| 81 | </i> | 87 | </i> |
| 82 | </td> | 88 | </td> |
| 83 | <td class="col text-right"> | 89 | <td class="col text-right"> |
| 84 | <input | 90 | <input |
| 85 | ng-show="articulo.editPrecio" | 91 | ng-show="articulo.editPrecio" |
| 86 | ng-model="articulo.precio" | 92 | ng-model="articulo.precio" |
| 87 | class="form-control" | 93 | class="form-control" |
| 88 | foca-tipo-input | 94 | foca-tipo-input |
| 89 | min="0" | 95 | min="0" |
| 90 | step="0.0001" | 96 | step="0.0001" |
| 91 | foca-focus="articulo.editPrecio" | 97 | foca-focus="articulo.editPrecio" |
| 92 | ng-keypress="editarArticulo($event.keyCode, articulo)" | 98 | ng-keypress="editarArticulo($event.keyCode, articulo)" |
| 93 | ng-focus="selectFocus($event)" | 99 | ng-focus="selectFocus($event)" |
| 94 | teclado-virtual | 100 | teclado-virtual |
| 95 | > | 101 | > |
| 96 | <i | 102 | <i |
| 97 | class="selectable" | 103 | class="selectable" |
| 98 | ng-click="idLista == -1 && cambioEdit(articulo, 'precio')" | 104 | ng-click="idLista == -1 && cambioEdit(articulo, 'precio')" |
| 99 | ng-hide="articulo.editPrecio" | 105 | ng-hide="articulo.editPrecio" |
| 100 | ng-bind="articulo.precio | | 106 | ng-bind="articulo.precio | |
| 101 | number: 4"> | 107 | number: 4"> |
| 102 | </i> | 108 | </i> |
| 103 | </td> | 109 | </td> |
| 104 | <td | 110 | <td |
| 105 | class="col text-right" | 111 | class="col text-right" |
| 106 | ng-bind="(articulo.precio * articulo.cantidad) | | 112 | ng-bind="(articulo.precio * articulo.cantidad) | |
| 107 | number: 2"> | 113 | number: 2"> |
| 108 | </td> | 114 | </td> |
| 109 | <td class="text-center"> | 115 | <td class="text-center"> |
| 110 | <button | 116 | <button |
| 111 | ng-show="articulo.editCantidad || articulo.editPrecio" | 117 | ng-show="articulo.editCantidad || articulo.editPrecio" |
| 112 | class="btn btn-outline-light" | 118 | class="btn btn-outline-light" |
| 113 | ng-click="editarArticulo(13, articulo)" | 119 | ng-click="editarArticulo(13, articulo)" |
| 114 | > | 120 | > |
| 115 | <i class="fa fa-save"></i> | 121 | <i class="fa fa-save"></i> |
| 116 | </button> | 122 | </button> |
| 117 | <button | 123 | <button |
| 118 | class="btn btn-outline-light" | 124 | class="btn btn-outline-light" |
| 119 | ng-click="quitarArticulo(key)" | 125 | ng-click="quitarArticulo(key)" |
| 120 | > | 126 | > |
| 121 | <i class="fa fa-trash"></i> | 127 | <i class="fa fa-trash"></i> |
| 122 | </button> | 128 | </button> |
| 123 | </td> | 129 | </td> |
| 124 | </tr> | 130 | </tr> |
| 125 | </tbody> | 131 | </tbody> |
| 126 | <tfoot> | 132 | <tfoot> |
| 127 | <tr ng-show="!cargando" class="d-flex"> | 133 | <tr ng-show="!cargando" class="d-flex"> |
| 128 | <td | 134 | <td |
| 129 | class="align-middle" | 135 | class="align-middle" |
| 130 | ng-bind="notaPedido.articulosNotaPedido.length + 1" | 136 | ng-bind="notaPedido.articulosNotaPedido.length + 1" |
| 131 | ></td> | 137 | ></td> |
| 132 | <td class="col"> | 138 | <td class="col"> |
| 133 | <input | 139 | <input |
| 134 | class="form-control" | 140 | class="form-control" |
| 135 | ng-model="articuloACargar.sectorCodigo" | 141 | ng-model="articuloACargar.sectorCodigo" |
| 136 | readonly | 142 | readonly |
| 137 | > | 143 | > |
| 138 | </td> | 144 | </td> |
| 139 | <td class="col-4 tabla-articulo-descripcion"> | 145 | <td class="col-4 tabla-articulo-descripcion"> |
| 140 | <input | 146 | <input |
| 141 | class="form-control" | 147 | class="form-control" |
| 142 | ng-model="articuloACargar.descripcion" | 148 | ng-model="articuloACargar.descripcion" |
| 143 | readonly | 149 | readonly |
| 144 | > | 150 | > |
| 145 | </td> | 151 | </td> |
| 146 | <td class="col text-right"> | 152 | <td class="col text-right"> |
| 147 | <input | 153 | <input |
| 148 | class="form-control" | 154 | class="form-control" |
| 149 | foca-tipo-input | 155 | foca-tipo-input |
| 150 | min="1" | 156 | min="1" |
| 151 | step="0.001" | 157 | step="0.001" |
| 152 | ng-model="articuloACargar.cantidad" | 158 | ng-model="articuloACargar.cantidad" |
| 153 | foca-focus="!cargando" | 159 | foca-focus="!cargando" |
| 154 | esc-key="resetFilter()" | 160 | esc-key="resetFilter()" |
| 155 | ng-keypress="agregarATabla($event.keyCode)" | 161 | ng-keypress="agregarATabla($event.keyCode)" |
| 156 | teclado-virtual | 162 | teclado-virtual |
| 157 | > | 163 | > |
| 158 | </td> | 164 | </td> |
| 159 | <td class="col text-right"> | 165 | <td class="col text-right"> |
| 160 | <input | 166 | <input |
| 161 | class="form-control" | 167 | class="form-control" |
| 162 | ng-value="articuloACargar.precio | number: 2" | 168 | ng-value="articuloACargar.precio | number: 2" |
| 163 | ng-show="idLista != -1" | 169 | ng-show="idLista != -1" |
| 164 | readonly | 170 | readonly |
| 165 | > | 171 | > |
| 166 | <input | 172 | <input |
| 167 | class="form-control" | 173 | class="form-control" |
| 168 | foca-tipo-input | 174 | foca-tipo-input |
| 169 | min="0" | 175 | min="0" |
| 170 | step="0.0001" | 176 | step="0.0001" |
| 171 | ng-model="articuloACargar.precio" | 177 | ng-model="articuloACargar.precio" |
| 172 | esc-key="resetFilter()" | 178 | esc-key="resetFilter()" |
| 173 | ng-keypress="agregarATabla($event.keyCode)" | 179 | ng-keypress="agregarATabla($event.keyCode)" |
| 174 | ng-show="idLista == -1" | 180 | ng-show="idLista == -1" |
| 175 | teclado-virtual | 181 | teclado-virtual |
| 176 | > | 182 | > |
| 177 | </td> | 183 | </td> |
| 178 | <td class="col text-right"> | 184 | <td class="col text-right"> |
| 179 | <input | 185 | <input |
| 180 | class="form-control" | 186 | class="form-control" |
| 181 | ng-value="getSubTotal() | number: 2" | 187 | ng-value="getSubTotal() | number: 2" |
| 182 | readonly | 188 | readonly |
| 183 | ></td> | 189 | ></td> |
| 184 | <td class="text-center align-middle"> | 190 | <td class="text-center align-middle"> |
| 185 | <button | 191 | <button |
| 186 | class="btn btn-outline-light" | 192 | class="btn btn-outline-light" |
| 187 | ng-click="agregarATabla(13)" | 193 | ng-click="agregarATabla(13)" |
| 188 | > | 194 | > |
| 189 | <i class="fa fa-save"></i> | 195 | <i class="fa fa-save"></i> |
| 190 | </button> | 196 | </button> |
| 191 | </td> | 197 | </td> |
| 192 | </tr> | 198 | </tr> |
| 193 | <tr class="d-flex"> | 199 | <tr class="d-flex"> |
| 194 | <td colspan="4" class="no-border-top"> | 200 | <td colspan="4" class="no-border-top"> |
| 195 | <strong>Items:</strong> | 201 | <strong>Items:</strong> |
| 196 | <a ng-bind="notaPedido.articulosNotaPedido.length"></a> | 202 | <a ng-bind="notaPedido.articulosNotaPedido.length"></a> |
| 197 | </td> | 203 | </td> |
| 198 | <td class="text-right ml-auto table-celda-total no-border-top"> | 204 | <td class="text-right ml-auto table-celda-total no-border-top"> |
| 199 | <h3>Total:</h3> | 205 | <h3>Total:</h3> |
| 200 | </td> | 206 | </td> |
| 201 | <td class="table-celda-total text-right no-border-top" colspan="1"> | 207 | <td class="table-celda-total text-right no-border-top" colspan="1"> |
| 202 | <h3>{{getTotal() | currency: notaPedido.cotizacion.moneda.SIMBOLO}}</h3> | 208 | <h3>{{getTotal() | currency: notaPedido.cotizacion.moneda.SIMBOLO}}</h3> |
| 203 | </td> | 209 | </td> |
| 204 | <td class="text-right no-border-top"> | 210 | <td class="text-right no-border-top"> |
| 205 | <button | 211 | <button |
| 206 | type="button" | 212 | type="button" |
| 207 | class="btn btn-default btn-sm" | 213 | class="btn btn-default btn-sm" |
| 208 | > | 214 | > |
| 209 | Totales | 215 | Totales |
| 210 | </button> | 216 | </button> |
| 211 | </td> | 217 | </td> |
| 212 | </tr> | 218 | </tr> |
| 213 | </tfoot> | 219 | </tfoot> |
| 214 | </table> | 220 | </table> |
| 215 | </div> | 221 | </div> |
| 216 | <!-- MOBILE --> | 222 | <!-- MOBILE --> |
| 217 | <div class="row d-sm-none"> | 223 | <div class="row d-sm-none"> |
| 218 | <table class="table table-sm table-striped tabla-articulo margin-bottom-mobile"> | 224 | <table class="table table-sm table-striped tabla-articulo margin-bottom-mobile"> |
| 219 | <thead> | 225 | <thead> |
| 220 | <tr class="d-flex"> | 226 | <tr class="d-flex"> |
| 221 | <th class="">#</th> | 227 | <th class="">#</th> |
| 222 | <th class="col px-0"> | 228 | <th class="col px-0"> |
| 223 | <div class="d-flex"> | 229 | <div class="d-flex"> |
| 224 | <div class="col-4 px-1">Código</div> | 230 | <div class="col-4 px-1">Código</div> |
| 225 | <div class="col-8 px-1">Descripción</div> | 231 | <div class="col-8 px-1">Descripción</div> |
| 226 | </div> | 232 | </div> |
| 227 | <div class="d-flex"> | 233 | <div class="d-flex"> |
| 228 | <div class="col-3 px-1">Cantidad</div> | 234 | <div class="col-3 px-1">Cantidad</div> |
| 229 | <div class="col px-1 text-right">P. Uni.</div> | 235 | <div class="col px-1 text-right">P. Uni.</div> |
| 230 | <div class="col px-1 text-right">Subtotal</div> | 236 | <div class="col px-1 text-right">Subtotal</div> |
| 231 | </div> | 237 | </div> |
| 232 | </th> | 238 | </th> |
| 233 | <th class="text-center tamaño-boton"> | 239 | <th class="text-center tamaño-boton"> |
| 234 | | 240 | |
| 235 | </th> | 241 | </th> |
| 236 | </tr> | 242 | </tr> |
| 237 | </thead> | 243 | </thead> |
| 238 | <tbody> | 244 | <tbody> |
| 239 | <tr | 245 | <tr |
| 240 | ng-repeat="(key, articulo) in notaPedido.articulosNotaPedido" | 246 | ng-repeat="(key, articulo) in notaPedido.articulosNotaPedido" |
| 241 | ng-show="show || key == notaPedido.articulosNotaPedido.length - 1" | 247 | ng-show="show || key == notaPedido.articulosNotaPedido.length - 1" |
| 242 | > | 248 | > |
| 243 | <td class="w-100 align-middle d-flex p-0"> | 249 | <td class="w-100 align-middle d-flex p-0"> |
| 244 | <div class="align-middle p-1"> | 250 | <div class="align-middle p-1"> |
| 245 | <span ng-bind="key+1" class="align-middle"></span> | 251 | <span ng-bind="key+1" class="align-middle"></span> |
| 246 | </div> | 252 | </div> |
| 247 | <div class="col px-0"> | 253 | <div class="col px-0"> |
| 248 | <div class="d-flex"> | 254 | <div class="d-flex"> |
| 249 | <div class="col-4 px-1"> | 255 | <div class="col-4 px-1"> |
| 250 | <span | 256 | <span |
| 251 | ng-bind="articulo.sector + '-' + articulo.codigo" | 257 | ng-bind="articulo.sector + '-' + articulo.codigo" |
| 252 | ></span> | 258 | ></span> |
| 253 | </div> | 259 | </div> |
| 254 | <div class="col-8 px-1"> | 260 | <div class="col-8 px-1"> |
| 255 | <span ng-bind="articulo.descripcion"></span> | 261 | <span ng-bind="articulo.descripcion"></span> |
| 256 | </div> | 262 | </div> |
| 257 | </div> | 263 | </div> |
| 258 | <div class="d-flex"> | 264 | <div class="d-flex"> |
| 259 | <div class="col-3 px-1"> | 265 | <div class="col-3 px-1"> |
| 260 | <span | 266 | <span |
| 261 | ng-bind="'x' + articulo.cantidad" | 267 | ng-bind="'x' + articulo.cantidad" |
| 262 | ng-hide="articulo.editCantidad" | 268 | ng-hide="articulo.editCantidad" |
| 263 | ></span> | 269 | ></span> |
| 264 | <i | 270 | <i |
| 265 | class="fa fa-pencil text-white-50" | 271 | class="fa fa-pencil text-white-50" |
| 266 | aria-hidden="true" | 272 | aria-hidden="true" |
| 267 | ng-hide="articulo.editCantidad" | 273 | ng-hide="articulo.editCantidad" |
| 268 | ng-click="articulo.editCantidad = true" | 274 | ng-click="articulo.editCantidad = true" |
| 269 | ></i> | 275 | ></i> |
| 270 | <input | 276 | <input |
| 271 | ng-show="articulo.editCantidad" | 277 | ng-show="articulo.editCantidad" |
| 272 | ng-model="articulo.cantidad" | 278 | ng-model="articulo.cantidad" |
| 273 | class="form-control" | 279 | class="form-control" |
| 274 | foca-tipo-input | 280 | foca-tipo-input |
| 275 | min="1" | 281 | min="1" |
| 276 | step="0.001" | 282 | step="0.001" |
| 277 | foca-focus="articulo.editCantidad" | 283 | foca-focus="articulo.editCantidad" |
| 278 | ng-keypress="editarArticulo($event.keyCode, articulo)" | 284 | ng-keypress="editarArticulo($event.keyCode, articulo)" |
| 279 | ng-focus="selectFocus($event)" | 285 | ng-focus="selectFocus($event)" |
| 280 | > | 286 | > |
| 281 | </div> | 287 | </div> |
| 282 | <div class="col px-1 text-right"> | 288 | <div class="col px-1 text-right"> |
| 283 | <span ng-bind="articulo.precio | | 289 | <span ng-bind="articulo.precio | |
| 284 | currency: notaPedido.moneda.SIMBOLO : 4"></span> | 290 | currency: notaPedido.moneda.SIMBOLO : 4"></span> |
| 285 | ></span> | 291 | ></span> |
| 286 | </div> | 292 | </div> |
| 287 | <div class="col px-1 text-right"> | 293 | <div class="col px-1 text-right"> |
| 288 | <span | 294 | <span |
| 289 | ng-bind="(articulo.precio * articulo.cantidad) | | 295 | ng-bind="(articulo.precio * articulo.cantidad) | |
| 290 | currency: notaPedido.moneda.SIMBOLO" | 296 | currency: notaPedido.moneda.SIMBOLO" |
| 291 | > | 297 | > |
| 292 | </span> | 298 | </span> |
| 293 | </div> | 299 | </div> |
| 294 | </div> | 300 | </div> |
| 295 | </div> | 301 | </div> |
| 296 | <div class="align-middle p-1"> | 302 | <div class="align-middle p-1"> |
| 297 | <button | 303 | <button |
| 298 | class="btn btn-outline-light" | 304 | class="btn btn-outline-light" |
| 299 | ng-click="quitarArticulo(key)" | 305 | ng-click="quitarArticulo(key)" |
| 300 | > | 306 | > |
| 301 | <i class="fa fa-trash"></i> | 307 | <i class="fa fa-trash"></i> |
| 302 | </button> | 308 | </button> |
| 303 | </div> | 309 | </div> |
| 304 | </td> | 310 | </td> |
| 305 | </tr> | 311 | </tr> |
| 306 | </tbody> | 312 | </tbody> |
| 307 | <tfoot> | 313 | <tfoot> |
| 308 | <!-- CARGANDO ITEM --> | 314 | <!-- CARGANDO ITEM --> |
| 309 | <tr ng-show="!cargando" class="d-flex"> | 315 | <tr ng-show="!cargando" class="d-flex"> |
| 310 | <td | 316 | <td |
| 311 | class="align-middle p-1" | 317 | class="align-middle p-1" |
| 312 | ng-bind="notaPedido.articulosNotaPedido.length + 1" | 318 | ng-bind="notaPedido.articulosNotaPedido.length + 1" |
| 313 | ></td> | 319 | ></td> |
| 314 | <td class="col p-0"> | 320 | <td class="col p-0"> |
| 315 | <div class="d-flex"> | 321 | <div class="d-flex"> |
| 316 | <div class="col-4 px-1"> | 322 | <div class="col-4 px-1"> |
| 317 | <span | 323 | <span |
| 318 | ng-bind="articuloACargar.sectorCodigo" | 324 | ng-bind="articuloACargar.sectorCodigo" |
| 319 | ></span> | 325 | ></span> |
| 320 | </div> | 326 | </div> |
| 321 | <div class="col-8 px-1"> | 327 | <div class="col-8 px-1"> |
| 322 | <span ng-bind="articuloACargar.descripcion"></span> | 328 | <span ng-bind="articuloACargar.descripcion"></span> |
| 323 | </div> | 329 | </div> |
| 324 | </div> | 330 | </div> |
| 325 | <div class="d-flex"> | 331 | <div class="d-flex"> |
| 326 | <div class="col-3 px-1 m-1"> | 332 | <div class="col-3 px-1 m-1"> |
| 327 | <input | 333 | <input |
| 328 | class="form-control p-1" | 334 | class="form-control p-1" |
| 329 | foca-tipo-input | 335 | foca-tipo-input |
| 330 | min="1" | 336 | min="1" |
| 331 | ng-model="articuloACargar.cantidad" | 337 | ng-model="articuloACargar.cantidad" |
| 332 | foca-focus="!cargando" | 338 | foca-focus="!cargando" |
| 333 | ng-keypress="agregarATabla($event.keyCode)" | 339 | ng-keypress="agregarATabla($event.keyCode)" |
| 334 | style="height: auto; line-height: 1.1em" | 340 | style="height: auto; line-height: 1.1em" |
| 335 | > | 341 | > |
| 336 | </div> | 342 | </div> |
| 337 | <div class="col px-1 text-right"> | 343 | <div class="col px-1 text-right"> |
| 338 | <span ng-bind="articuloACargar.precio | | 344 | <span ng-bind="articuloACargar.precio | |
| 339 | currency: notaPedido.moneda.SIMBOLO : 4" | 345 | currency: notaPedido.moneda.SIMBOLO : 4" |
| 340 | ></span> | 346 | ></span> |
| 341 | </div> | 347 | </div> |
| 342 | <div class="col px-1 text-right"> | 348 | <div class="col px-1 text-right"> |
| 343 | <span | 349 | <span |
| 344 | ng-bind="getSubTotal() | | 350 | ng-bind="getSubTotal() | |
| 345 | currency: notaPedido.moneda.SIMBOLO" | 351 | currency: notaPedido.moneda.SIMBOLO" |
| 346 | > | 352 | > |
| 347 | </span> | 353 | </span> |
| 348 | </div> | 354 | </div> |
| 349 | </div> | 355 | </div> |
| 350 | </td> | 356 | </td> |
| 351 | <td class="text-center align-middle"> | 357 | <td class="text-center align-middle"> |
| 352 | <button | 358 | <button |
| 353 | class="btn btn-outline-light" | 359 | class="btn btn-outline-light" |
| 354 | ng-click="agregarATabla(13)" | 360 | ng-click="agregarATabla(13)" |
| 355 | > | 361 | > |
| 356 | <i class="fa fa-save"></i> | 362 | <i class="fa fa-save"></i> |
| 357 | </button> | 363 | </button> |
| 358 | </td> | 364 | </td> |
| 359 | </tr> | 365 | </tr> |
| 360 | <!-- TOOGLE EXPANDIR --> | 366 | <!-- TOOGLE EXPANDIR --> |
| 361 | <tr> | 367 | <tr> |
| 362 | <td class="col"> | 368 | <td class="col"> |
| 363 | <button | 369 | <button |
| 364 | class="btn btn-outline-light selectable w-100" | 370 | class="btn btn-outline-light selectable w-100" |
| 365 | ng-click="show = !show; masMenos()" | 371 | ng-click="show = !show; masMenos()" |
| 366 | ng-show="notaPedido.articulosNotaPedido.length > 0" | 372 | ng-show="notaPedido.articulosNotaPedido.length > 0" |
| 367 | > | 373 | > |
| 368 | <i | 374 | <i |
| 369 | class="fa fa-chevron-down" | 375 | class="fa fa-chevron-down" |
| 370 | ng-hide="show" | 376 | ng-hide="show" |
| 371 | aria-hidden="true" | 377 | aria-hidden="true" |
| 372 | > | 378 | > |
| 373 | </i> | 379 | </i> |
| 374 | <i | 380 | <i |
| 375 | class="fa fa-chevron-up" | 381 | class="fa fa-chevron-up" |
| 376 | ng-show="show" | 382 | ng-show="show" |
| 377 | aria-hidden="true"> | 383 | aria-hidden="true"> |
| 378 | </i> | 384 | </i> |
| 379 | </button> | 385 | </button> |
| 380 | </td> | 386 | </td> |
| 381 | </tr> | 387 | </tr> |
| 382 | <!-- FOOTER --> | 388 | <!-- FOOTER --> |
| 383 | <tr class="d-flex"> | 389 | <tr class="d-flex"> |
| 384 | <td class="align-middle no-border-top" colspan="2"> | 390 | <td class="align-middle no-border-top" colspan="2"> |
| 385 | <strong>Cantidad Items:</strong> | 391 | <strong>Cantidad Items:</strong> |
| 386 | <a ng-bind="notaPedido.articulosNotaPedido.length"></a> | 392 | <a ng-bind="notaPedido.articulosNotaPedido.length"></a> |
| 387 | </td> | 393 | </td> |
| 388 | <td class="text-right ml-auto table-celda-total no-border-top"> | 394 | <td class="text-right ml-auto table-celda-total no-border-top"> |
| 389 | <h3>Total:</h3> | 395 | <h3>Total:</h3> |
| 390 | </td> | 396 | </td> |
| 391 | <td class="table-celda-total text-right no-border-top"> | 397 | <td class="table-celda-total text-right no-border-top"> |
| 392 | <h3>{{getTotal() | currency: notaPedido.cotizacion.moneda.SIMBOLO}}</h3> | 398 | <h3>{{getTotal() | currency: notaPedido.cotizacion.moneda.SIMBOLO}}</h3> |
| 393 | </td> | 399 | </td> |
| 394 | </tr> | 400 | </tr> |
| 395 | </tfoot> | 401 | </tfoot> |
| 396 | </table> | 402 | </table> |
| 397 | </div> | 403 | </div> |
| 398 | </div> | 404 | </div> |
| 399 | </div> | 405 | </div> |
| 400 | </div> | 406 | </div> |
| 401 | <div class="row d-md-none fixed-bottom"> | 407 | <div class="row d-md-none fixed-bottom"> |
| 402 | <div class="w-100 bg-dark d-flex px-3 acciones-mobile"> | 408 | <div class="w-100 bg-dark d-flex px-3 acciones-mobile"> |
| 403 | <span class="ml-3 text-muted" ng-click="salir()">Salir</span> | 409 | <span class="ml-3 text-muted" ng-click="salir()">Salir</span> |
| 404 | <span | 410 | <span |
| 405 | class="mr-3 ml-auto" | 411 | class="mr-3 ml-auto" |
| 406 | ng-class="saveLoading ? 'text-muted' : ''" | 412 | ng-class="saveLoading ? 'text-muted' : ''" |
| 407 | ng-click="crearNotaPedido()" | 413 | ng-click="crearNotaPedido()" |
| 408 | ladda="saveLoading" | 414 | ladda="saveLoading" |
| 409 | data-style="expand-left" | 415 | data-style="expand-left" |
| 410 | >Guardar</span> | 416 | >Guardar</span> |
| 411 | </div> | 417 | </div> |
| 412 | </div> | 418 | </div> |
| 413 | </div> | 419 | </div> |
| 414 | 420 |