Commit 8b14f3e4bea73b0db79a8b9cc030e6974b79ebf8

Authored by Jose Pinto
1 parent 1a30061d01
Exists in master

precios y condiciones, relacion con cliente

Showing 1 changed file with 14 additions and 4 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 }; 534 };
534 var domicilioStamp = 535 var domicilioStamp =
535 domicilio.Calle + ' ' + domicilio.Numero + ', ' + 536 domicilio.Calle + ' ' + domicilio.Numero + ', ' +
536 domicilio.Localidad + ', ' + domicilio.Provincia; 537 domicilio.Localidad + ', ' + domicilio.Provincia;
537 $scope.notaPedido.domicilioStamp = domicilioStamp; 538 $scope.notaPedido.domicilioStamp = domicilioStamp;
538 539
539 $scope.notaPedido.notaPedidoPuntoDescarga = domicilio.puntosDescarga; 540 $scope.notaPedido.notaPedidoPuntoDescarga = domicilio.puntosDescarga;
540 541
541 $scope.$broadcast('addCabecera', { 542 $scope.$broadcast('addCabecera', {
542 label: 'Cliente:', 543 label: 'Cliente:',
543 valor: $filter('rellenarDigitos')(cliente.cod, 5) + ' - ' + cliente.nom 544 valor: $filter('rellenarDigitos')(cliente.cod, 5) + ' - ' + cliente.nom
544 }); 545 });
545 $scope.$broadcast('addCabecera', { 546 $scope.$broadcast('addCabecera', {
546 label: 'Domicilio:', 547 label: 'Domicilio:',
547 valor: domicilioStamp 548 valor: domicilioStamp
548 }); 549 });
549 if (domicilio.verPuntos) { 550 if (domicilio.verPuntos) {
550 delete $scope.notaPedido.domicilio.verPuntos; 551 delete $scope.notaPedido.domicilio.verPuntos;
551 $scope.seleccionarPuntosDeDescarga(); 552 $scope.seleccionarPuntosDeDescarga();
552 } else { 553 } else {
553 crearNotaPedidoService 554 crearNotaPedidoService
554 .getPuntosDescargaByClienDom(domicilio.id, cliente.cod) 555 .getPuntosDescargaByClienDom(domicilio.id, cliente.cod)
555 .then(function(res) { 556 .then(function(res) {
556 if(res.data.length) $scope.seleccionarPuntosDeDescarga(); 557 if(res.data.length) $scope.seleccionarPuntosDeDescarga();
557 }); 558 });
558 } 559 }
559 }, function() { 560 }, function() {
560 $scope.seleccionarCliente(true); 561 $scope.seleccionarCliente(true);
561 return; 562 return;
562 } 563 }
563 ); 564 );
564 }; 565 };
565 566
566 $scope.getTotal = function() { 567 $scope.getTotal = function() {
567 var total = 0; 568 var total = 0;
568 if ($scope.notaPedido.articulosNotaPedido) { 569 if ($scope.notaPedido.articulosNotaPedido) {
569 var arrayTempArticulos = $scope.notaPedido.articulosNotaPedido; 570 var arrayTempArticulos = $scope.notaPedido.articulosNotaPedido;
570 for (var i = 0; i < arrayTempArticulos.length; i++) { 571 for (var i = 0; i < arrayTempArticulos.length; i++) {
571 total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad; 572 total += arrayTempArticulos[i].precio * arrayTempArticulos[i].cantidad;
572 } 573 }
573 } 574 }
574 575
575 return parseFloat(total.toFixed(2)); 576 return parseFloat(total.toFixed(2));
576 }; 577 };
577 578
578 $scope.getSubTotal = function() { 579 $scope.getSubTotal = function() {
579 if($scope.articuloACargar) { 580 if($scope.articuloACargar) {
580 return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad; 581 return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad;
581 } 582 }
582 }; 583 };
583 584
584 $scope.seleccionarPreciosYCondiciones = function() { 585 $scope.seleccionarPreciosYCondiciones = function() {
586 if (!$scope.notaPedido.cliente.COD) {
587 focaModalService.alert('Primero seleccione un cliente');
588 return;
589 }
585 if(validarNotaRemitada()) { 590 if(validarNotaRemitada()) {
586 var modalInstance = $uibModal.open( 591 var modalInstance = $uibModal.open(
587 { 592 {
588 ariaLabelledBy: 'Busqueda de Precio Condición', 593 ariaLabelledBy: 'Busqueda de Precio Condición',
589 templateUrl: 'modal-precio-condicion.html', 594 templateUrl: 'modal-precio-condicion.html',
590 controller: 'focaModalPrecioCondicionController', 595 controller: 'focaModalPrecioCondicionController',
591 size: 'lg' 596 size: 'lg',
597 resolve: {
598 idListaPrecio: function() {
599 return $scope.notaPedido.cliente.MOD || null;
600 }
601 }
592 } 602 }
593 ); 603 );
594 modalInstance.result.then( 604 modalInstance.result.then(
595 function(precioCondicion) { 605 function(precioCondicion) {
596 var cabecera = ''; 606 var cabecera = '';
597 var plazosConcat = ''; 607 var plazosConcat = '';
598 if(!Array.isArray(precioCondicion)) { 608 if(!Array.isArray(precioCondicion)) {
599 $scope.notaPedido.notaPedidoPlazo = precioCondicion.plazoPago; 609 $scope.notaPedido.notaPedidoPlazo = precioCondicion.plazoPago;
600 $scope.notaPedido.precioCondicion = precioCondicion; 610 $scope.notaPedido.precioCondicion = precioCondicion;
601 $scope.notaPedido.idPrecioCondicion = precioCondicion.id; 611 $scope.notaPedido.idPrecioCondicion = precioCondicion.id;
602 $scope.idLista = precioCondicion.idListaPrecio; 612 $scope.idLista = precioCondicion.idListaPrecio;
603 for(var i = 0; i < precioCondicion.plazoPago.length; i++) { 613 for(var i = 0; i < precioCondicion.plazoPago.length; i++) {
604 plazosConcat += precioCondicion.plazoPago[i].dias + ' '; 614 plazosConcat += precioCondicion.plazoPago[i].dias + ' ';
605 } 615 }
606 cabecera = $filter('rellenarDigitos')(precioCondicion.id, 4) + 616 cabecera = $filter('rellenarDigitos')(precioCondicion.id, 4) +
607 ' - ' + precioCondicion.nombre + ' ' + plazosConcat.trim(); 617 ' - ' + precioCondicion.nombre + ' ' + plazosConcat.trim();
608 } else { //Cuando se ingresan los plazos manualmente 618 } else { //Cuando se ingresan los plazos manualmente
609 $scope.notaPedido.idPrecioCondicion = 0; 619 $scope.notaPedido.idPrecioCondicion = 0;
610 //-1, el modal productos busca todos los productos 620 //-1, el modal productos busca todos los productos
611 $scope.idLista = -1; 621 $scope.idLista = -1;
612 $scope.notaPedido.notaPedidoPlazo = precioCondicion; 622 $scope.notaPedido.notaPedidoPlazo = precioCondicion;
613 for(var j = 0; j < precioCondicion.length; j++) { 623 for(var j = 0; j < precioCondicion.length; j++) {
614 plazosConcat += precioCondicion[j].dias + ' '; 624 plazosConcat += precioCondicion[j].dias + ' ';
615 } 625 }
616 cabecera = 'Ingreso manual ' + plazosConcat.trim(); 626 cabecera = 'Ingreso manual ' + plazosConcat.trim();
617 } 627 }
618 $scope.notaPedido.articulosNotaPedido = []; 628 $scope.notaPedido.articulosNotaPedido = [];
619 $scope.$broadcast('addCabecera', { 629 $scope.$broadcast('addCabecera', {
620 label: 'Precios y condiciones:', 630 label: 'Precios y condiciones:',
621 valor: cabecera 631 valor: cabecera
622 }); 632 });
623 }, function() { 633 }, function() {
624 634
625 } 635 }
626 ); 636 );
627 } 637 }
628 }; 638 };
629 639
630 $scope.seleccionarMoneda = function() { 640 $scope.seleccionarMoneda = function() {
631 if(validarNotaRemitada()) { 641 if(validarNotaRemitada()) {
632 var parametrosModal = { 642 var parametrosModal = {
633 titulo: 'Búsqueda de monedas', 643 titulo: 'Búsqueda de monedas',
634 query: '/moneda', 644 query: '/moneda',
635 columnas: [ 645 columnas: [
636 { 646 {
637 propiedad: 'DETALLE', 647 propiedad: 'DETALLE',
638 nombre: 'Nombre' 648 nombre: 'Nombre'
639 }, 649 },
640 { 650 {
641 propiedad: 'SIMBOLO', 651 propiedad: 'SIMBOLO',
642 nombre: 'Símbolo' 652 nombre: 'Símbolo'
643 } 653 }
644 ], 654 ],
645 size: 'md' 655 size: 'md'
646 }; 656 };
647 focaModalService.modal(parametrosModal).then( 657 focaModalService.modal(parametrosModal).then(
648 function(moneda) { 658 function(moneda) {
649 $scope.abrirModalCotizacion(moneda); 659 $scope.abrirModalCotizacion(moneda);
650 }, function() { 660 }, function() {
651 661
652 } 662 }
653 ); 663 );
654 } 664 }
655 }; 665 };
656 666
657 $scope.seleccionarObservaciones = function() { 667 $scope.seleccionarObservaciones = function() {
658 focaModalService 668 focaModalService
659 .prompt({ 669 .prompt({
660 titulo: 'Ingrese observaciones', 670 titulo: 'Ingrese observaciones',
661 value: $scope.notaPedido.observaciones, 671 value: $scope.notaPedido.observaciones,
662 textarea: true 672 textarea: true
663 }) 673 })
664 .then(function(observaciones) { 674 .then(function(observaciones) {
665 $scope.notaPedido.observaciones = observaciones; 675 $scope.notaPedido.observaciones = observaciones;
666 }); 676 });
667 }; 677 };
668 678
669 $scope.abrirModalCotizacion = function(moneda) { 679 $scope.abrirModalCotizacion = function(moneda) {
670 var modalInstance = $uibModal.open( 680 var modalInstance = $uibModal.open(
671 { 681 {
672 ariaLabelledBy: 'Busqueda de Cotización', 682 ariaLabelledBy: 'Busqueda de Cotización',
673 templateUrl: 'modal-cotizacion.html', 683 templateUrl: 'modal-cotizacion.html',
674 controller: 'focaModalCotizacionController', 684 controller: 'focaModalCotizacionController',
675 size: 'lg', 685 size: 'lg',
676 resolve: { 686 resolve: {
677 idMoneda: function() { 687 idMoneda: function() {
678 return moneda.ID; 688 return moneda.ID;
679 } 689 }
680 } 690 }
681 } 691 }
682 ); 692 );
683 modalInstance.result.then( 693 modalInstance.result.then(
684 function(cotizacion) { 694 function(cotizacion) {
685 var articulosTablaTemp = $scope.notaPedido.articulosNotaPedido || []; 695 var articulosTablaTemp = $scope.notaPedido.articulosNotaPedido || [];
686 for(var i = 0; i < articulosTablaTemp.length; i++) { 696 for(var i = 0; i < articulosTablaTemp.length; i++) {
687 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio * 697 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio *
688 $scope.notaPedido.cotizacion.VENDEDOR; 698 $scope.notaPedido.cotizacion.VENDEDOR;
689 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio / 699 articulosTablaTemp[i].precio = articulosTablaTemp[i].precio /
690 cotizacion.VENDEDOR; 700 cotizacion.VENDEDOR;
691 } 701 }
692 $scope.notaPedido.articulosNotaPedido = articulosTablaTemp; 702 $scope.notaPedido.articulosNotaPedido = articulosTablaTemp;
693 $scope.notaPedido.cotizacion = cotizacion; 703 $scope.notaPedido.cotizacion = cotizacion;
694 $scope.notaPedido.cotizacion.moneda = moneda; 704 $scope.notaPedido.cotizacion.moneda = moneda;
695 if(moneda.DETALLE === 'PESOS ARGENTINOS') { 705 if(moneda.DETALLE === 'PESOS ARGENTINOS') {
696 $scope.$broadcast('removeCabecera', 'Moneda:'); 706 $scope.$broadcast('removeCabecera', 'Moneda:');
697 $scope.$broadcast('removeCabecera', 'Fecha cotizacion:'); 707 $scope.$broadcast('removeCabecera', 'Fecha cotizacion:');
698 $scope.$broadcast('removeCabecera', 'Cotizacion:'); 708 $scope.$broadcast('removeCabecera', 'Cotizacion:');
699 } else { 709 } else {
700 $scope.$broadcast('addCabecera', { 710 $scope.$broadcast('addCabecera', {
701 label: 'Moneda:', 711 label: 'Moneda:',
702 valor: moneda.DETALLE 712 valor: moneda.DETALLE
703 }); 713 });
704 $scope.$broadcast('addCabecera', { 714 $scope.$broadcast('addCabecera', {
705 label: 'Fecha cotizacion:', 715 label: 'Fecha cotizacion:',
706 valor: $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy') 716 valor: $filter('date')(cotizacion.FECHA, 'dd/MM/yyyy')
707 }); 717 });
708 $scope.$broadcast('addCabecera', { 718 $scope.$broadcast('addCabecera', {
709 label: 'Cotizacion:', 719 label: 'Cotizacion:',
710 valor: $filter('number')(cotizacion.VENDEDOR, '2') 720 valor: $filter('number')(cotizacion.VENDEDOR, '2')
711 }); 721 });
712 } 722 }
713 }, function() { 723 }, function() {
714 724
715 } 725 }
716 ); 726 );
717 }; 727 };
718 728
719 $scope.agregarATabla = function(key) { 729 $scope.agregarATabla = function(key) {
720 if(key === 13) { 730 if(key === 13) {
721 if($scope.articuloACargar.cantidad === undefined || 731 if($scope.articuloACargar.cantidad === undefined ||
722 $scope.articuloACargar.cantidad === 0 || 732 $scope.articuloACargar.cantidad === 0 ||
723 $scope.articuloACargar.cantidad === null ) { 733 $scope.articuloACargar.cantidad === null ) {
724 focaModalService.alert('El valor debe ser al menos 1'); 734 focaModalService.alert('El valor debe ser al menos 1');
725 return; 735 return;
726 } 736 }
727 delete $scope.articuloACargar.sectorCodigo; 737 delete $scope.articuloACargar.sectorCodigo;
728 $scope.notaPedido.articulosNotaPedido.push($scope.articuloACargar); 738 $scope.notaPedido.articulosNotaPedido.push($scope.articuloACargar);
729 $scope.cargando = true; 739 $scope.cargando = true;
730 } 740 }
731 }; 741 };
732 742
733 $scope.quitarArticulo = function(key) { 743 $scope.quitarArticulo = function(key) {
734 $scope.notaPedido.articulosNotaPedido.splice(key, 1); 744 $scope.notaPedido.articulosNotaPedido.splice(key, 1);
735 }; 745 };
736 746
737 $scope.editarArticulo = function(key, articulo) { 747 $scope.editarArticulo = function(key, articulo) {
738 if(key === 13) { 748 if(key === 13) {
739 if(articulo.cantidad === null || articulo.cantidad === 0 || 749 if(articulo.cantidad === null || articulo.cantidad === 0 ||
740 articulo.cantidad === undefined) { 750 articulo.cantidad === undefined) {
741 focaModalService.alert('El valor debe ser al menos 1'); 751 focaModalService.alert('El valor debe ser al menos 1');
742 return; 752 return;
743 } 753 }
744 articulo.editCantidad = false; 754 articulo.editCantidad = false;
745 articulo.editPrecio = false; 755 articulo.editPrecio = false;
746 } 756 }
747 }; 757 };
748 758
749 $scope.cambioEdit = function(articulo, propiedad) { 759 $scope.cambioEdit = function(articulo, propiedad) {
750 if(propiedad === 'cantidad') { 760 if(propiedad === 'cantidad') {
751 articulo.editCantidad = true; 761 articulo.editCantidad = true;
752 } else if(propiedad === 'precio') { 762 } else if(propiedad === 'precio') {
753 articulo.editPrecio = true; 763 articulo.editPrecio = true;
754 } 764 }
755 }; 765 };
756 766
757 $scope.resetFilter = function() { 767 $scope.resetFilter = function() {
758 $scope.articuloACargar = {}; 768 $scope.articuloACargar = {};
759 $scope.cargando = true; 769 $scope.cargando = true;
760 }; 770 };
761 //Recibe aviso si el teclado está en uso 771 //Recibe aviso si el teclado está en uso
762 $rootScope.$on('usarTeclado', function(event, data) { 772 $rootScope.$on('usarTeclado', function(event, data) {
763 if(data) { 773 if(data) {
764 $scope.mostrarTeclado = true; 774 $scope.mostrarTeclado = true;
765 return; 775 return;
766 } 776 }
767 $scope.mostrarTeclado = false; 777 $scope.mostrarTeclado = false;
768 }); 778 });
769 779
770 $scope.selectFocus = function($event) { 780 $scope.selectFocus = function($event) {
771 // Si el teclado esta en uso no selecciona el valor 781 // Si el teclado esta en uso no selecciona el valor
772 if($scope.mostrarTeclado) { 782 if($scope.mostrarTeclado) {
773 return; 783 return;
774 } 784 }
775 $event.target.select(); 785 $event.target.select();
776 }; 786 };
777 787
778 $scope.salir = function() { 788 $scope.salir = function() {
779 $location.path('/'); 789 $location.path('/');
780 }; 790 };
781 791
782 $scope.parsearATexto = function(articulo) { 792 $scope.parsearATexto = function(articulo) {
783 articulo.cantidad = parseFloat(articulo.cantidad); 793 articulo.cantidad = parseFloat(articulo.cantidad);
784 articulo.precio = parseFloat(articulo.precio); 794 articulo.precio = parseFloat(articulo.precio);
785 }; 795 };
786 796
787 function setearNotaPedido(notaPedido) { 797 function setearNotaPedido(notaPedido) {
788 //añado cabeceras 798 //añado cabeceras
789 $scope.notaPedido = notaPedido; 799 $scope.notaPedido = notaPedido;
790 $scope.$broadcast('removeCabecera', 'Bomba:'); 800 $scope.$broadcast('removeCabecera', 'Bomba:');
791 $scope.$broadcast('removeCabecera', 'Kilometros:'); 801 $scope.$broadcast('removeCabecera', 'Kilometros:');
792 802
793 var cabeceras = []; 803 var cabeceras = [];
794 804
795 if (notaPedido.cotizacion) { 805 if (notaPedido.cotizacion) {
796 cabeceras.push({ 806 cabeceras.push({
797 label: 'Moneda:', 807 label: 'Moneda:',
798 valor: notaPedido.cotizacion.moneda.DETALLE 808 valor: notaPedido.cotizacion.moneda.DETALLE
799 }); 809 });
800 cabeceras.push({ 810 cabeceras.push({
801 label: 'Fecha cotizacion:', 811 label: 'Fecha cotizacion:',
802 valor: $filter('date')(notaPedido.cotizacion.FECHA, 812 valor: $filter('date')(notaPedido.cotizacion.FECHA,
803 'dd/MM/yyyy') 813 'dd/MM/yyyy')
804 }); 814 });
805 cabeceras.push({ 815 cabeceras.push({
806 label: 'Cotizacion:', 816 label: 'Cotizacion:',
807 valor: $filter('number')(notaPedido.cotizacion.VENDEDOR, 817 valor: $filter('number')(notaPedido.cotizacion.VENDEDOR,
808 '2') 818 '2')
809 }); 819 });
810 } 820 }
811 if (notaPedido.cliente.COD) { 821 if (notaPedido.cliente.COD) {
812 cabeceras.push({ 822 cabeceras.push({
813 label: 'Cliente:', 823 label: 'Cliente:',
814 valor: notaPedido.cliente.NOM 824 valor: notaPedido.cliente.NOM
815 }); 825 });
816 cabeceras.push({ 826 cabeceras.push({
817 label: 'Domicilio:', 827 label: 'Domicilio:',
818 valor: notaPedido.domicilioStamp 828 valor: notaPedido.domicilioStamp
819 }); 829 });
820 } 830 }
821 if (notaPedido.vendedor.NUM) { 831 if (notaPedido.vendedor.NUM) {
822 cabeceras.push({ 832 cabeceras.push({
823 label: 'Vendedor:', 833 label: 'Vendedor:',
824 valor: $filter('rellenarDigitos')(notaPedido.vendedor.NUM, 3) + 834 valor: $filter('rellenarDigitos')(notaPedido.vendedor.NUM, 3) +
825 ' - ' + notaPedido.vendedor.NOM 835 ' - ' + notaPedido.vendedor.NOM
826 }); 836 });
827 } 837 }
828 if (notaPedido.proveedor.COD) { 838 if (notaPedido.proveedor.COD) {
829 cabeceras.push({ 839 cabeceras.push({
830 label: 'Proveedor:', 840 label: 'Proveedor:',
831 valor: $filter('rellenarDigitos')(notaPedido.proveedor.COD, 5) + 841 valor: $filter('rellenarDigitos')(notaPedido.proveedor.COD, 5) +
832 ' - ' + notaPedido.proveedor.NOM 842 ' - ' + notaPedido.proveedor.NOM
833 }); 843 });
834 } 844 }
835 if (notaPedido.notaPedidoPlazo.length) { 845 if (notaPedido.notaPedidoPlazo.length) {
836 cabeceras.push({ 846 cabeceras.push({
837 label: 'Precios y condiciones:', 847 label: 'Precios y condiciones:',
838 valor: valorPrecioCondicion() + ' ' + 848 valor: valorPrecioCondicion() + ' ' +
839 notaPedidoBusinessService 849 notaPedidoBusinessService
840 .plazoToString(notaPedido.notaPedidoPlazo) 850 .plazoToString(notaPedido.notaPedidoPlazo)
841 }); 851 });
842 } 852 }
843 if (notaPedido.flete !== undefined) { 853 if (notaPedido.flete !== undefined) {
844 cabeceras.push({ 854 cabeceras.push({
845 label: 'Flete:', 855 label: 'Flete:',
846 valor: notaPedido.fob === 1 ? 'FOB' : ( 856 valor: notaPedido.fob === 1 ? 'FOB' : (
847 notaPedido.flete === 1 ? 'Si' : 'No') 857 notaPedido.flete === 1 ? 'Si' : 'No')
848 }); 858 });
849 } 859 }
850 860
851 861
852 function valorPrecioCondicion() { 862 function valorPrecioCondicion() {
853 if (notaPedido.idPrecioCondicion > 0) { 863 if (notaPedido.idPrecioCondicion > 0) {
854 return notaPedido.precioCondicion.nombre; 864 return notaPedido.precioCondicion.nombre;
855 } else { 865 } else {
856 return 'Ingreso Manual'; 866 return 'Ingreso Manual';
857 } 867 }
858 } 868 }
859 869
860 if (notaPedido.flete === 1) { 870 if (notaPedido.flete === 1) {
861 var cabeceraBomba = { 871 var cabeceraBomba = {
862 label: 'Bomba:', 872 label: 'Bomba:',
863 valor: notaPedido.bomba === 1 ? 'Si' : 'No' 873 valor: notaPedido.bomba === 1 ? 'Si' : 'No'
864 }; 874 };
865 if (notaPedido.kilometros) { 875 if (notaPedido.kilometros) {
866 var cabeceraKilometros = { 876 var cabeceraKilometros = {
867 label: 'Kilometros:', 877 label: 'Kilometros:',
868 valor: notaPedido.kilometros 878 valor: notaPedido.kilometros
869 }; 879 };
870 cabeceras.push(cabeceraKilometros); 880 cabeceras.push(cabeceraKilometros);
871 } 881 }
872 cabeceras.push(cabeceraBomba); 882 cabeceras.push(cabeceraBomba);
873 } 883 }
874 884
875 notaPedidoBusinessService.calcularArticulos($scope.notaPedido.articulosNotaPedido, 885 notaPedidoBusinessService.calcularArticulos($scope.notaPedido.articulosNotaPedido,
876 notaPedido.cotizacion.VENDEDOR); 886 notaPedido.cotizacion.VENDEDOR);
877 887
878 if (notaPedido.idPrecioCondicion > 0) { 888 if (notaPedido.idPrecioCondicion > 0) {
879 $scope.idLista = notaPedido.precioCondicion.idListaPrecio; 889 $scope.idLista = notaPedido.precioCondicion.idListaPrecio;
880 } else { 890 } else {
881 $scope.idLista = -1; 891 $scope.idLista = -1;
882 } 892 }
883 893
884 $scope.puntoVenta = $filter('rellenarDigitos')( 894 $scope.puntoVenta = $filter('rellenarDigitos')(
885 notaPedido.sucursal, 4 895 notaPedido.sucursal, 4
886 ); 896 );
887 897
888 $scope.comprobante = $filter('rellenarDigitos')( 898 $scope.comprobante = $filter('rellenarDigitos')(
889 notaPedido.numeroNotaPedido, 8 899 notaPedido.numeroNotaPedido, 8
890 ); 900 );
891 901
892 $scope.notaPedido.notaPedidoPuntoDescarga = 902 $scope.notaPedido.notaPedidoPuntoDescarga =
893 formatearPuntosDescarga(notaPedido.notaPedidoPuntoDescarga || []); 903 formatearPuntosDescarga(notaPedido.notaPedidoPuntoDescarga || []);
894 addArrayCabecera(cabeceras); 904 addArrayCabecera(cabeceras);
895 } 905 }
896 906
897 function addArrayCabecera(array) { 907 function addArrayCabecera(array) {
898 for(var i = 0; i < array.length; i++) { 908 for(var i = 0; i < array.length; i++) {
899 $scope.$broadcast('addCabecera', { 909 $scope.$broadcast('addCabecera', {
900 label: array[i].label, 910 label: array[i].label,
901 valor: array[i].valor 911 valor: array[i].valor
902 }); 912 });
903 } 913 }
904 } 914 }
905 915
906 function validarNotaRemitada() { 916 function validarNotaRemitada() {
907 if(!$scope.notaPedido.idRemito) { 917 if(!$scope.notaPedido.idRemito) {
908 return true; 918 return true;
909 }else{ 919 }else{
910 focaModalService.alert('No se puede editar una nota de pedido remitada'); 920 focaModalService.alert('No se puede editar una nota de pedido remitada');
911 return false; 921 return false;
912 } 922 }
913 } 923 }
914 924
915 function formatearPuntosDescarga(puntosDescarga) { 925 function formatearPuntosDescarga(puntosDescarga) {
916 var result = []; 926 var result = [];
917 927
918 puntosDescarga.forEach(function(el) { 928 puntosDescarga.forEach(function(el) {
919 var puntoDescarga = result.filter(function(resultPunto) { 929 var puntoDescarga = result.filter(function(resultPunto) {
920 return resultPunto.id === el.idPuntoDescarga; 930 return resultPunto.id === el.idPuntoDescarga;
921 }); 931 });
922 932
923 if (puntoDescarga.length) { 933 if (puntoDescarga.length) {
924 puntoDescarga[0].articulosAgregados.push({ 934 puntoDescarga[0].articulosAgregados.push({
925 cantidad: el.cantidad, 935 cantidad: el.cantidad,
926 descripcion: el.producto.descripcion, 936 descripcion: el.producto.descripcion,
927 id: el.producto.id 937 id: el.producto.id
928 }); 938 });
929 } else { 939 } else {
930 result.push({ 940 result.push({
931 id: el.puntoDescarga.id, 941 id: el.puntoDescarga.id,
932 id_cliente: el.puntoDescarga.id_cliente, 942 id_cliente: el.puntoDescarga.id_cliente,
933 id_da_config_0: el.puntoDescarga.id_da_config_0, 943 id_da_config_0: el.puntoDescarga.id_da_config_0,
934 latitud: el.puntoDescarga.latitud, 944 latitud: el.puntoDescarga.latitud,
935 longitud: el.puntoDescarga.longitud, 945 longitud: el.puntoDescarga.longitud,
936 descripcion: el.puntoDescarga.descripcion, 946 descripcion: el.puntoDescarga.descripcion,
937 articulosAgregados: [ 947 articulosAgregados: [
938 { 948 {
939 cantidad: el.cantidad, 949 cantidad: el.cantidad,
940 descripcion: el.producto.descripcion, 950 descripcion: el.producto.descripcion,
941 id: el.producto.id 951 id: el.producto.id
942 } 952 }
943 ] 953 ]
944 }); 954 });
945 } 955 }
946 }); 956 });
947 return result; 957 return result;
948 } 958 }
949 959
950 function salir() { 960 function salir() {
951 var confirmacion = false; 961 var confirmacion = false;
952 962
953 if (!angular.equals($scope.notaPedido, $scope.inicial)) { 963 if (!angular.equals($scope.notaPedido, $scope.inicial)) {
954 confirmacion = true; 964 confirmacion = true;
955 } 965 }
956 966
957 if (confirmacion) { 967 if (confirmacion) {
958 focaModalService.confirm( 968 focaModalService.confirm(
959 '¿Está seguro de que desea salir? Se perderán todos los datos cargados.' 969 '¿Está seguro de que desea salir? Se perderán todos los datos cargados.'
960 ).then(function(data) { 970 ).then(function(data) {
961 if (data) { 971 if (data) {
962 $location.path('/'); 972 $location.path('/');
963 } 973 }
964 }); 974 });
965 } else { 975 } else {
966 $location.path('/'); 976 $location.path('/');
967 } 977 }
968 } 978 }
969 979
970 function getLSNotaPedido() { 980 function getLSNotaPedido() {
971 var notaPedido = JSON.parse($localStorage.notaPedido || null); 981 var notaPedido = JSON.parse($localStorage.notaPedido || null);
972 if (notaPedido) { 982 if (notaPedido) {
973 setearNotaPedido(notaPedido); 983 setearNotaPedido(notaPedido);
974 delete $localStorage.notaPedido; 984 delete $localStorage.notaPedido;
975 } 985 }
976 } 986 }
977 987
978 function deleteCliente() { 988 function deleteCliente() {
979 delete $scope.notaPedido.domicilioStamp; 989 delete $scope.notaPedido.domicilioStamp;
980 delete $scope.notaPedido.notaPedidoPuntoDescarga; 990 delete $scope.notaPedido.notaPedidoPuntoDescarga;
981 $scope.notaPedido.domicilio = {dom: ''}; 991 $scope.notaPedido.domicilio = {dom: ''};
982 $scope.notaPedido.cliente = {}; 992 $scope.notaPedido.cliente = {};
983 $scope.$broadcast('removeCabecera', 'Cliente:'); 993 $scope.$broadcast('removeCabecera', 'Cliente:');
984 $scope.$broadcast('removeCabecera', 'Domicilio:'); 994 $scope.$broadcast('removeCabecera', 'Domicilio:');
985 $scope.$broadcast('removeCabecera', 'Puntos de descarga:'); 995 $scope.$broadcast('removeCabecera', 'Puntos de descarga:');
986 } 996 }
987 } 997 }
988 ]); 998 ]);
989 999