Commit d46286255e1129457c3884b79d6af99341a507f2

Authored by Jose Pinto
1 parent 5a5b6f973c
Exists in master

fix bug id domicilio

Showing 1 changed file with 5 additions and 0 deletions   Show diff stats
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 $scope.inicial.notaPedido.vendedor =$scope.notaPedido.vendedor; 110 $scope.inicial.notaPedido.vendedor =$scope.notaPedido.vendedor;
111 } 111 }
112 ); 112 );
113 } 113 }
114 114
115 $scope.inicial = angular.copy($scope.notaPedido); 115 $scope.inicial = angular.copy($scope.notaPedido);
116 } 116 }
117 117
118 $scope.$watch('notaPedido', function(newValue) { 118 $scope.$watch('notaPedido', function(newValue) {
119 focaBotoneraLateralService.setPausarData({ 119 focaBotoneraLateralService.setPausarData({
120 label: 'notaPedido', 120 label: 'notaPedido',
121 val: newValue 121 val: newValue
122 }); 122 });
123 }, true); 123 }, true);
124 124
125 $scope.crearNotaPedido = function() { 125 $scope.crearNotaPedido = function() {
126 if (!$scope.notaPedido.cliente.COD) { 126 if (!$scope.notaPedido.cliente.COD) {
127 focaModalService.alert('Ingrese Cliente'); 127 focaModalService.alert('Ingrese Cliente');
128 return; 128 return;
129 } else if (!$scope.notaPedido.proveedor.COD) { 129 } else if (!$scope.notaPedido.proveedor.COD) {
130 focaModalService.alert('Ingrese Proveedor'); 130 focaModalService.alert('Ingrese Proveedor');
131 return; 131 return;
132 } else if (!$scope.notaPedido.cotizacion.ID) { 132 } else if (!$scope.notaPedido.cotizacion.ID) {
133 focaModalService.alert('Ingrese Cotización'); 133 focaModalService.alert('Ingrese Cotización');
134 return; 134 return;
135 } else if (!$scope.notaPedido.cotizacion.moneda.ID) { 135 } else if (!$scope.notaPedido.cotizacion.moneda.ID) {
136 focaModalService.alert('Ingrese Moneda'); 136 focaModalService.alert('Ingrese Moneda');
137 return; 137 return;
138 } else if (!$scope.notaPedido.notaPedidoPlazo) { 138 } else if (!$scope.notaPedido.notaPedidoPlazo) {
139 focaModalService.alert('Ingrese Precios y Condiciones'); 139 focaModalService.alert('Ingrese Precios y Condiciones');
140 return; 140 return;
141 } else if ( 141 } else if (
142 $scope.notaPedido.flete === undefined || $scope.notaPedido.flete === null) 142 $scope.notaPedido.flete === undefined || $scope.notaPedido.flete === null)
143 { 143 {
144 focaModalService.alert('Ingrese Flete'); 144 focaModalService.alert('Ingrese Flete');
145 return; 145 return;
146 } else if (!$scope.notaPedido.domicilioStamp) {//TODO validar domicilio correcto 146 } else if (!$scope.notaPedido.domicilioStamp) {//TODO validar domicilio correcto
147 focaModalService.alert('Ingrese Domicilio'); 147 focaModalService.alert('Ingrese Domicilio');
148 return; 148 return;
149 } else if ($scope.notaPedido.articulosNotaPedido.length === 0) { 149 } else if ($scope.notaPedido.articulosNotaPedido.length === 0) {
150 focaModalService.alert('Debe cargar al menos un articulo'); 150 focaModalService.alert('Debe cargar al menos un articulo');
151 return; 151 return;
152 } 152 }
153 focaBotoneraLateralService.startGuardar(); 153 focaBotoneraLateralService.startGuardar();
154 $scope.saveLoading = true; 154 $scope.saveLoading = true;
155 var notaPedido = { 155 var notaPedido = {
156 id: $scope.notaPedido.id, 156 id: $scope.notaPedido.id,
157 fechaCarga: new Date($scope.notaPedido.fechaCarga) 157 fechaCarga: new Date($scope.notaPedido.fechaCarga)
158 .toISOString().slice(0, 19).replace('T', ' '), 158 .toISOString().slice(0, 19).replace('T', ' '),
159 idVendedor: $scope.notaPedido.vendedor.id, 159 idVendedor: $scope.notaPedido.vendedor.id,
160 idCliente: $scope.notaPedido.cliente.COD, 160 idCliente: $scope.notaPedido.cliente.COD,
161 nombreCliente: $scope.notaPedido.cliente.NOM, 161 nombreCliente: $scope.notaPedido.cliente.NOM,
162 cuitCliente: $scope.notaPedido.cliente.CUIT, 162 cuitCliente: $scope.notaPedido.cliente.CUIT,
163 idProveedor: $scope.notaPedido.proveedor.COD, 163 idProveedor: $scope.notaPedido.proveedor.COD,
164 idDomicilio: $scope.notaPedido.domicilio.id, 164 idDomicilio: $scope.notaPedido.domicilio.id,
165 idCotizacion: $scope.notaPedido.cotizacion.ID, 165 idCotizacion: $scope.notaPedido.cotizacion.ID,
166 idPrecioCondicion: $scope.notaPedido.idPrecioCondicion, 166 idPrecioCondicion: $scope.notaPedido.idPrecioCondicion,
167 cotizacion: $scope.notaPedido.cotizacion.VENDEDOR, 167 cotizacion: $scope.notaPedido.cotizacion.VENDEDOR,
168 flete: $scope.notaPedido.flete, 168 flete: $scope.notaPedido.flete,
169 fob: $scope.notaPedido.fob, 169 fob: $scope.notaPedido.fob,
170 bomba: $scope.notaPedido.bomba, 170 bomba: $scope.notaPedido.bomba,
171 kilometros: $scope.notaPedido.kilometros, 171 kilometros: $scope.notaPedido.kilometros,
172 domicilioStamp: $scope.notaPedido.domicilioStamp, 172 domicilioStamp: $scope.notaPedido.domicilioStamp,
173 observaciones: $scope.notaPedido.observaciones, 173 observaciones: $scope.notaPedido.observaciones,
174 estado: 0, 174 estado: 0,
175 total: $scope.getTotal() 175 total: $scope.getTotal()
176 }; 176 };
177 crearNotaPedidoService.crearNotaPedido(notaPedido).then( 177 crearNotaPedidoService.crearNotaPedido(notaPedido).then(
178 function(data) { 178 function(data) {
179 // Al guardar los datos de la nota de pedido logueamos la 179 // Al guardar los datos de la nota de pedido logueamos la
180 // actividad para su seguimiento. 180 // actividad para su seguimiento.
181 //TODO: GUARDAR POSISIONAMIENTO AL EDITAR? 181 //TODO: GUARDAR POSISIONAMIENTO AL EDITAR?
182 focaSeguimientoService.guardarPosicion( 182 focaSeguimientoService.guardarPosicion(
183 'Nota de pedido', 183 'Nota de pedido',
184 data.data.id, 184 data.data.id,
185 '' 185 ''
186 ); 186 );
187 notaPedidoBusinessService.addArticulos( 187 notaPedidoBusinessService.addArticulos(
188 $scope.notaPedido.articulosNotaPedido, 188 $scope.notaPedido.articulosNotaPedido,
189 data.data.id, $scope.notaPedido.cotizacion.VENDEDOR); 189 data.data.id, $scope.notaPedido.cotizacion.VENDEDOR);
190 190
191 if ($scope.notaPedido.notaPedidoPuntoDescarga) { 191 if ($scope.notaPedido.notaPedidoPuntoDescarga) {
192 notaPedidoBusinessService.addPuntosDescarga(data.data.id, 192 notaPedidoBusinessService.addPuntosDescarga(data.data.id,
193 $scope.notaPedido.notaPedidoPuntoDescarga); 193 $scope.notaPedido.notaPedidoPuntoDescarga);
194 } 194 }
195 195
196 var plazos = $scope.notaPedido.notaPedidoPlazo; 196 var plazos = $scope.notaPedido.notaPedidoPlazo;
197 var plazosACrear = []; 197 var plazosACrear = [];
198 plazos.forEach(function(plazo) { 198 plazos.forEach(function(plazo) {
199 plazosACrear.push({ 199 plazosACrear.push({
200 idNotaPedido: data.data.id, 200 idNotaPedido: data.data.id,
201 dias: plazo.dias 201 dias: plazo.dias
202 }); 202 });
203 }); 203 });
204 204
205 if (plazosACrear.length) { 205 if (plazosACrear.length) {
206 crearNotaPedidoService.crearPlazosParaNotaPedido(plazosACrear); 206 crearNotaPedidoService.crearPlazosParaNotaPedido(plazosACrear);
207 } 207 }
208 208
209 notaPedidoBusinessService.addEstado(data.data.id, 209 notaPedidoBusinessService.addEstado(data.data.id,
210 $scope.notaPedido.vendedor.id); 210 $scope.notaPedido.vendedor.id);
211 211
212 focaBotoneraLateralService.endGuardar(true); 212 focaBotoneraLateralService.endGuardar(true);
213 $scope.saveLoading = false; 213 $scope.saveLoading = false;
214 214
215 init(); 215 init();
216 }, function(error) { 216 }, function(error) {
217 focaModalService.alert('Hubo un error al crear la nota de pedido'); 217 focaModalService.alert('Hubo un error al crear la nota de pedido');
218 focaBotoneraLateralService.endGuardar(); 218 focaBotoneraLateralService.endGuardar();
219 $scope.saveLoading = false; 219 $scope.saveLoading = false;
220 console.info(error); 220 console.info(error);
221 } 221 }
222 ); 222 );
223 }; 223 };
224 224
225 $scope.seleccionarNotaPedido = function() { 225 $scope.seleccionarNotaPedido = function() {
226 var modalInstance = $uibModal.open( 226 var modalInstance = $uibModal.open(
227 { 227 {
228 ariaLabelledBy: 'Busqueda de Nota de Pedido', 228 ariaLabelledBy: 'Busqueda de Nota de Pedido',
229 templateUrl: 'foca-modal-nota-pedido.html', 229 templateUrl: 'foca-modal-nota-pedido.html',
230 controller: 'focaModalNotaPedidoController', 230 controller: 'focaModalNotaPedidoController',
231 size: 'lg', 231 size: 'lg',
232 resolve: { 232 resolve: {
233 usadoPor: function() {return 'notaPedido';}, 233 usadoPor: function() {return 'notaPedido';},
234 idVendedor: function() { 234 idVendedor: function() {
235 if (APP === 'distribuidor') 235 if (APP === 'distribuidor')
236 return $scope.notaPedido.vendedor.id; 236 return $scope.notaPedido.vendedor.id;
237 else 237 else
238 return null; 238 return null;
239 } 239 }
240 } 240 }
241 } 241 }
242 ); 242 );
243 modalInstance.result.then(setearNotaPedido); 243 modalInstance.result.then(setearNotaPedido);
244 }; 244 };
245 245
246 $scope.seleccionarProductos = function() { 246 $scope.seleccionarProductos = function() {
247 if ($scope.idLista === undefined) { 247 if ($scope.idLista === undefined) {
248 focaModalService.alert( 248 focaModalService.alert(
249 'Primero seleccione una lista de precio y condicion'); 249 'Primero seleccione una lista de precio y condicion');
250 return; 250 return;
251 } 251 }
252 var modalInstance = $uibModal.open( 252 var modalInstance = $uibModal.open(
253 { 253 {
254 ariaLabelledBy: 'Busqueda de Productos', 254 ariaLabelledBy: 'Busqueda de Productos',
255 templateUrl: 'modal-busqueda-productos.html', 255 templateUrl: 'modal-busqueda-productos.html',
256 controller: 'modalBusquedaProductosCtrl', 256 controller: 'modalBusquedaProductosCtrl',
257 resolve: { 257 resolve: {
258 parametroProducto: { 258 parametroProducto: {
259 idLista: $scope.idLista, 259 idLista: $scope.idLista,
260 cotizacion: $scope.notaPedido.cotizacion.VENDEDOR, 260 cotizacion: $scope.notaPedido.cotizacion.VENDEDOR,
261 simbolo: $scope.notaPedido.cotizacion.moneda.SIMBOLO 261 simbolo: $scope.notaPedido.cotizacion.moneda.SIMBOLO
262 } 262 }
263 }, 263 },
264 size: 'lg' 264 size: 'lg'
265 } 265 }
266 ); 266 );
267 modalInstance.result.then( 267 modalInstance.result.then(
268 function(producto) { 268 function(producto) {
269 var newArt = 269 var newArt =
270 { 270 {
271 id: 0, 271 id: 0,
272 codigo: producto.codigo, 272 codigo: producto.codigo,
273 sector: producto.sector, 273 sector: producto.sector,
274 sectorCodigo: producto.sector + '-' + producto.codigo, 274 sectorCodigo: producto.sector + '-' + producto.codigo,
275 descripcion: producto.descripcion, 275 descripcion: producto.descripcion,
276 item: $scope.notaPedido.articulosNotaPedido.length + 1, 276 item: $scope.notaPedido.articulosNotaPedido.length + 1,
277 nombre: producto.descripcion, 277 nombre: producto.descripcion,
278 precio: parseFloat(producto.precio.toFixed(4)), 278 precio: parseFloat(producto.precio.toFixed(4)),
279 costoUnitario: producto.costo, 279 costoUnitario: producto.costo,
280 editCantidad: false, 280 editCantidad: false,
281 editPrecio: false, 281 editPrecio: false,
282 rubro: producto.CodRub, 282 rubro: producto.CodRub,
283 exentoUnitario: producto.precio, 283 exentoUnitario: producto.precio,
284 ivaUnitario: producto.IMPIVA, 284 ivaUnitario: producto.IMPIVA,
285 impuestoInternoUnitario: producto.ImpInt, 285 impuestoInternoUnitario: producto.ImpInt,
286 impuestoInterno1Unitario: producto.ImpInt2, 286 impuestoInterno1Unitario: producto.ImpInt2,
287 impuestoInterno2Unitario: producto.ImpInt3, 287 impuestoInterno2Unitario: producto.ImpInt3,
288 precioLista: producto.precio, 288 precioLista: producto.precio,
289 combustible: 1, 289 combustible: 1,
290 facturado: 0, 290 facturado: 0,
291 idArticulo: producto.id 291 idArticulo: producto.id
292 }; 292 };
293 $scope.articuloACargar = newArt; 293 $scope.articuloACargar = newArt;
294 $scope.cargando = false; 294 $scope.cargando = false;
295 }, function() { 295 }, function() {
296 // funcion ejecutada cuando se cancela el modal 296 // funcion ejecutada cuando se cancela el modal
297 } 297 }
298 ); 298 );
299 }; 299 };
300 300
301 $scope.seleccionarPuntosDeDescarga = function() { 301 $scope.seleccionarPuntosDeDescarga = function() {
302 if (!$scope.notaPedido.cliente.COD || !$scope.notaPedido.domicilio.id) { 302 if (!$scope.notaPedido.cliente.COD || !$scope.notaPedido.domicilio.id) {
303 focaModalService.alert('Primero seleccione un cliente y un domicilio'); 303 focaModalService.alert('Primero seleccione un cliente y un domicilio');
304 return; 304 return;
305 } else { 305 } else {
306 var modalInstance = $uibModal.open( 306 var modalInstance = $uibModal.open(
307 { 307 {
308 ariaLabelledBy: 'Búsqueda de Puntos de descarga', 308 ariaLabelledBy: 'Búsqueda de Puntos de descarga',
309 templateUrl: 'modal-punto-descarga.html', 309 templateUrl: 'modal-punto-descarga.html',
310 controller: 'focaModalPuntoDescargaController', 310 controller: 'focaModalPuntoDescargaController',
311 size: 'lg', 311 size: 'lg',
312 resolve: { 312 resolve: {
313 filters: { 313 filters: {
314 idDomicilio: $scope.notaPedido.domicilio.id, 314 idDomicilio: $scope.notaPedido.domicilio.id,
315 idCliente: $scope.notaPedido.cliente.COD, 315 idCliente: $scope.notaPedido.cliente.COD,
316 articulos: $scope.notaPedido.articulosNotaPedido, 316 articulos: $scope.notaPedido.articulosNotaPedido,
317 puntosDescarga: $scope.notaPedido.notaPedidoPuntoDescarga 317 puntosDescarga: $scope.notaPedido.notaPedidoPuntoDescarga
318 } 318 }
319 } 319 }
320 } 320 }
321 ); 321 );
322 modalInstance.result.then( 322 modalInstance.result.then(
323 function(puntosDescarga) { 323 function(puntosDescarga) {
324 $scope.notaPedido.notaPedidoPuntoDescarga = puntosDescarga; 324 $scope.notaPedido.notaPedidoPuntoDescarga = puntosDescarga;
325 325
326 //AGREGO PUNTOS DE DESCARGA A CABECERA 326 //AGREGO PUNTOS DE DESCARGA A CABECERA
327 var puntosStamp = ''; 327 var puntosStamp = '';
328 puntosDescarga.forEach(function(punto, idx, arr) { 328 puntosDescarga.forEach(function(punto, idx, arr) {
329 puntosStamp += punto.descripcion; 329 puntosStamp += punto.descripcion;
330 if ((idx + 1) !== arr.length) puntosStamp += ', '; 330 if ((idx + 1) !== arr.length) puntosStamp += ', ';
331 }); 331 });
332 332
333 $scope.$broadcast('addCabecera', { 333 $scope.$broadcast('addCabecera', {
334 label: 'Puntos de descarga:', 334 label: 'Puntos de descarga:',
335 valor: puntosStamp 335 valor: puntosStamp
336 }); 336 });
337 }, function() { 337 }, function() {
338 $scope.abrirModalDomicilios($scope.cliente); 338 $scope.abrirModalDomicilios($scope.cliente);
339 } 339 }
340 ); 340 );
341 } 341 }
342 }; 342 };
343 343
344 $scope.seleccionarTransportista = function() { 344 $scope.seleccionarTransportista = function() {
345 $scope.seleccionarProveedor(function() { 345 $scope.seleccionarProveedor(function() {
346 if (validarNotaRemitada()) { 346 if (validarNotaRemitada()) {
347 var modalInstance = $uibModal.open( 347 var modalInstance = $uibModal.open(
348 { 348 {
349 ariaLabelledBy: 'Busqueda de Flete', 349 ariaLabelledBy: 'Busqueda de Flete',
350 templateUrl: 'modal-flete.html', 350 templateUrl: 'modal-flete.html',
351 controller: 'focaModalFleteController', 351 controller: 'focaModalFleteController',
352 size: 'lg', 352 size: 'lg',
353 resolve: { 353 resolve: {
354 parametrosFlete: 354 parametrosFlete:
355 function() { 355 function() {
356 return { 356 return {
357 flete: $scope.notaPedido.fob ? 'FOB' : 357 flete: $scope.notaPedido.fob ? 'FOB' :
358 ( $scope.notaPedido.flete ? '1' : 358 ( $scope.notaPedido.flete ? '1' :
359 ($scope.notaPedido.flete === undefined ? 359 ($scope.notaPedido.flete === undefined ?
360 null : '0')), 360 null : '0')),
361 bomba: $scope.notaPedido.bomba ? '1' : 361 bomba: $scope.notaPedido.bomba ? '1' :
362 ($scope.notaPedido.bomba === undefined ? 362 ($scope.notaPedido.bomba === undefined ?
363 null : '0'), 363 null : '0'),
364 kilometros: $scope.notaPedido.kilometros 364 kilometros: $scope.notaPedido.kilometros
365 }; 365 };
366 } 366 }
367 } 367 }
368 } 368 }
369 ); 369 );
370 modalInstance.result.then( 370 modalInstance.result.then(
371 function(datos) { 371 function(datos) {
372 $scope.notaPedido.flete = datos.flete; 372 $scope.notaPedido.flete = datos.flete;
373 $scope.notaPedido.fob = datos.FOB; 373 $scope.notaPedido.fob = datos.FOB;
374 $scope.notaPedido.bomba = datos.bomba; 374 $scope.notaPedido.bomba = datos.bomba;
375 $scope.notaPedido.kilometros = datos.kilometros; 375 $scope.notaPedido.kilometros = datos.kilometros;
376 $scope.$broadcast('addCabecera', { 376 $scope.$broadcast('addCabecera', {
377 label: 'Flete:', 377 label: 'Flete:',
378 valor: datos.FOB ? 'FOB' : (datos.flete ? 'Si' : 'No') 378 valor: datos.FOB ? 'FOB' : (datos.flete ? 'Si' : 'No')
379 }); 379 });
380 if (datos.flete) { 380 if (datos.flete) {
381 $scope.$broadcast('addCabecera', { 381 $scope.$broadcast('addCabecera', {
382 label: 'Bomba:', 382 label: 'Bomba:',
383 valor: datos.bomba ? 'Si' : 'No' 383 valor: datos.bomba ? 'Si' : 'No'
384 }); 384 });
385 $scope.$broadcast('addCabecera', { 385 $scope.$broadcast('addCabecera', {
386 label: 'Kilometros:', 386 label: 'Kilometros:',
387 valor: datos.kilometros 387 valor: datos.kilometros
388 }); 388 });
389 } else { 389 } else {
390 $scope.$broadcast('removeCabecera', 'Bomba:'); 390 $scope.$broadcast('removeCabecera', 'Bomba:');
391 $scope.$broadcast('removeCabecera', 'Kilometros:'); 391 $scope.$broadcast('removeCabecera', 'Kilometros:');
392 $scope.notaPedido.bomba = false; 392 $scope.notaPedido.bomba = false;
393 $scope.notaPedido.kilometros = null; 393 $scope.notaPedido.kilometros = null;
394 } 394 }
395 }, function() { 395 }, function() {
396 $scope.seleccionarTransportista(); 396 $scope.seleccionarTransportista();
397 } 397 }
398 ); 398 );
399 } 399 }
400 }); 400 });
401 }; 401 };
402 402
403 $scope.seleccionarVendedor = function(callback, ocultarVendedor) { 403 $scope.seleccionarVendedor = function(callback, ocultarVendedor) {
404 if (APP === 'distribuidor' || ocultarVendedor) { 404 if (APP === 'distribuidor' || ocultarVendedor) {
405 callback(); 405 callback();
406 return; 406 return;
407 } 407 }
408 408
409 if (validarNotaRemitada()) { 409 if (validarNotaRemitada()) {
410 var parametrosModal = { 410 var parametrosModal = {
411 titulo: 'Búsqueda vendedores', 411 titulo: 'Búsqueda vendedores',
412 query: '/vendedor', 412 query: '/vendedor',
413 columnas: [ 413 columnas: [
414 { 414 {
415 propiedad: 'NUM', 415 propiedad: 'NUM',
416 nombre: 'Código', 416 nombre: 'Código',
417 filtro: { 417 filtro: {
418 nombre: 'rellenarDigitos', 418 nombre: 'rellenarDigitos',
419 parametro: 3 419 parametro: 3
420 } 420 }
421 }, 421 },
422 { 422 {
423 propiedad: 'NOM', 423 propiedad: 'NOM',
424 nombre: 'Nombre' 424 nombre: 'Nombre'
425 } 425 }
426 ], 426 ],
427 size: 'md' 427 size: 'md'
428 }; 428 };
429 focaModalService.modal(parametrosModal).then( 429 focaModalService.modal(parametrosModal).then(
430 function(vendedor) { 430 function(vendedor) {
431 $scope.$broadcast('addCabecera', { 431 $scope.$broadcast('addCabecera', {
432 label: 'Vendedor:', 432 label: 'Vendedor:',
433 valor: $filter('rellenarDigitos')(vendedor.NUM, 3) + ' - ' + 433 valor: $filter('rellenarDigitos')(vendedor.NUM, 3) + ' - ' +
434 vendedor.NOM 434 vendedor.NOM
435 }); 435 });
436 $scope.notaPedido.vendedor = vendedor; 436 $scope.notaPedido.vendedor = vendedor;
437 deleteCliente(); 437 deleteCliente();
438 callback(); 438 callback();
439 }, function() {} 439 }, function() {}
440 ); 440 );
441 } 441 }
442 }; 442 };
443 443
444 $scope.seleccionarCliente = function(ocultarVendedor) { 444 $scope.seleccionarCliente = function(ocultarVendedor) {
445 $scope.seleccionarVendedor(function() { 445 $scope.seleccionarVendedor(function() {
446 if (validarNotaRemitada()) { 446 if (validarNotaRemitada()) {
447 var modalInstance = $uibModal.open( 447 var modalInstance = $uibModal.open(
448 { 448 {
449 ariaLabelledBy: 'Busqueda de Cliente', 449 ariaLabelledBy: 'Busqueda de Cliente',
450 templateUrl: 'foca-busqueda-cliente-modal.html', 450 templateUrl: 'foca-busqueda-cliente-modal.html',
451 controller: 'focaBusquedaClienteModalController', 451 controller: 'focaBusquedaClienteModalController',
452 resolve: { 452 resolve: {
453 vendedor: function() { return $scope.notaPedido.vendedor; }, 453 vendedor: function() { return $scope.notaPedido.vendedor; },
454 cobrador: function() { return null; } 454 cobrador: function() { return null; }
455 }, 455 },
456 size: 'lg' 456 size: 'lg'
457 } 457 }
458 ); 458 );
459 modalInstance.result.then( 459 modalInstance.result.then(
460 function(cliente) { 460 function(cliente) {
461 $scope.abrirModalDomicilios(cliente); 461 $scope.abrirModalDomicilios(cliente);
462 $scope.cliente = cliente; 462 $scope.cliente = cliente;
463 }, function() { 463 }, function() {
464 if (APP !== 'distribuidor') $scope.seleccionarCliente(); 464 if (APP !== 'distribuidor') $scope.seleccionarCliente();
465 } 465 }
466 ); 466 );
467 } 467 }
468 }, ocultarVendedor); 468 }, ocultarVendedor);
469 }; 469 };
470 470
471 $scope.seleccionarProveedor = function(callback) { 471 $scope.seleccionarProveedor = function(callback) {
472 if (validarNotaRemitada()) { 472 if (validarNotaRemitada()) {
473 var parametrosModal = { 473 var parametrosModal = {
474 titulo: 'Búsqueda de Proveedor', 474 titulo: 'Búsqueda de Proveedor',
475 query: '/proveedor', 475 query: '/proveedor',
476 columnas: [ 476 columnas: [
477 { 477 {
478 nombre: 'Código', 478 nombre: 'Código',
479 propiedad: 'COD', 479 propiedad: 'COD',
480 filtro: { 480 filtro: {
481 nombre: 'rellenarDigitos', 481 nombre: 'rellenarDigitos',
482 parametro: 5 482 parametro: 5
483 } 483 }
484 }, 484 },
485 { 485 {
486 nombre: 'Nombre', 486 nombre: 'Nombre',
487 propiedad: 'NOM' 487 propiedad: 'NOM'
488 }, 488 },
489 { 489 {
490 nombre: 'CUIT', 490 nombre: 'CUIT',
491 propiedad: 'CUIT' 491 propiedad: 'CUIT'
492 } 492 }
493 ], 493 ],
494 tipo: 'POST', 494 tipo: 'POST',
495 json: {razonCuitCod: ''} 495 json: {razonCuitCod: ''}
496 }; 496 };
497 focaModalService.modal(parametrosModal).then( 497 focaModalService.modal(parametrosModal).then(
498 function(proveedor) { 498 function(proveedor) {
499 $scope.notaPedido.proveedor = proveedor; 499 $scope.notaPedido.proveedor = proveedor;
500 $scope.$broadcast('addCabecera', { 500 $scope.$broadcast('addCabecera', {
501 label: 'Proveedor:', 501 label: 'Proveedor:',
502 valor: $filter('rellenarDigitos')(proveedor.COD, 5) + ' - ' + 502 valor: $filter('rellenarDigitos')(proveedor.COD, 5) + ' - ' +
503 proveedor.NOM 503 proveedor.NOM
504 }); 504 });
505 callback(); 505 callback();
506 }, function() { 506 }, function() {
507 507
508 } 508 }
509 ); 509 );
510 } 510 }
511 }; 511 };
512 512
513 $scope.abrirModalDomicilios = function(cliente) { 513 $scope.abrirModalDomicilios = function(cliente) {
514 var modalInstanceDomicilio = $uibModal.open( 514 var modalInstanceDomicilio = $uibModal.open(
515 { 515 {
516 ariaLabelledBy: 'Busqueda de Domicilios', 516 ariaLabelledBy: 'Busqueda de Domicilios',
517 templateUrl: 'modal-domicilio.html', 517 templateUrl: 'modal-domicilio.html',
518 controller: 'focaModalDomicilioController', 518 controller: 'focaModalDomicilioController',
519 resolve: { 519 resolve: {
520 idCliente: function() { return cliente.cod; }, 520 idCliente: function() { return cliente.cod; },
521 esNuevo: function() { return cliente.esNuevo; } 521 esNuevo: function() { return cliente.esNuevo; }
522 }, 522 },
523 size: 'lg', 523 size: 'lg',
524 } 524 }
525 ); 525 );
526 modalInstanceDomicilio.result.then( 526 modalInstanceDomicilio.result.then(
527 function(domicilio) { 527 function(domicilio) {
528 $scope.notaPedido.domicilio = domicilio; 528 $scope.notaPedido.domicilio = domicilio;
529 $scope.notaPedido.cliente = { 529 $scope.notaPedido.cliente = {
530 COD: cliente.cod, 530 COD: cliente.cod,
531 CUIT: cliente.cuit, 531 CUIT: cliente.cuit,
532 NOM: cliente.nom, 532 NOM: cliente.nom,
533 MOD: cliente.mod 533 MOD: cliente.mod
534 }; 534 };
535 var domicilioStamp = 535 var domicilioStamp =
536 domicilio.Calle + ' ' + domicilio.Numero + ', ' + 536 domicilio.Calle + ' ' + domicilio.Numero + ', ' +
537 domicilio.Localidad + ', ' + domicilio.Provincia; 537 domicilio.Localidad + ', ' + domicilio.Provincia;
538 $scope.notaPedido.domicilioStamp = domicilioStamp; 538 $scope.notaPedido.domicilioStamp = domicilioStamp;
539 539
540 $scope.notaPedido.notaPedidoPuntoDescarga = domicilio.puntosDescarga; 540 $scope.notaPedido.notaPedidoPuntoDescarga = domicilio.puntosDescarga;
541 541
542 $scope.$broadcast('addCabecera', { 542 $scope.$broadcast('addCabecera', {
543 label: 'Cliente:', 543 label: 'Cliente:',
544 valor: $filter('rellenarDigitos')(cliente.cod, 5) + ' - ' + cliente.nom 544 valor: $filter('rellenarDigitos')(cliente.cod, 5) + ' - ' + cliente.nom
545 }); 545 });
546 $scope.$broadcast('addCabecera', { 546 $scope.$broadcast('addCabecera', {
547 label: 'Domicilio:', 547 label: 'Domicilio:',
548 valor: domicilioStamp 548 valor: domicilioStamp
549 }); 549 });
550 if (domicilio.verPuntos) { 550 if (domicilio.verPuntos) {
551 delete $scope.notaPedido.domicilio.verPuntos; 551 delete $scope.notaPedido.domicilio.verPuntos;
552 $scope.seleccionarPuntosDeDescarga(); 552 $scope.seleccionarPuntosDeDescarga();
553 } else { 553 } else {
554 crearNotaPedidoService 554 crearNotaPedidoService
555 .getPuntosDescargaByClienDom(domicilio.id, cliente.cod) 555 .getPuntosDescargaByClienDom(domicilio.id, cliente.cod)
556 .then(function(res) { 556 .then(function(res) {
557 if (res.data.length) $scope.seleccionarPuntosDeDescarga(); 557 if (res.data.length) $scope.seleccionarPuntosDeDescarga();
558 }); 558 });
559 } 559 }
560 }, function() { 560 }, function() {
561 $scope.seleccionarCliente(true); 561 $scope.seleccionarCliente(true);
562 return; 562 return;
563 } 563 }
564 ); 564 );
565 }; 565 };
566 566
567 $scope.getTotal = function() { 567 $scope.getTotal = function() {
568 var total = 0; 568 var total = 0;
569 if ($scope.notaPedido.articulosNotaPedido) { 569 if ($scope.notaPedido.articulosNotaPedido) {
570 var arrayTempArticulos = $scope.notaPedido.articulosNotaPedido; 570 var arrayTempArticulos = $scope.notaPedido.articulosNotaPedido;
571 for (var i = 0; i < arrayTempArticulos.length; i++) { 571 for (var i = 0; i < arrayTempArticulos.length; i++) {
572 total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad; 572 total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad;
573 } 573 }
574 } 574 }
575 575
576 return parseFloat(total.toFixed(2)); 576 return parseFloat(total.toFixed(2));
577 }; 577 };
578 578
579 $scope.getSubTotal = function() { 579 $scope.getSubTotal = function() {
580 if ($scope.articuloACargar) { 580 if ($scope.articuloACargar) {
581 return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad; 581 return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad;
582 } 582 }
583 }; 583 };
584 584
585 $scope.seleccionarPreciosYCondiciones = function() { 585 $scope.seleccionarPreciosYCondiciones = function() {
586 if (!$scope.notaPedido.cliente.COD) { 586 if (!$scope.notaPedido.cliente.COD) {
587 focaModalService.alert('Primero seleccione un cliente'); 587 focaModalService.alert('Primero seleccione un cliente');
588 return; 588 return;
589 } 589 }
590 if(validarNotaRemitada()) { 590 if(validarNotaRemitada()) {
591 var modalInstance = $uibModal.open( 591 var modalInstance = $uibModal.open(
592 { 592 {
593 ariaLabelledBy: 'Busqueda de Precio Condición', 593 ariaLabelledBy: 'Busqueda de Precio Condición',
594 templateUrl: 'modal-precio-condicion.html', 594 templateUrl: 'modal-precio-condicion.html',
595 controller: 'focaModalPrecioCondicionController', 595 controller: 'focaModalPrecioCondicionController',
596 size: 'lg', 596 size: 'lg',
597 resolve: { 597 resolve: {
598 idListaPrecio: function() { 598 idListaPrecio: function() {
599 return $scope.notaPedido.cliente.MOD || null; 599 return $scope.notaPedido.cliente.MOD || null;
600 } 600 }
601 } 601 }
602 } 602 }
603 ); 603 );
604 modalInstance.result.then( 604 modalInstance.result.then(
605 function(precioCondicion) { 605 function(precioCondicion) {
606 var cabecera = ''; 606 var cabecera = '';
607 var plazosConcat = ''; 607 var plazosConcat = '';
608 if (!Array.isArray(precioCondicion)) { 608 if (!Array.isArray(precioCondicion)) {
609 $scope.notaPedido.notaPedidoPlazo = precioCondicion.plazoPago; 609 $scope.notaPedido.notaPedidoPlazo = precioCondicion.plazoPago;
610 $scope.notaPedido.precioCondicion = precioCondicion; 610 $scope.notaPedido.precioCondicion = precioCondicion;
611 $scope.notaPedido.idPrecioCondicion = precioCondicion.id; 611 $scope.notaPedido.idPrecioCondicion = precioCondicion.id;
612 $scope.idLista = precioCondicion.idListaPrecio; 612 $scope.idLista = precioCondicion.idListaPrecio;
613 for (var i = 0; i < precioCondicion.plazoPago.length; i++) { 613 for (var i = 0; i < precioCondicion.plazoPago.length; i++) {
614 plazosConcat += precioCondicion.plazoPago[i].dias + ' '; 614 plazosConcat += precioCondicion.plazoPago[i].dias + ' ';
615 } 615 }
616 cabecera = $filter('rellenarDigitos')(precioCondicion.id, 4) + 616 cabecera = $filter('rellenarDigitos')(precioCondicion.id, 4) +
617 ' - ' + precioCondicion.nombre + ' ' + plazosConcat.trim(); 617 ' - ' + precioCondicion.nombre + ' ' + plazosConcat.trim();
618 } else { //Cuando se ingresan los plazos manualmente 618 } else { //Cuando se ingresan los plazos manualmente
619 $scope.notaPedido.idPrecioCondicion = 0; 619 $scope.notaPedido.idPrecioCondicion = 0;
620 //-1, el modal productos busca todos los productos 620 //-1, el modal productos busca todos los productos
621 $scope.idLista = -1; 621 $scope.idLista = -1;
622 $scope.notaPedido.notaPedidoPlazo = precioCondicion; 622 $scope.notaPedido.notaPedidoPlazo = precioCondicion;
623 for (var j = 0; j < precioCondicion.length; j++) { 623 for (var j = 0; j < precioCondicion.length; j++) {
624 plazosConcat += precioCondicion[j].dias + ' '; 624 plazosConcat += precioCondicion[j].dias + ' ';
625 } 625 }
626 cabecera = 'Ingreso manual ' + plazosConcat.trim(); 626 cabecera = 'Ingreso manual ' + plazosConcat.trim();
627 } 627 }
628 $scope.notaPedido.articulosNotaPedido = []; 628 $scope.notaPedido.articulosNotaPedido = [];
629 $scope.$broadcast('addCabecera', { 629 $scope.$broadcast('addCabecera', {
630 label: 'Precios y condiciones:', 630 label: 'Precios y condiciones:',
631 valor: cabecera 631 valor: cabecera
632 }); 632 });
633 }, function() { 633 }, function() {
634 634
635 } 635 }
636 ); 636 );
637 } 637 }
638 }; 638 };
639 639
640 $scope.seleccionarMoneda = function() { 640 $scope.seleccionarMoneda = function() {
641 if (validarNotaRemitada()) { 641 if (validarNotaRemitada()) {
642 var parametrosModal = { 642 var parametrosModal = {
643 titulo: 'Búsqueda de monedas', 643 titulo: 'Búsqueda de monedas',
644 query: '/moneda', 644 query: '/moneda',
645 columnas: [ 645 columnas: [
646 { 646 {
647 propiedad: 'DETALLE', 647 propiedad: 'DETALLE',
648 nombre: 'Nombre' 648 nombre: 'Nombre'
649 }, 649 },
650 { 650 {
651 propiedad: 'SIMBOLO', 651 propiedad: 'SIMBOLO',
652 nombre: 'Símbolo' 652 nombre: 'Símbolo'
653 } 653 }
654 ], 654 ],
655 size: 'md' 655 size: 'md'
656 }; 656 };
657 focaModalService.modal(parametrosModal).then( 657 focaModalService.modal(parametrosModal).then(
658 function(moneda) { 658 function(moneda) {
659 $scope.abrirModalCotizacion(moneda); 659 $scope.abrirModalCotizacion(moneda);
660 }, function() { 660 }, function() {
661 661
662 } 662 }
663 ); 663 );
664 } 664 }
665 }; 665 };
666 666
667 $scope.seleccionarObservaciones = function() { 667 $scope.seleccionarObservaciones = function() {
668 var observacion = { 668 var observacion = {
669 titulo: 'Ingrese Observaciones', 669 titulo: 'Ingrese Observaciones',
670 value: $scope.notaPedido.observaciones, 670 value: $scope.notaPedido.observaciones,
671 maxlength: 155, 671 maxlength: 155,
672 textarea: true 672 textarea: true
673 }; 673 };
674 674
675 focaModalService 675 focaModalService
676 .prompt(observacion) 676 .prompt(observacion)
677 .then(function(observaciones) { 677 .then(function(observaciones) {
678 $scope.$broadcast('addCabecera', { 678 $scope.$broadcast('addCabecera', {
679 label: 'Observaciones:', 679 label: 'Observaciones:',
680 valor: observaciones 680 valor: observaciones
681 }); 681 });
682 $scope.notaPedido.observaciones = observaciones; 682 $scope.notaPedido.observaciones = observaciones;
683 }); 683 });
684 }; 684 };
685 685
686 $scope.abrirModalCotizacion = function(moneda) { 686 $scope.abrirModalCotizacion = function(moneda) {
687 var modalInstance = $uibModal.open( 687 var modalInstance = $uibModal.open(
688 { 688 {
689 ariaLabelledBy: 'Busqueda de Cotización', 689 ariaLabelledBy: 'Busqueda de Cotización',
690 templateUrl: 'modal-cotizacion.html', 690 templateUrl: 'modal-cotizacion.html',
691 controller: 'focaModalCotizacionController', 691 controller: 'focaModalCotizacionController',
692 size: 'lg', 692 size: 'lg',
693 resolve: { 693 resolve: {
694 idMoneda: function() { 694 idMoneda: function() {
695 return moneda.ID; 695 return moneda.ID;
696 } 696 }
697 } 697 }
698 } 698 }
699 ); 699 );
700 modalInstance.result.then( 700 modalInstance.result.then(
701 function(cotizacion) { 701 function(cotizacion) {
702 var articulosTablaTemp = $scope.notaPedido.articulosNotaPedido || []; 702 var articulosTablaTemp = $scope.notaPedido.articulosNotaPedido || [];
703 for (var i = 0; i < articulosTablaTemp.length; i++) { 703 for (var i = 0; i < articulosTablaTemp.length; i++) {
704 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio * 704 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio *
705 $scope.notaPedido.cotizacion.VENDEDOR; 705 $scope.notaPedido.cotizacion.VENDEDOR;
706 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio / 706 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio /
707 cotizacion.VENDEDOR; 707 cotizacion.VENDEDOR;
708 } 708 }
709 $scope.notaPedido.articulosNotaPedido = articulosTablaTemp; 709 $scope.notaPedido.articulosNotaPedido = articulosTablaTemp;
710 $scope.notaPedido.cotizacion = cotizacion; 710 $scope.notaPedido.cotizacion = cotizacion;
711 $scope.notaPedido.cotizacion.moneda = moneda; 711 $scope.notaPedido.cotizacion.moneda = moneda;
712 if (moneda.DETALLE === 'PESOS ARGENTINOS') { 712 if (moneda.DETALLE === 'PESOS ARGENTINOS') {
713 $scope.$broadcast('removeCabecera', 'Moneda:'); 713 $scope.$broadcast('removeCabecera', 'Moneda:');
714 $scope.$broadcast('removeCabecera', 'Fecha cotizacion:'); 714 $scope.$broadcast('removeCabecera', 'Fecha cotizacion:');
715 $scope.$broadcast('removeCabecera', 'Cotizacion:'); 715 $scope.$broadcast('removeCabecera', 'Cotizacion:');
716 } else { 716 } else {
717 $scope.$broadcast('addCabecera', { 717 $scope.$broadcast('addCabecera', {
718 label: 'Moneda:', 718 label: 'Moneda:',
719 valor: moneda.DETALLE 719 valor: moneda.DETALLE
720 }); 720 });
721 $scope.$broadcast('addCabecera', { 721 $scope.$broadcast('addCabecera', {
722 label: 'Fecha cotizacion:', 722 label: 'Fecha cotizacion:',
723 valor: $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy') 723 valor: $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy')
724 }); 724 });
725 $scope.$broadcast('addCabecera', { 725 $scope.$broadcast('addCabecera', {
726 label: 'Cotizacion:', 726 label: 'Cotizacion:',
727 valor: $filter('number')(cotizacion.VENDEDOR, '2') 727 valor: $filter('number')(cotizacion.VENDEDOR, '2')
728 }); 728 });
729 } 729 }
730 }, function() { 730 }, function() {
731 731
732 } 732 }
733 ); 733 );
734 }; 734 };
735 735
736 $scope.agregarATabla = function(key) { 736 $scope.agregarATabla = function(key) {
737 if (key === 13) { 737 if (key === 13) {
738 if ($scope.articuloACargar.cantidad === undefined || 738 if ($scope.articuloACargar.cantidad === undefined ||
739 $scope.articuloACargar.cantidad === 0 || 739 $scope.articuloACargar.cantidad === 0 ||
740 $scope.articuloACargar.cantidad === null ) { 740 $scope.articuloACargar.cantidad === null ) {
741 focaModalService.alert('El valor debe ser al menos 1'); 741 focaModalService.alert('El valor debe ser al menos 1');
742 return; 742 return;
743 } 743 }
744 delete $scope.articuloACargar.sectorCodigo; 744 delete $scope.articuloACargar.sectorCodigo;
745 $scope.notaPedido.articulosNotaPedido.push($scope.articuloACargar); 745 $scope.notaPedido.articulosNotaPedido.push($scope.articuloACargar);
746 $scope.cargando = true; 746 $scope.cargando = true;
747 } 747 }
748 }; 748 };
749 749
750 $scope.quitarArticulo = function(key) { 750 $scope.quitarArticulo = function(key) {
751 $scope.notaPedido.articulosNotaPedido.splice(key, 1); 751 $scope.notaPedido.articulosNotaPedido.splice(key, 1);
752 }; 752 };
753 753
754 $scope.editarArticulo = function(key, articulo) { 754 $scope.editarArticulo = function(key, articulo) {
755 if (key === 13) { 755 if (key === 13) {
756 if (articulo.cantidad === null || articulo.cantidad === 0 || 756 if (articulo.cantidad === null || articulo.cantidad === 0 ||
757 articulo.cantidad === undefined) { 757 articulo.cantidad === undefined) {
758 focaModalService.alert('El valor debe ser al menos 1'); 758 focaModalService.alert('El valor debe ser al menos 1');
759 return; 759 return;
760 } 760 }
761 articulo.editCantidad = false; 761 articulo.editCantidad = false;
762 articulo.editPrecio = false; 762 articulo.editPrecio = false;
763 } 763 }
764 }; 764 };
765 765
766 $scope.cambioEdit = function(articulo, propiedad) { 766 $scope.cambioEdit = function(articulo, propiedad) {
767 if (propiedad === 'cantidad') { 767 if (propiedad === 'cantidad') {
768 articulo.editCantidad = true; 768 articulo.editCantidad = true;
769 } else if (propiedad === 'precio') { 769 } else if (propiedad === 'precio') {
770 articulo.editPrecio = true; 770 articulo.editPrecio = true;
771 } 771 }
772 }; 772 };
773 773
774 $scope.resetFilter = function() { 774 $scope.resetFilter = function() {
775 $scope.articuloACargar = {}; 775 $scope.articuloACargar = {};
776 $scope.cargando = true; 776 $scope.cargando = true;
777 }; 777 };
778 //Recibe aviso si el teclado está en uso 778 //Recibe aviso si el teclado está en uso
779 $rootScope.$on('usarTeclado', function(event, data) { 779 $rootScope.$on('usarTeclado', function(event, data) {
780 if (data) { 780 if (data) {
781 $scope.mostrarTeclado = true; 781 $scope.mostrarTeclado = true;
782 return; 782 return;
783 } 783 }
784 $scope.mostrarTeclado = false; 784 $scope.mostrarTeclado = false;
785 }); 785 });
786 786
787 $scope.selectFocus = function($event) { 787 $scope.selectFocus = function($event) {
788 // Si el teclado esta en uso no selecciona el valor 788 // Si el teclado esta en uso no selecciona el valor
789 if ($scope.mostrarTeclado) { 789 if ($scope.mostrarTeclado) {
790 return; 790 return;
791 } 791 }
792 $event.target.select(); 792 $event.target.select();
793 }; 793 };
794 794
795 $scope.salir = function() { 795 $scope.salir = function() {
796 $location.path('/'); 796 $location.path('/');
797 }; 797 };
798 798
799 $scope.parsearATexto = function(articulo) { 799 $scope.parsearATexto = function(articulo) {
800 articulo.cantidad = parseFloat(articulo.cantidad); 800 articulo.cantidad = parseFloat(articulo.cantidad);
801 articulo.precio = parseFloat(articulo.precio); 801 articulo.precio = parseFloat(articulo.precio);
802 }; 802 };
803 803
804 function setearNotaPedido(notaPedido) { 804 function setearNotaPedido(notaPedido) {
805 //añado cabeceras 805 //añado cabeceras
806 $scope.notaPedido = notaPedido; 806 $scope.notaPedido = notaPedido;
807 if (!$scope.notaPedido.domicilio) {
808 $scope.notaPedido.domicilio = {
809 id: $scope.notaPedido.idDomicilio
810 };
811 }
807 $scope.$broadcast('removeCabecera', 'Bomba:'); 812 $scope.$broadcast('removeCabecera', 'Bomba:');
808 $scope.$broadcast('removeCabecera', 'Kilometros:'); 813 $scope.$broadcast('removeCabecera', 'Kilometros:');
809 814
810 var cabeceras = []; 815 var cabeceras = [];
811 816
812 if (notaPedido.cotizacion) { 817 if (notaPedido.cotizacion) {
813 cabeceras.push({ 818 cabeceras.push({
814 label: 'Moneda:', 819 label: 'Moneda:',
815 valor: notaPedido.cotizacion.moneda.DETALLE 820 valor: notaPedido.cotizacion.moneda.DETALLE
816 }); 821 });
817 cabeceras.push({ 822 cabeceras.push({
818 label: 'Fecha cotizacion:', 823 label: 'Fecha cotizacion:',
819 valor: $filter('date')(notaPedido.cotizacion.FECHA, 824 valor: $filter('date')(notaPedido.cotizacion.FECHA,
820 'dd/MM/yyyy') 825 'dd/MM/yyyy')
821 }); 826 });
822 cabeceras.push({ 827 cabeceras.push({
823 label: 'Cotizacion:', 828 label: 'Cotizacion:',
824 valor: $filter('number')(notaPedido.cotizacion.VENDEDOR, 829 valor: $filter('number')(notaPedido.cotizacion.VENDEDOR,
825 '2') 830 '2')
826 }); 831 });
827 } 832 }
828 833
829 if (notaPedido.cliente.COD) { 834 if (notaPedido.cliente.COD) {
830 cabeceras.push({ 835 cabeceras.push({
831 label: 'Cliente:', 836 label: 'Cliente:',
832 valor: notaPedido.cliente.NOM 837 valor: notaPedido.cliente.NOM
833 }); 838 });
834 cabeceras.push({ 839 cabeceras.push({
835 label: 'Domicilio:', 840 label: 'Domicilio:',
836 valor: notaPedido.domicilioStamp 841 valor: notaPedido.domicilioStamp
837 }); 842 });
838 } 843 }
839 844
840 if (notaPedido.vendedor.NUM) { 845 if (notaPedido.vendedor.NUM) {
841 cabeceras.push({ 846 cabeceras.push({
842 label: 'Vendedor:', 847 label: 'Vendedor:',
843 valor: $filter('rellenarDigitos')(notaPedido.vendedor.NUM, 3) + 848 valor: $filter('rellenarDigitos')(notaPedido.vendedor.NUM, 3) +
844 ' - ' + notaPedido.vendedor.NOM 849 ' - ' + notaPedido.vendedor.NOM
845 }); 850 });
846 } 851 }
847 852
848 if (notaPedido.proveedor.COD) { 853 if (notaPedido.proveedor.COD) {
849 cabeceras.push({ 854 cabeceras.push({
850 label: 'Proveedor:', 855 label: 'Proveedor:',
851 valor: $filter('rellenarDigitos')(notaPedido.proveedor.COD, 5) + 856 valor: $filter('rellenarDigitos')(notaPedido.proveedor.COD, 5) +
852 ' - ' + notaPedido.proveedor.NOM 857 ' - ' + notaPedido.proveedor.NOM
853 }); 858 });
854 } 859 }
855 860
856 if (notaPedido.notaPedidoPlazo.length) { 861 if (notaPedido.notaPedidoPlazo.length) {
857 cabeceras.push({ 862 cabeceras.push({
858 label: 'Precios y condiciones:', 863 label: 'Precios y condiciones:',
859 valor: valorPrecioCondicion() + ' ' + 864 valor: valorPrecioCondicion() + ' ' +
860 notaPedidoBusinessService 865 notaPedidoBusinessService
861 .plazoToString(notaPedido.notaPedidoPlazo) 866 .plazoToString(notaPedido.notaPedidoPlazo)
862 }); 867 });
863 } 868 }
864 869
865 if (notaPedido.flete !== undefined) { 870 if (notaPedido.flete !== undefined) {
866 cabeceras.push({ 871 cabeceras.push({
867 label: 'Flete:', 872 label: 'Flete:',
868 valor: notaPedido.fob === 1 ? 'FOB' : ( 873 valor: notaPedido.fob === 1 ? 'FOB' : (
869 notaPedido.flete === 1 ? 'Si' : 'No') 874 notaPedido.flete === 1 ? 'Si' : 'No')
870 }); 875 });
871 } 876 }
872 877
873 function valorPrecioCondicion() { 878 function valorPrecioCondicion() {
874 if (notaPedido.idPrecioCondicion > 0) { 879 if (notaPedido.idPrecioCondicion > 0) {
875 return notaPedido.precioCondicion.nombre; 880 return notaPedido.precioCondicion.nombre;
876 } else { 881 } else {
877 return 'Ingreso Manual'; 882 return 'Ingreso Manual';
878 } 883 }
879 } 884 }
880 885
881 if (notaPedido.flete === 1) { 886 if (notaPedido.flete === 1) {
882 var cabeceraBomba = { 887 var cabeceraBomba = {
883 label: 'Bomba:', 888 label: 'Bomba:',
884 valor: notaPedido.bomba === 1 ? 'Si' : 'No' 889 valor: notaPedido.bomba === 1 ? 'Si' : 'No'
885 }; 890 };
886 if (notaPedido.kilometros) { 891 if (notaPedido.kilometros) {
887 var cabeceraKilometros = { 892 var cabeceraKilometros = {
888 label: 'Kilometros:', 893 label: 'Kilometros:',
889 valor: notaPedido.kilometros 894 valor: notaPedido.kilometros
890 }; 895 };
891 cabeceras.push(cabeceraKilometros); 896 cabeceras.push(cabeceraKilometros);
892 } 897 }
893 cabeceras.push(cabeceraBomba); 898 cabeceras.push(cabeceraBomba);
894 } 899 }
895 900
896 notaPedidoBusinessService.calcularArticulos($scope.notaPedido.articulosNotaPedido, 901 notaPedidoBusinessService.calcularArticulos($scope.notaPedido.articulosNotaPedido,
897 notaPedido.cotizacion.VENDEDOR); 902 notaPedido.cotizacion.VENDEDOR);
898 903
899 if (notaPedido.idPrecioCondicion > 0) { 904 if (notaPedido.idPrecioCondicion > 0) {
900 $scope.idLista = notaPedido.precioCondicion.idListaPrecio; 905 $scope.idLista = notaPedido.precioCondicion.idListaPrecio;
901 } else { 906 } else {
902 $scope.idLista = -1; 907 $scope.idLista = -1;
903 } 908 }
904 909
905 $scope.puntoVenta = $filter('rellenarDigitos')( 910 $scope.puntoVenta = $filter('rellenarDigitos')(
906 notaPedido.sucursal, 4 911 notaPedido.sucursal, 4
907 ); 912 );
908 913
909 $scope.comprobante = $filter('rellenarDigitos')( 914 $scope.comprobante = $filter('rellenarDigitos')(
910 notaPedido.numeroNotaPedido, 8 915 notaPedido.numeroNotaPedido, 8
911 ); 916 );
912 917
913 $scope.notaPedido.notaPedidoPuntoDescarga = 918 $scope.notaPedido.notaPedidoPuntoDescarga =
914 formatearPuntosDescarga(notaPedido.notaPedidoPuntoDescarga || []); 919 formatearPuntosDescarga(notaPedido.notaPedidoPuntoDescarga || []);
915 addArrayCabecera(cabeceras); 920 addArrayCabecera(cabeceras);
916 } 921 }
917 922
918 function addArrayCabecera(array) { 923 function addArrayCabecera(array) {
919 for (var i = 0; i < array.length; i++) { 924 for (var i = 0; i < array.length; i++) {
920 $scope.$broadcast('addCabecera', { 925 $scope.$broadcast('addCabecera', {
921 label: array[i].label, 926 label: array[i].label,
922 valor: array[i].valor 927 valor: array[i].valor
923 }); 928 });
924 } 929 }
925 } 930 }
926 931
927 function validarNotaRemitada() { 932 function validarNotaRemitada() {
928 if (!$scope.notaPedido.idRemito) { 933 if (!$scope.notaPedido.idRemito) {
929 return true; 934 return true;
930 } else { 935 } else {
931 focaModalService.alert('No se puede editar una nota de pedido remitada'); 936 focaModalService.alert('No se puede editar una nota de pedido remitada');
932 return false; 937 return false;
933 } 938 }
934 } 939 }
935 940
936 function formatearPuntosDescarga(puntosDescarga) { 941 function formatearPuntosDescarga(puntosDescarga) {
937 var result = []; 942 var result = [];
938 943
939 puntosDescarga.forEach(function(el) { 944 puntosDescarga.forEach(function(el) {
940 var puntoDescarga = result.filter(function(resultPunto) { 945 var puntoDescarga = result.filter(function(resultPunto) {
941 return resultPunto.id === el.idPuntoDescarga; 946 return resultPunto.id === el.idPuntoDescarga;
942 }); 947 });
943 948
944 if (puntoDescarga.length) { 949 if (puntoDescarga.length) {
945 puntoDescarga[0].articulosAgregados.push({ 950 puntoDescarga[0].articulosAgregados.push({
946 cantidad: el.cantidad, 951 cantidad: el.cantidad,
947 descripcion: el.producto.descripcion, 952 descripcion: el.producto.descripcion,
948 id: el.producto.id 953 id: el.producto.id
949 }); 954 });
950 } else { 955 } else {
951 result.push({ 956 result.push({
952 id: el.puntoDescarga.id, 957 id: el.puntoDescarga.id,
953 id_cliente: el.puntoDescarga.id_cliente, 958 id_cliente: el.puntoDescarga.id_cliente,
954 id_da_config_0: el.puntoDescarga.id_da_config_0, 959 id_da_config_0: el.puntoDescarga.id_da_config_0,
955 latitud: el.puntoDescarga.latitud, 960 latitud: el.puntoDescarga.latitud,
956 longitud: el.puntoDescarga.longitud, 961 longitud: el.puntoDescarga.longitud,
957 descripcion: el.puntoDescarga.descripcion, 962 descripcion: el.puntoDescarga.descripcion,
958 articulosAgregados: [ 963 articulosAgregados: [
959 { 964 {
960 cantidad: el.cantidad, 965 cantidad: el.cantidad,
961 descripcion: el.producto.descripcion, 966 descripcion: el.producto.descripcion,
962 id: el.producto.id 967 id: el.producto.id
963 } 968 }
964 ] 969 ]
965 }); 970 });
966 } 971 }
967 }); 972 });
968 return result; 973 return result;
969 } 974 }
970 975
971 function salir() { 976 function salir() {
972 var confirmacion = false; 977 var confirmacion = false;
973 978
974 if (!angular.equals($scope.notaPedido, $scope.inicial)) { 979 if (!angular.equals($scope.notaPedido, $scope.inicial)) {
975 confirmacion = true; 980 confirmacion = true;
976 } 981 }
977 982
978 if (confirmacion) { 983 if (confirmacion) {
979 focaModalService.confirm( 984 focaModalService.confirm(
980 '¿Está seguro de que desea salir? Se perderán todos los datos cargados.' 985 '¿Está seguro de que desea salir? Se perderán todos los datos cargados.'
981 ).then(function(data) { 986 ).then(function(data) {
982 if (data) { 987 if (data) {
983 $location.path('/'); 988 $location.path('/');
984 } 989 }
985 }); 990 });
986 } else { 991 } else {
987 $location.path('/'); 992 $location.path('/');
988 } 993 }
989 } 994 }
990 995
991 function getLSNotaPedido() { 996 function getLSNotaPedido() {
992 var notaPedido = JSON.parse($localStorage.notaPedido || null); 997 var notaPedido = JSON.parse($localStorage.notaPedido || null);
993 if (notaPedido) { 998 if (notaPedido) {
994 setearNotaPedido(notaPedido); 999 setearNotaPedido(notaPedido);
995 delete $localStorage.notaPedido; 1000 delete $localStorage.notaPedido;
996 } 1001 }
997 } 1002 }
998 1003
999 function deleteCliente() { 1004 function deleteCliente() {
1000 delete $scope.notaPedido.domicilioStamp; 1005 delete $scope.notaPedido.domicilioStamp;
1001 delete $scope.notaPedido.notaPedidoPuntoDescarga; 1006 delete $scope.notaPedido.notaPedidoPuntoDescarga;
1002 $scope.notaPedido.domicilio = {dom: ''}; 1007 $scope.notaPedido.domicilio = {dom: ''};
1003 $scope.notaPedido.cliente = {}; 1008 $scope.notaPedido.cliente = {};
1004 $scope.$broadcast('removeCabecera', 'Cliente:'); 1009 $scope.$broadcast('removeCabecera', 'Cliente:');
1005 $scope.$broadcast('removeCabecera', 'Domicilio:'); 1010 $scope.$broadcast('removeCabecera', 'Domicilio:');
1006 $scope.$broadcast('removeCabecera', 'Puntos de descarga:'); 1011 $scope.$broadcast('removeCabecera', 'Puntos de descarga:');
1007 } 1012 }
1008 } 1013 }
1009 ]); 1014 ]);
1010 1015